in vb 3.6 for vbplaza we're supposed to change this:
HTML Code:
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']"> style="font-weight:bold"</if>>$thread[threadtitle]</a>
to this:
HTML Code:
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>>$thread[threadtitle]</a>
If someone uses the option to change the style of a certain thread then this change will apply that, but we then lose the ability to decipher between threads with new posts and threads without.
How can the 2 features be used without one or the other being lost? I don't know how to code, but I figure something in the format of this would work?
HTML Code:
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']" AND "$show['gotonewpost']=0">style="$thread[titlestyle]"</if><if condition="$thread['titlestyle']" AND "$show['gotonewpost']">style="font-weight:bold, $thread[titlestyle]"</if><if condition="$show['gotonewpost']" AND "$thread['titlestyle']=0">style="font-weight:bold</if>>$thread[threadtitle]</a>
Can anyone lend a hand?