NimbusThemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP Simple] Banner main titleGreat answer salsaturation. ??
Forum: Themes and Templates
In reply to: [WP Simple] Convert from the free version to Simple ProHi Amy,
Thanks for being a Nimbus supporter. It sounds like you have already purchased the Pro version of our Simple theme. We have a dedicated support team to assist our premium theme users. Could you please log in to your NimbusThemes dashboard (https://www.nimbusthemes.com/my-account/) and submit a support ticket with your issue? We can offer much better, more personalized support that way.
~ Nimbus Themes
Forum: Themes and Templates
In reply to: [Simple Business WP] Remove Meta WidgetHi! Thanks for reaching out and sorry for the delayed response. If you assign just the widgets you need to the sidebar, it will go away.
Forum: Themes and Templates
In reply to: [WP Simple] Problem with subpage banner optionHi! Thanks for reaching out. Do you mean that the featured image for each page is not showing up in the banner area of the pages?
Sure – you can edit the file parts/frontpage-contact.php and remove the form. Best of luck!
Forum: Themes and Templates
In reply to: [WP Simple] Subpages can’t be changedThat is certainly weird – I would suggest double checking that you’ve created and assigned a new menu to the main menu location.
For the banner – please make sure it is set to “Show” and not “Demo”.
Forum: Themes and Templates
In reply to: [WP Simple] Child theme not using content?Hi there, thanks for reaching out. I am happy to assist.
A theme’s options are stored based on the theme folder name. Since you created a child theme, the options now get stored as the new name. You would need to rewrite/modify the function nimbus_get_option so that it fetches the parent theme option in case it already exists. It would probably entail something like this:
$parent_theme = get_template_directory(); $parent_theme_slug = basename($parent_theme); $parent_theme_mods = get_option( "theme_mods_{$parent_theme_slug}"); if (!empty($parent_theme_mods) && isset($parent_theme_mods[$key])) { $value = $parent_theme_mods[$key]; } else { $value = get_theme_mod($key); }
Forum: Themes and Templates
In reply to: [WP Simple] Banner image is gone!Hello – that certainly is weird. Can you send me an email at [email protected] with a sample login so I can see what may be going on here?
Forum: Themes and Templates
In reply to: [Juniper] Changing banner image sizeThe responsive areas in the picture would require altering the theme to your requirements. That is not something that we can be tweaked or added with just a few lines.
What other edits are you looking to do?
Forum: Themes and Templates
In reply to: [Juniper] No parallax image showingI’ll need a little more detail – can you show me a URL or a screenshot so I can figure out what may be going on here?
Forum: Themes and Templates
In reply to: [WP Simple] Make subpage hero image longerActually, try this CSS code under Appearance – Customize – Custom CSS
section.subpage-banner.parallax_active { padding-top: 200px !important; padding-bottom: 200px !important; }
This way, you won’t have to edit the JS file.
.
- This reply was modified 8 years, 5 months ago by NimbusThemes.
Forum: Themes and Templates
In reply to: [WP Simple] Make subpage hero image longerThanks for reaching out, I am happy to help.
You can edit the padding that is being set in the file js/public.js
Let me know if you need anything.
Forum: Themes and Templates
In reply to: [WP Simple] Contact form sending even when unfilledThanks for pointing this out – we’ll release a fix in our next update.
Forum: Themes and Templates
In reply to: [Simple Business WP] Contact form doesn’t workThe mailfrom field is required for the script to specify the email address from which the email should be sent. This cannot be just any email address as most hosts would block the email as being “spoofed”. You’ll need an email address from your own domain there, something like [email protected].