Go Back   vBulletin Setup > vBulletinSetup Information > vBulletin Questions


Please Register to get full access to the forums.
Post New Thread  Reply



#31   12-05-2007, 05:47 AM
Send a message via AIM to Caddyman Send a message via MSN to Caddyman Send a message via Yahoo to Caddyman Send a message via Skype™ to Caddyman Caddyman is just really niceCaddyman is just really nice Join Date: Dec 2006 Posts: 3,280 Location: Delaware
Re: vBulletin Template Conditionals List


ok i want to show photoplog thumbs inside just 1 forum, forum 15 right.

this is the code photoplog says to use

$photoplog[minithumbnails]

i tried this and no worky i guess cause you can't call something like that in a standard conditional?

<if condition="$forum[forumid] == 15">$photoplog[minithumbnails]</if>

EDIT: and they say this code is only for forumhome and when i add it to navbar template it still only shows on forumhome
--------------------
Philly Sports
Delaware Online
PA Forums

Last edited by Caddyman; 12-05-2007 at 05:51 AM.
Quote   |  



#32   12-05-2007, 09:31 AM
Michael Biddle is just really niceMichael Biddle is just really nice Join Date: Aug 2006 Posts: 1,644 Location: Anaheim, CA
Re: vBulletin Template Conditionals List


That is because the $forum variable is on the index page, not the other ones. Of course you could add your own query to global_start to get the forum id though ;)
--------------------
Do NOT PM me for Support!
Michael Biddle / vBulletin Setup Staff
Check out our Newsletter for the latest vB and SEO news.
Are you looking for vBulletin work to be done on your forums ?
Would you like to Help Support vBulletin Setup.
Be sure to check out our latest Contest for a Custom Style.
Quote   |  



#33   12-06-2007, 07:11 AM
Send a message via AIM to Caddyman Send a message via MSN to Caddyman Send a message via Yahoo to Caddyman Send a message via Skype™ to Caddyman Caddyman is just really niceCaddyman is just really nice Join Date: Dec 2006 Posts: 3,280 Location: Delaware
Re: vBulletin Template Conditionals List


do what? im a noob, help mike!!
--------------------
Philly Sports
Delaware Online
PA Forums
Quote   |  



#34   12-10-2007, 05:10 AM
Send a message via AIM to Caddyman Send a message via MSN to Caddyman Send a message via Yahoo to Caddyman Send a message via Skype™ to Caddyman Caddyman is just really niceCaddyman is just really nice Join Date: Dec 2006 Posts: 3,280 Location: Delaware
Re: vBulletin Template Conditionals List


anything? i need this for somebody
--------------------
Philly Sports
Delaware Online
PA Forums
Quote   |  



#35   04-27-2008, 09:47 PM
SticKer will become famous soon enough Join Date: Jan 2008 Posts: 108 Location: www.webicy.com
Re: vBulletin Template Conditionals List


Thanks for the link Brandon.

btw does the condition's remain same in the latest 3.7 or are we going to see any changes.
--------------------
Webmaster Forum | Webmaster Blog | Web Directory

Last edited by SticKer; 04-27-2008 at 09:51 PM.
Quote   |  



#36   08-20-2008, 08:28 PM
Send a message via AIM to Brandon Send a message via MSN to Brandon Send a message via Yahoo to Brandon Brandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of light Join Date: Jul 2006 Posts: 10,990 Location: Topeka, KS
Re: vBulletin Template Conditionals List


I need a few conditions, hopefully someone can help me

I need one that will only show something on the portal "vbavanced" and
one that will show to everything else, the forumhome, forumdisplay and showthread

thanks
--------------------
Brandon Sheley / vBulletin Setup Staff
Check out our Newsletter for the latest vB and SEO news.
Are you looking for vBulletin work to be done on your forums ?
Would you like to Help Support vBulletin Setup.
Be sure to check out our latest Contest for a Custom Style.


Add our Facebook Blog, Group and LinkedIn group.. Thanks
Stay up to date by installing our Tool Bar
Quote   |  



