Log in

View Full Version : Miscellaneous Hacks - No-Parse Url's in Specific Forum


smokin1337
12-10-2009, 10:00 PM
I have been trying to do this and figured out how. It involves some template edits, so you need to be comfortable doing so.

First open SHOWTHREAD template, find:
<input type="hidden" name="parseurl" value="1" />

Replace with:
<if condition="$foruminfo[forumid]!=X"><input type="hidden" name="parseurl" value="1" /></if>

Replacing the X with the ID of the forum you don't want to parse url's.

Then open newthread template and find:
<if condition="$show['parseurl']"><div><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] />$vbphrase[automatically_parse_links_in_text]</label></div></if>

Replace with:
<if condition="$foruminfo[forumid]!=X">
<if condition="$show['parseurl']"><div><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] />$vbphrase[automatically_parse_links_in_text]</label></div></if></if>

Again replace the X.

Then open newreply template and find:
<if condition="$show['parseurl']"><div><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] />$vbphrase[automatically_parse_links_in_text]</label></div></if>

Replace with:
<if condition="$foruminfo[forumid]!=X">
<if condition="$show['parseurl']"><div><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] />$vbphrase[automatically_parse_links_in_text]</label></div></if></if>

Again replace the X.

To do more than one forum use this for the if statement instead:
<if condition="($foruminfo[forumid] != X) && ($foruminfo[forumid] != X)">

Rplacing the X's with your forum id's, add as many as you need to by adding this

&& ($foruminfo[forumid] != X)

and replacing the X's.

Sure there is an easier way to do this but i am still learning and it worked for what i needed.