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 |
#42
|
|||
|
|||
two possibilities come to mind:
a) you do not have the jquery1.4.4.js file in the vbulletin folder This would mean search Code:
<script type="text/javascript" src="clientscript/jquery/jquery-1.4.4.min.js"></script> Code:
<script type="text/javascript" src="' .$slider_img_filepath. 'jquery-1.6.1.min.js"></script> Just delete that line. Two jquery files on one page are unnecessary and unfortunately break the jquery execution. Code:
<script type="text/javascript" src="clientscript/jquery/jquery-1.4.4.min.js"></script> If it isn't - update your version. |
#43
|
||||
|
||||
Im afraid not. :s
|
#44
|
|||
|
|||
Thanks, I had multiple (about five or 6) instances of jQuery running.
|
#45
|
|||
|
|||
Same to me =/
Everything work fine....except images, that dont appear. =/ |
#46
|
|||
|
|||
Sorry Alfa1, i'll check that attachment issue more thouroughly sometime next week when our new cms is finally live.
@ Aramist - please check out post #41 maybe it's a javascript thing - or are your article images attachments - or do the images show up in the folder you specified - or does the fallback image work if you set this switch on yes I'll rewrite the first post sometime around tuesday, clean it up a bit and provide a (hopefully) usefull faq in the first comment. |
#47
|
|||
|
|||
- please check out post #41 maybe it's a javascript thing
I've already done that - or are your article images attachments no - or do the images show up in the folder you specified the folder i've specified keeps empty.. - or does the fallback image work if you set this switch on yes It works fine I'm sure the problem is in the image creation, cause your condition to use a sample image in case the image creation fail is working. But i haven't figured out why... =/ =/ Ty |
#48
|
|||
|
|||
Do you have php GD installed?
Is the folder you've specified writeable? If both answers are yes please comment out //ob_start(); and //ob_end_clean() and post the debug message, if there is one. |
#49
|
|||
|
|||
Ohhh...how stupid I am..
I had removed //picture width and height !same as in the CSS FILE! $maxwidth = 650; $maxheight = 250; that was the problem...now works fine Good jog !! Other question: How can i point the DB query to get article from one exclusive cms category? Ty a lot man |
#50
|
|||
|
|||
Great to hear that. =)
category or section? i'll write down the category code (untested) Code:
$query = sprintf(" SELECT article.pagetext, article.previewimage, node.url, node.publishdate, node.parentnode, parentnode.url AS parenturl, thread.replycount, info.title, node.nodeid FROM ".TABLE_PREFIX."cms_article AS article INNER JOIN ".TABLE_PREFIX."cms_node AS node ON (node.contentid = article.contentid AND node.contenttypeid = '%d') INNER JOIN ".TABLE_PREFIX."cms_nodeinfo AS info ON info.nodeid = node.nodeid INNER JOIN ".TABLE_PREFIX."cms_node AS parentnode ON parentnode.nodeid = node.parentnode LEFT JOIN ".TABLE_PREFIX."thread AS thread ON thread.threadid = info.associatedthreadid LEFT JOIN ".TABLE_PREFIX."cms_nodecategory AS nodecategory ON nodecategory.nodeid = node.nodeid WHERE nodecategory.categoryid = X AND node.setpublish = 1 AND node.publishdate > '%d' -34560000 ORDER BY node.publishdate ASC LIMIT 20" ,$article_type,$time); nodecategory.categoryid = X AND is your categoryid - you have to look that one up. For example: /content/category/31-esport.html Category esports on our site has the ID 31. in addition, delete that line: Code:
$categories = explode(',' , $article['GROUP_CONCAT( category.category )']); |
#51
|
|||
|
|||
Oh TY !
I had to include category.categoryid in select option. Now works like a charm !! TY a lot Dude! 5 star rated for the mod and for the support! |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|