#37   08-20-2008, 08:33 PM
Send a message via AIM to Caddyman Send a message via MSN to Caddyman Send a message via Yahoo to Caddyman Send a message via Skype™ to Caddyman Caddyman is just really niceCaddyman is just really nice Join Date: Dec 2006 Posts: 3,280 Location: Delaware
Re: vBulletin Template Conditionals List


Here is how i do the dynamic forum button on homepage and home button on forum page (breaks added for clarity)

<if condition="THIS_SCRIPT == 'adv_index'">

<a href="http://forum.vbulletinsetup.com/f18/forums.php$session[sessionurl_q]"><img src="http://forum.vbulletinsetup.com/f18/$stylevar[imgdir_misc]/links_forum.gif" alt="Delaware Forum" width="75" height="39" border="0"></img></a>

<else />

<a href="http://www.talkdelaware.com/"><img src="http://forum.vbulletinsetup.com/f18/$stylevar[imgdir_misc]/links_home.gif" alt="Delaware Home" width="75" height="39" border="0"></img></a>

</if>


get it?
--------------------
Philly Sports
Delaware Online
PA Forums
Quote   |  



#38   08-21-2008, 06:01 AM
Send a message via MSN to Norman Norman will become famous soon enough Join Date: Feb 2007 Posts: 49 Location: [Italy]
Re: vBulletin Template Conditionals List


Don't know if it's already on the thread: Restrict code in the templates to certain browsers. - vBulletin.org Forum.
Quote   |  



#39   08-21-2008, 06:24 AM
veenuisthebest will become famous soon enough Join Date: Mar 2008 Posts: 103 Location: India
Re: vBulletin Template Conditionals List


Quote:
Originally Posted by Caddyman View Post
ok i want to show photoplog thumbs inside just 1 forum, forum 15 right.

this is the code photoplog says to use



i tried this and no worky i guess cause you can't call something like that in a standard conditional?

<if condition=" == 15"></if>

EDIT: and they say this code is only for forumhome and when i add it to navbar template it still only shows on forumhome
Try this:-

<if condition="$foruminfo['forumid'] == 15">$photoplog[minithumbnails]</if>

$foruminfo variable is available and should work.
--------------------
Display your Ads at Tech555 Pixel Ads for FREE
Visit Tech555.com | Vinayaks.com
Quote   |  



#40   08-21-2008, 06:27 AM
Send a message via AIM to Caddyman Send a message via MSN to Caddyman Send a message via Yahoo to Caddyman Send a message via Skype™ to Caddyman Caddyman is just really niceCaddyman is just really nice Join Date: Dec 2006 Posts: 3,280 Location: Delaware
Re: vBulletin Template Conditionals List


i will check that out if i can remember what site i was trying to do that on, i think it was the porsche forum, ill ask him if he still wants this...
--------------------
Philly Sports
Delaware Online
PA Forums
Quote   |  
Post New Thread  Reply
vBulletin Setup > vBulletinSetup Information > vBulletin Questions


Thread Tools
Display Modes

 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

LinkBacks (?)
LinkBack to this Thread: http://forum.vbulletinsetup.com/f18/vbulletin-template-conditionals-list-2185.html
Posted By For Type Date
Lista Condizionali dei Template vBulletin - vB-Italy.org This thread Refback 08-08-2008 08:41 AM
Only show for X usergroup - vBulletin.org Forum This thread Refback 09-23-2007 01:47 PM
ads on forum pages - vBulletin Modifications This thread Refback 09-08-2007 03:02 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
vBulletin Variables List Brandon vBulletin Questions 16 09-11-2008 12:27 PM
P2P Directory and Top-List AjEe vBulletin SEO Tips and SEO Questions 0 04-06-2007 12:33 AM
Members List joh vBulletin Questions 2 03-30-2007 05:03 PM
Members List dprundle vBulletin Questions 4 09-12-2006 01:09 PM


All times are GMT -6. The time now is 08:37 PM.

vBulletin Setup, vBulletin Setup Forums, vBulletin Services, vBulletin Blogs, vBulletin SEO, vBulletin Questions
vBulletin Skins, Styles, Templates, vBulletin Monetization, Blogs, vBulletin Link Directory,Quality Link Directory