I tried to edit all templates, but had some problems still.
I use the Blaze Style, German Version of vBulletin 3.6.2.
What went wrong? Please help me!
PHP Code:
In Template forumhome_lastpostby
Find:(Don't work)
==================================================
<a href="showthread.php?$session[sessionurl]p=lastpost&t=$lastpostinfo[lastthreadid]"><img class="inlineimg"
src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
==================================================
Replace With:
==================================================
<a href="<if condition="$show['zointsurl']">$forum[zointsurl_goto]<if
condition="$show['member']">?$session[sessionurl]goto=lastpost</if><else
/>showthread.php?$session[sessionurl]goto=lastpost&t=$lastpostinfo[lastthreadid]</if>"><img class="inlineimg"
src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
==================================================
Find:(Don't work)
==================================================
<a href="showthread.php?$session[sessionurl]goto=lastpost&t=$lastpostinfo[lastthreadid]"><img class="inlineimg"
src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
==================================================
Replace With:
==================================================
<a href="<if condition="$show['zointsurl']">$forum[zointsurl_goto]<if
condition="$show['member']">?$session[sessionurl]goto=lastpost</if><else
/>showthread.php?$session[sessionurl]goto=lastpost&t=$lastpostinfo[lastthreadid]</if>"><img class="inlineimg"
src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
==================================================
_______________________________________________________________________________________________________________________________
In Template threadbit
Find:(Don't work)
==================================================
<strong><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]"
id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a></strong>
==================================================
Replace With:
==================================================
<strong><a href="<if condition="$show['zointsurl']">$thread[zointsurl]<else
/>showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]</if>"
id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a></strong>
==================================================
Find:(Don't work)
==================================================
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]"
id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a>
==================================================
Replace With:
==================================================
<a href="<if condition="$show['zointsurl']">$thread[zointsurl]<else
/>showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]</if>"
id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a>
==================================================
Find:(This I could also change in threadbit_deleted)
==================================================
<td class="alt1"><a
href="forumdisplay.php?$session[sessionurl]f=$thread[forumid]">$thread[forumtitle]</a></td>
==================================================
Replace With:
==================================================
<td class="alt1"><a href="<if condition="$show['zointsurl']">$thread[zointsforumurl]<else
/>forumdisplay.php?$session[sessionurl]f=$thread[forumid]</if>">$thread[forumtitle]</a></td>
==================================================
_______________________________________________________________________________________________________________________________