The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
United-Forum Nivo Slider Widget Details »» | ||||||||||||||||||||||||||||||||
Based on the Nivo Slider - all credit for slider awesomeness goes to them.
vB4 implementation goes to me. What it is: A slider for cms articles, it gets the articles via database, uses (if possible) the previewimage there and resizes it to slider size *update 1.1.0 cropping function included. Livedemo on a Big Board (>2.000.000 posts) the nivo slider on our site is customized to fit our heavily customized cms. Default look of this addon is shown in the picture below facts about the nivo slider Quote:
Custom settings: Support:
Slider not working. No idea why?
The widget here is completely free. No charge, no branding. But, we do not mind donations either. If you want to give us something. Since we are advertising free and fan based we are happy about every small donation. ( On Forumhome bottom right paypal button: http://www.united-forum.de/forum.php ) That's all Hope it works for you. Regards Mooff Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
13 благодарности(ей) от: | ||
AaronMiller, Aramist, doctorsexy, Gemma, LOGECT, mitch84, nacaruncr, owning_y0u, RaSa, Sage Knight, The Rocketeer, YkudzA |
Comments |
#12
|
|||
|
|||
I'm having trouble getting the slider to work (static version posted above). Here's the code I used;
Code:
<link rel="stylesheet" href="/nivo/nivo-slider.css" type="text/css" media="screen" /> <link rel="stylesheet" href="/nivo/nivo-slider_uf_theme.css" type="text/css" media="screen" /> <div style="height:250px;"> <div id="wrapper"> <div class="slider-wrapper theme-uf"> <div class="ribbon"></div> <div id="slider" class="nivoSlider"> <a href="http://consortium.stormspire.net"><img src="/nivo/1Test.png" alt="" title="#htmlcaption1" </div> <div id="htmlcaption1" class="nivo-html-caption"> <b>Items that should be on your snatch list</b> </ br> testing.. <a href="http://consortium.stormspire.net">read more</a> </div> </div> </div> <script type="text/javascript" src="/clientscript/jquery/jquery-1.4.4.min.js"></script> <script type="text/javascript" src="/nivo/jquery.nivo.slider.pack.js"></script> <script type="text/javascript"> $(window).load(function() { $("#slider").nivoSlider(); }); </script> </div> Here's the test page where I've tried to load the widget: http://consortium.stormspire.net/con...The-Consortium |
#13
|
|||
|
|||
Img tag is not closed.
Code:
<link rel="stylesheet" href="/nivo/nivo-slider.css" type="text/css" media="screen" /> <link rel="stylesheet" href="/nivo/nivo-slider_uf_theme.css" type="text/css" media="screen" /> <div style="height:250px;"> <div id="wrapper"> <div class="slider-wrapper theme-uf"> <div class="ribbon"></div> <div id="slider" class="nivoSlider"> <a href="http://consortium.stormspire.net"><img src="nivo/1Test.png" alt="" title="#htmlcaption1" /></a> </div> <div id="htmlcaption1" class="nivo-html-caption"> <b>Items that should be on your snatch list</b> </ br> testing.. <a href="http://consortium.stormspire.net">read more</a> </div> </div> </div> <script type="text/javascript" src="/clientscript/jquery/jquery-1.4.4.min.js"></script> <script type="text/javascript" src="/nivo/jquery.nivo.slider.pack.js"></script> <script type="text/javascript"> $(window).load(function() { $("#slider").nivoSlider(); }); </script> </div> Ah i see, was my blunder in the code above - sorry Edit: If you have jquery 1.4 or higher allready running on your site you can delete that line: <script type="text/javascript" src="/clientscript/jquery/jquery-1.4.4.min.js"></script> |
#14
|
|||
|
|||
Quote:
Next step is to add additional slides. I tried duplicating some code but failed miserably. Also, it seems that the arrows are somewhat pixelated. Do the "overlay" graphics look normal to you? Link again for convenience: http://consortium.stormspire.net/con...The-Consortium Edit: Hang tight, I'll first go through the nivo site and see if I can fix my own problem. |
#15
|
|||
|
|||
Quote:
ah well, since i'm typing anyway Code:
<div class="slider-wrapper theme-uf"> <div class="ribbon"></div> <div id="slider" class="nivoSlider"> <a href="http://consortium.stormspire.net"><img src="nivo/1Test.png" alt="" title="#htmlcaption1" /></a> <a href="http://consortium.stormspire.net"><img src="nivo/2Test.png" alt="" title="#htmlcaption2" /></a> <a href="http://consortium.stormspire.net"><img src="nivo/3Test.png" alt="" title="#htmlcaption3" /></a> </div> <div id="htmlcaption1" class="nivo-html-caption"> <b>Items that should be on your snatch list</b> </ br> testing.. <a href="http://consortium.stormspire.net">read more</a> <div id="htmlcaption2" class="nivo-html-caption"> <b>Items that should be on your second snatch list</b> </ br> testing.. <a href="http://consortium.stormspire.net">read more</a> <div id="htmlcaption3" class="nivo-html-caption"> <b>Items that should be on your third snatch list</b> </ br> testing.. <a href="http://consortium.stormspire.net">read more</a> </div> </div> |
#16
|
|||
|
|||
For anyone looking to add slides to static pages, add the following bold code;
Code:
<link rel="stylesheet" href="/nivo/nivo-slider.css" type="text/css" media="screen" /> <link rel="stylesheet" href="/nivo/nivo-slider_uf_theme.css" type="text/css" media="screen" /> <div style="height:250px;"> <div id="wrapper"> <div class="slider-wrapper theme-uf"> <div class="ribbon"></div> <div id="slider" class="nivoSlider"> <a href="http://consortium.stormspire.net"><img src="/nivo/1Test.png" alt="" title="#htmlcaption1" /></a> <a href="http://consortium.stormspire.net"><img src="/nivo/2Test.png" alt="" title="#htmlcaption2" /></a> </div> <div id="htmlcaption1" class="nivo-html-caption"> <b>First slide..</b> </ br> testing.. <a href="http://consortium.stormspire.net">read more</a> <div id="htmlcaption2" class="nivo-html-caption"> <b>Second slide..</b> </ br> testing.. <a href="http://consortium.stormspire.net">read more</a> </div> </div> </div> <script type="text/javascript" src="/nivo/jquery.nivo.slider.pack.js"></script> <script type="text/javascript"> $(window).load(function() { $("#slider").nivoSlider(); }); </script> </div> |
#17
|
||||
|
||||
Im only getting the date, but no slider. Im using the code in the 1st post.
|
#18
|
|||
|
|||
Per default the execution code in a cms-php widget is returning the date.
After you create the widget you have to click on "Configure" on the right and insert my code. edit: let me clarify that one. You have to delete that code, which is in there by default: Code:
$output = date(vB::$vbulletin->options['dateformat']) . "<br />\n"; |
#19
|
|||
|
|||
This would be awesome if I could get it to work. I get the title and text from the article but no images. I've followed your instructions precisely and have tried different sized images and still only the title and text shows. Any ideas?
|
#20
|
|||
|
|||
Some ideas:
|
#21
|
|||
|
|||
GD already installed. I've done all the other changes you have suggested and still the same. Title and text - no image. No error messages or warnings.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|