Lierduh,
could you be so kind to correct the advanced hacking guide ? 3.5 is already out :nervous:
PHP Code:
Modify SHOWTHREAD template
REPLACE this block of code
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$LASTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>
WITH
<if condition="$show['closethread']">
<td class="smallfont"><if condition="!$is_usenet"><a
href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID">
<img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]"
border="0" /></a><else /> </if></td>
<else />
<td class="smallfont"><a
href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID">
<img src="$stylevar[imgdir_button]/threadclosed.gif"
alt="$vbphrase[closed_thread]" border="0" /></a></td>
</if>
THERE ARE two instances of above.
FIND
$quickreply
REPLACE it with
<if condition="!$is_usenet">
$quickreply
</if>
Wether there is a second instance nor a $quickreply as you mentioned before in this particular template. Could you update those instructions please ?