![]() |
Thread title leads to new (unread) posts like Xenforo does, instead to the first post
1 Attachment(s)
We now have situtation where we have small image (https://vborg.vbsupport.ru/images/cs...s/firstnew.gif - Here I'm using image from vBorg, not image that's used in your forums) that leads us to first unread post in thread and the whole big thread title leads us to first post of thread. This is not the happiest solution in my opinion and I also heard that Xenforo uses thread title to lead you to first unread post.
I'm talking about this: http://img163.imageshack.us/img163/4883/image002gt.png Version 2.10: You need to edit template threadbit. After some thinking I realized that using image https://vborg.vbsupport.ru/images/cs...s/firstnew.gif is totally unnecessary, as thread title is enough for good UI. If thread has more than one page, we could always use page numbers available under thread title. So, to remove image completely find this code and remove it: HTML Code:
<vb:if condition="$show['gotonewpost']"><a href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo_newpost}, 'threadid', 'threadtitle'}" id="thread_gotonew_{vb:raw thread.realthreadid}"><img class="gotonewpost" src="{vb:stylevar imgdir_button}/firstnew.png" alt="{vb:rawphrase go_to_first_new_post}" /></a> Find: HTML Code:
<a class="title<vb:if condition="$show['gotonewpost']"> threadtitle_unread</vb:if>" href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo}, 'threadid', 'threadtitle'}" id="thread_title_{vb:raw thread.realthreadid}">{vb:raw thread.threadtitle}</a> HTML Code:
<a class="title<vb:if condition="$show['gotonewpost']"> threadtitle_unread</vb:if>" href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo_newpost}, 'threadid', 'threadtitle'}" id="thread_title_{vb:raw thread.realthreadid}">{vb:raw thread.threadtitle}</a> http://img856.imageshack.us/img856/3466/image003ff.png --------------------------------------- Fixed in version 2.10: We need to use same id to be able to edit thread title by double click next to thread title. If we exchange id with image's id, then double click doesn't enable us to edit thread title. In code above change is already made, and changed is this: from HTML Code:
id="thread_gotonew_{vb:raw thread.realthreadid}" HTML Code:
id="thread_title_{vb:raw thread.realthreadid}" --------------------------------------------------- Version 1.00: Anyway, if you want that thread title leads to new (unread) post, and small image (https://vborg.vbsupport.ru/images/cs...s/firstnew.gif) leads to first post of the thread, it's relatively simple template edit. You need to edit template threadbit. Find this code: HTML Code:
<vb:if condition="$show['gotonewpost']"><a href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo_newpost}, 'threadid', 'threadtitle'}" id="thread_gotonew_{vb:raw thread.realthreadid}"><img class="gotonewpost" src="{vb:stylevar imgdir_button}/firstnew.png" alt="{vb:rawphrase go_to_first_new_post}" /></a> HTML Code:
<vb:if condition="$show['gotonewpost']"><a href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo}, 'threadid', 'threadtitle'}" id="thread_gotonew_{vb:raw thread.realthreadid}"><img class="gotonewpost" src="{vb:stylevar imgdir_button}/firstnew.png" alt="{vb:rawphrase go_to_first_new_post}" /></a> But, this image appears only if there are new posts in thread, so to make this image appear all the time, you need to remove this if statment in front of code: HTML Code:
<vb:if condition="$show['gotonewpost']"> HTML Code:
</vb:if> Second, more important change as it changes where thread title leads is this: Find: HTML Code:
<a class="title<vb:if condition="$show['gotonewpost']"> threadtitle_unread</vb:if>" href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo}, 'threadid', 'threadtitle'}" id="thread_title_{vb:raw thread.realthreadid}">{vb:raw thread.threadtitle}</a> HTML Code:
<a class="title<vb:if condition="$show['gotonewpost']"> threadtitle_unread</vb:if>" href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo_newpost}, 'threadid', 'threadtitle'}" id="thread_title_{vb:raw thread.realthreadid}">{vb:raw thread.threadtitle}</a> You can also completely remove icon (by removing code, and not just replacing it), if you want that users go only to first unread post (or last, if there are no new posts in thread). But, if you want to keep icon (which I personally prefer, to go to first post in thread easily), I suggest that you also change phrase go_to_first_new_post, as icon now leads to first post, not first new post. To explain what I did, I exchanged link (href) info between the two (icon and thread title), so you could fairly easy make template change even if this particular code changes with future versions of vBulletin. Hope you'll find this useful. :up: |
Thanks always saw this stuff on some of my regular sites..
Probably some of biggest vbulletin sites.. |
Yes, this seem way more logical to use thread titles for finding unread posts and not trying to hit little image in front of it.
|
Guys I'm having a bit of trouble with this, and I can't understand why.
I have set it up so users have the choice via their profile, using VB:IF to alternate between the original code, and the one listed here. It works perfectly, unless the user is in a special permission group forum. It's obviously a pain to test, because I need to be on when there are plenty of people posting. Really appreciate any help. |
You can create test user with same permissions, log as that test user in one browser and test, while monitoring with other browser where you're logged as admin. I always have test user created and just change permissions depending on what I need to test.
Also, it would be interesting to see what code you're actually using to achieve this. |
It seems to not be special forums as I thought earlier. It seems random as to whether it loads the last unread or the last. However, it certainly works more times than it doesn't, and not always on the same thread.
Code: Code:
<vb:if condition="$bbuserinfo['field25'] == 'OFF'"> |
Last unread post is last post if there aren't new posts in thread. If it acts randomly, it may be problem in the way your forum tracks what is last read post. You have option to select the way it is tracked.
Changed code (what I changed) just points to what vB thinks is last unread post that also could be last post of thread, nothing else. I'd check this. |
Where is this option available to look at?
I'm aware of what the change does, and how it should work. It just seems odd to me that this would be acting like this. If I could see some options, that would be good. |
Yes, you go to ACP->Settings->Options->General Settings->Thread/Forum Read Marking Type
I'm using last option: Database (automatic forum marking) |
is there any pic ?
i didnt understand... |
Images were deleted from imageshack. :(
Basicall, you loose image of arrow (shown in the first post of the read and you can see it here on vBorg) before thread title that lead to first unread post (or last post of the thread, depending on thread read status). You have only thread title as a link and it has function that arrow image does. If you ever was on any Xenforo site, you know how links work there. This makes vBulletin site works in that way also. Which is more logical in my opinion, I hate when I need to target small image when I have large thread title. |
Hello I am unable to implement this as the instructions are not too clear.
I tried but couldn't make it work. Can the OP please do a step by step instruction instead of what we have right now? |
I admit I made a bit of a mess leaving old version on, for people with different tastes to choose from.
Now I made small change, describing which template to edit (threadbit) at the beginning. After that, just remove code that removes arrow (first code) and find code you need to change into given code (second and third code). That's it. |
This is very good for the user but are there any negative effects on seo?
|
Can't tell. But I guess if it works for Xenforo, it should work in the same way for vBulletin.
|
Does this only work on threads inside of subforums or does it also work on searches such as "New Posts???"
|
Quote:
If you look for the same phrases in the Search_threadbit you can make the same changes inside of searches such as "New Posts" and such. |
All times are GMT. The time now is 03:01 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|