PDA

View Full Version : How to change New Thread image button to text link?


ApplePro
10-26-2007, 03:00 PM
Hello guys,

I wonder, How to change New Thread image button to text link? Also, is it possible to use standard phrase for that? I have like 20 languages and it will be hard to find translation for "New Thread" for each of 20 languages.

calorie
10-26-2007, 04:36 PM
Look for the following in the FORUMDISPLAY template and replace with a vB phrase:

<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" />

To add a phrase, see http://www.vbulletin.com/docs/html/main/language_add_phrase
and then you could use something like this instead of the image:

$vbphrase[varname]

Or simply replace the IMG tag with $vbphrase[post_new_thread]

ApplePro
10-27-2007, 05:31 AM
Look for the following in the FORUMDISPLAY template and replace with a vB phrase:

<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" />

To add a phrase, see http://www.vbulletin.com/docs/html/main/language_add_phrase
and then you could use something like this instead of the image:

$vbphrase[varname]

Or simply replace the IMG tag with $vbphrase[post_new_thread]
Thanks. Works great. :)