PDA

View Full Version : merging new posts + thread style conditionals


EasyTarget
08-31-2006, 04:25 PM
in vb 3.6 for vbplaza we're supposed to change this: <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: <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?
<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?

peterska2
08-31-2006, 04:40 PM
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"</if>><if condition="$show['gotonewpost']"><strong>New: </strong></if>$thread[threadtitle]</a>

It's quick, but it will show as

New: unread thread title
New: unread thread title with style
read thread title
read thread title with style


I've use italic underline and highlight as the style to make it stand out which is which.

EasyTarget
08-31-2006, 05:00 PM
thanks, I'll post it in the vblaza threads for those looking for a fix.