Tagged: nivo slider
- This topic has 25 replies, 7 voices, and was last updated 11 years, 4 months ago by
StartupWP.
-
AuthorPosts
-
September 5, 2012 at 6:17 PM #190
StartupWP
KeymasterHi anachoreo,
Use:
#slider{display:none}
.home #slider{display:block}Copy and paste to Custom CSS in your theme options.
See: https://startupwp.com/topic/customizing-your-theme/
Thank You
September 6, 2012 at 10:58 AM #199anachoreo
ParticipantHi, it does not appear to work. I thought the ID was wrong, so I tried
#nivoslider-css{display:none} .home #nivoslider-css{display:block}But that did not work either. Any suggestions?
September 6, 2012 at 3:09 PM #200StartupWP
KeymasterCan’t think of any reason why it shouldn’t work.
URL please and I’ll have a look (make sure the CSS I provided is still saved to Custom CSS).
September 7, 2012 at 5:14 AM #203anachoreo
ParticipantHome page: slider should be visible here, but not on any other page.
For the record, I am running multisite, but your theme only runs on one site.
September 7, 2012 at 2:30 PM #204StartupWP
KeymasterNot seeing any Custom CSS in your source code. Did you make sure to check the box at the top of your theme options page to allow Custom Styles?
September 8, 2012 at 9:25 PM #211anachoreo
ParticipantDumb dumb dumb, like the first question at a PC helpdesk: is you computer plugged in?
Thank you!
September 8, 2012 at 9:47 PM #212StartupWP
KeymasterHey, no worries, easy to overlook at first glance. We’ll have to consider some sort of warning popup for when a user attempts to adjust a setting that hasn’t been turned on yet. Or better yet, simply make it so that when something is added to an input/textarea that that is what activates the feature.
Listed this for consideration here:
June 13, 2013 at 3:38 AM #830safetyfox
ParticipantHi there
I’ve followed the instructions above, but I’m still having problems. On my home page I get a gap where the slider should be, with the words [nivoslider slug=”slider”]. The navigation arrows are there but no images. The URL is http://www.burgauapartment.eu. Thanks!
June 13, 2013 at 6:43 AM #831StartupWP
KeymasterMake sure you’ve read the full instructions here:
July 21, 2013 at 7:58 PM #961philc
ParticipantHello,
I love the template. It would be awesome if I could add a different slider to pages. Is there code I can use to change the slider in each page?Thanks a million.
http://69.195.124.59/~grnhllco/
-Phil
July 21, 2013 at 10:40 PM #962StartupWP
KeymasterYou can manually create additional sliders (as many as you want) and then use the shortcodes to add anywhere, directly into posts, pages, text widgets or any of the custom areas directly in your theme options.
Shortcodes look like
[something].If you haven’t yet, you can watch the video on using the slider plugin:
July 22, 2013 at 3:15 PM #966philc
ParticipantThank you. I am able to place sliders in pages and posts. However, I can’t figure out how to put a unique slider on a page in the same spot as the Home page slider. I would like each slider I set up to show up in the space between the navigation bar and the page post. Thanks again.
July 23, 2013 at 1:30 AM #967StartupWP
KeymasterThis is the universal slider area. To adjust this will require child theming:
https://startupwp.com/topic/child-theming/
How many sliders are you looking to have and on what pages/page types?
July 23, 2013 at 2:06 PM #968philc
Participanthttp://69.195.124.59/~grnhllco/
I want to add custom sliders to the Universal slider space on my “Programs” pages. I would like to display images related to each program. I will eventually have 6-10 program pages.
Thanks again.
July 24, 2013 at 2:04 AM #970StartupWP
KeymasterWe’ll need to setup a child theme in order to manipulate the header.php code.
1. Setup a child theme: https://startupwp.com/topic/child-theming/
2. Copy over header.php from the parent theme to the child theme.
3. Find this line:
<?php if ( $options['slider'] ){ echo '<div id="slider">'.do_shortcode('[nivoslider slug="slider"]').'</div>'; } ?>4. Replace with:
<?php if ( is_home() && $options['slider'] ) { echo '<div id="slider">'.do_shortcode('[nivoslider slug="slider"]').'</div>'; elseif ( is_page(28) ) { echo '<div id="slider">'.do_shortcode('[nivoslider slug="pro-liability"]').'</div>'; } elseif ( is_page(30) ) { echo '<div id="slider">'.do_shortcode('[nivoslider slug="gen-liability"]').'</div>'; } elseif ( is_page(83) ) { echo '<div id="slider">'.do_shortcode('[nivoslider slug="forced-prop"]').'</div>'; } else { } ?>As you can see we’ve prepared the code for the programs you have so far. 28, 30 and 83 correlate to the page’s ID. The slider slugs are a more human-friendly way of indicating what slider it should be.
5. Create the new sliders under the Nivo Slider options with the appropriate slugs.
March 5, 2014 at 4:51 PM #1472jameco
ParticipantI purchased Pro and went through the steps to install Nivo Slider BUT when I try to activate it, WP is asking me for a license. This is what it says under the plugin name:
To finish activating the Nivo Slider, please go to Settings and enter your licence key and activate it to enable automatic updates.
I can’t find any documentation about a license. What did I do wrong?
March 6, 2014 at 1:38 AM #1473StartupWP
KeymasterYou can find the license keys in sources/plugins/keys.txt.
March 6, 2014 at 8:31 AM #1476jameco
ParticipantI tried the key yesterday and got messages saying it was invalid. This morning I logged in to try again and the alert asking me to enter the license is gone. I guess it’s ok now…thanks for your help.
March 7, 2014 at 4:49 AM #1478StartupWP
KeymasterThis appears to just be an error or perhaps just a cache issue, possibly fixed in a plugin update.
If after the next full StartupPro Package update you still get the nag, let us know. But, you should be good to go on using the plugin without limitation now.
March 26, 2014 at 2:10 PM #1531alex
ParticipantI’m having the same problem. When I enter the license key for the Nivo Slider WordPress Plugin found in sources/plugins/keys.txt, I get a message that it’s an invalid licence.
March 26, 2014 at 2:29 PM #1532jameco
ParticipantHey Alex:
I don’t know what the reason or cause was but 24 hours later after first getting those invalid messages it worked.
I just logged into WP and clicked on Activate that plugin and it just start going.
Try again in 24 hours – maybe you’ll have the same result.
March 26, 2014 at 6:40 PM #1533StartupWP
KeymasterVery strange, you shouldn’t have to wait 24 hours, you should have instant access. Investigating this issue now.
May 20, 2014 at 2:00 PM #1617dbuckingham
ParticipantHas this issue been resolved? I purchased StartupPro yesterday, tried to apply the license key, and received the invalid license error. I found this discussion and decided to wait before pursuing it any further. However, this afternoon I’m still getting the same message.
May 20, 2014 at 2:09 PM #1619StartupWP
KeymasterFrom all reports, the license nag appears to simply be a bug that doesn’t actually interfere with your use of the plugin.
November 3, 2014 at 12:43 PM #1927StartupWP
KeymasterPlugins and license keys updated.
Just make sure to re-download the full package for access to the update.
-
AuthorPosts
- You must be logged in to reply to this topic.
