Log in

View Full Version : Conditional "New Thread" for especific forum


kingMOB
05-13-2008, 01:30 AM
Hi, is there a way to create a conditional where a different "new thread" button is displayed just for a specific forum?

Something like: "If this is http://www.********.com/forumdisplay.php?f=324 then use "different button image and different vbphrase" else display "default button and default vbphrase".

I just want that if someone enter this specific forum the "new thread" button and the "vbphrase" for the button be different from the rest of the forum.

Thanks =)

Lynne
05-13-2008, 02:32 AM
Yep, I do this on my site.

In FORUMDISPLAY, find (in two places!):
<td class="smallfont"><if condition="$show['newthreadlink']"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]" rel="nofollow"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a><else />&nbsp;</if></td>replace with something like (where x,y,z are the forums to show the other link):
<td class="smallfont"><if condition="$show['newthreadlink']">
<!-- added upload page link -->
<if condition="in_array($foruminfo[forumid], array(x,y,z))">
<a href="otherlink.php" rel="nofollow"><img src="$stylevar[imgdir_button]/otherimage.gif" alt="Other Link" border="0" /></a>

<else />
<a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]" rel="nofollow"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a>
</if>
<else />&nbsp;</if></td>

kingMOB
05-13-2008, 10:54 AM
Thank you =)

Works like a charm =)