PDA

View Full Version : vB3.6 Only Edit for threadbit template problem


gwhooooey
08-08-2006, 06:22 PM
I use the 'New Posts' feature of vBulletin all the time, but when I make this template edit, the new posts that it finds aren't bolded like they usually are.

Is there a fix for this? What's that template edit do exactly anyway?

gwhooooey
08-11-2006, 03:22 AM
I know i'm not the only person getting this as I checked the main thread.
https://vborg.vbsupport.ru/showpost.php?p=1022129&postcount=3526

So, what exactly is the template edit doing? Because it's not been bolding the thread titles when I search for new posts, i've removed that template edit for now.

vBulletin 3.6.x Only Edit:

Next Find:
<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>

Replace With:
<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>

Is the edit i'm talking about.

movielist
08-11-2006, 08:39 AM
Yep. I also confirm this problem.

devilrulez
08-14-2006, 05:50 AM
Yeah it happens with me too...any solution? can i revert back to original and would it harm my VBPlaza?

movielist
08-14-2006, 06:29 AM
I believe you can revert that bit of code.
It will bring back bold new posts, but you won't see thread changes made by users in VbPlaza.

gwhooooey
08-14-2006, 06:34 PM
Ah, so it's like glow/coloured thread titles that people can buy?

I never needed that template edit then because I have them turned off.

y2krazy
08-14-2006, 10:47 PM
Maybe this will allow the bold to remain when it's a new post - so long as there are no options selected from vbPlaza to modify the look of the thread title?

<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"<else /><if condition="$show['gotonewpost']"> style="font-weight:bold"</if></if>>$thread[threadtitle]</a>

Since I'm the only user on my board I can't test it out. Let me know if it works! :)

EasyTarget
08-31-2006, 03:03 PM
same problem.. forumdisplay threads aren't highlighted with new posts.. it still works for forums, just not threads.

peterska2 came up with this quick fix which should let you use vbplaza thread styles and still see new posts in the threads.
<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>

The result will be something like this:
New: unread thread title
New: unread thread title with style
read thread title
read thread title with style

webgroup
09-05-2006, 02:53 AM
Thanks God Im not alone!!! ufff!!

\lets see if someone can find a fix for this

Maybe this will allow the bold to remain when it's a new post - so long as there are no options selected from vbPlaza to modify the look of the thread title?

<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"<else /><if condition="$show['gotonewpost']"> style="font-weight:bold"</if></if>>$thread[threadtitle]</a>

Since I'm the only user on my board I can't test it out. Let me know if it works! :)

Yep! it works!! and it keeps the vbplaza functions intact.

Thanks!

mamashid
02-04-2007, 02:31 PM
Maybe this will allow the bold to remain when it's a new post - so long as there are no options selected from vbPlaza to modify the look of the thread title?

<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$thread['titlestyle']">style="$thread[titlestyle]"<else /><if condition="$show['gotonewpost']"> style="font-weight:bold"</if></if>>$thread[threadtitle]</a>

Since I'm the only user on my board I can't test it out. Let me know if it works! :)

where do i do this?