Quote:
Originally Posted by twincamfxd
I installed it and everything looks OK, but when I try to stick a thread it dissapears lol. Any idea what I did wrong? I am not sure where the threads are going, but they just vanish. Everything else looks awesome though.
|
Did you do the first template edit (its the only reason I can think of why it would cause threads to disappear)
Quote:
Originally Posted by FROGGYJ
this mod cause these problems for me.
1. If you tried to access your usercp you get the following error
"Warning: in_array(): Wrong datatype for second argument in /usercp.php(439) : eval()'d code on line 32"
2. if you hit menu > subscribed threads you get the following erro
Warning: in_array(): Wrong datatype for second argument in /subscription.php(583) : eval()'d code on line 32
|
Are you using 1.0.2, this issue was adressed in 1.0.1
Quote:
Originally Posted by theArchitect
Yep.
But the interesting thing is that in my SHOWTHREAD template div is used instead of tr.
So you code to find is
Code:
<if condition="$show['member']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/subscribe.gif" alt="$vbphrase[subscription]" />
<if condition="$show['subscribed']">
<a href="subscription.php?$session[sessionurl]do=removesubscription&t=$threadid">$vbphrase[unsubscribe_from_this_thread]</a>
<else />
<a href="subscription.php?$session[sessionurl]do=addsubscription&t=$threadid">$vbphrase[subscribe_to_this_thread]</a>
</if>
</td>
</tr>
while mine is:
Code:
<div><img class="inlineimg" src="$stylevar[imgdir_button]/subscribe.gif" alt="$vbphrase[subscription]" vspace="1" />
<if condition="$show['subscribed']">
<a href="subscription.php?$session[sessionurl]do=removesubscription&t=$threadid">$vbphrase[unsubscribe_from_this_thread]</a>
<else />
<a href="subscription.php?$session[sessionurl]do=addsubscription&t=$threadid">$vbphrase[subscribe_to_this_thread]</a>
</if>
</div>
I amended your code to work with div instead, but it should still show.
|
Is that a costumized template? And what exactly do you mean with the last bit. If there isnt a <table> <tr><td> wont do much :P