The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
LOL, so this is a dead issue? Something I can't resolve I guess. Maybe someone else will know of a fix?
|
#12
|
|||
|
|||
You could try posting this question at vBulletin.com.
I suspect one of the JS files removes the title attribute and then vBulletin substitutes their own version of a tooltip box. That way they can preserve the line breaks and so forth. The event listener and the function that creates the vBulletin tooltip box could be in any of the JS files linked in the template. Only specualting here of course |
#13
|
||||
|
||||
What about search_threadbit? It's got two instances of title="{vb:raw thread.preview}"
Maybe I should try removing them as well as the first one we removed? What's your thought on that? |
#14
|
|||
|
|||
What page are you having this problem on? I don't get a thread preview on forumdisplay, only on New Posts search page. (I'm using vb4.1.12)
--------------- Added [DATE]1347082602[/DATE] at [TIME]1347082602[/TIME] --------------- Yes, try that. |
#15
|
||||
|
||||
Okay, I'll make the changes and report back success or failure! Let's hope that it's success!!
|
#16
|
|||
|
|||
Gotta go but I subscribed to this thread
|
#17
|
||||
|
||||
No glory for the wicked!! LOL
Here is the post I created at vb.com https://www.vbulletin.com/forum/show...74#post2333874 |
#18
|
|||
|
|||
That's not the thread preview, that's the title for the link for the last poster. The link is created way down deep in the PHP,I would think, and modifying it would probably require a direct hack. So to get rid of it you'll have to use JavaScript. I used the onload event for the little go to last post button to strip the title from the last poster link.
Near the bottom of the threadbit template find the link with the button image and modify as follows: Code:
<a href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo_lastpost}, 'threadid', 'threadtitle'}#post{vb:raw pageinfo_lastpost.p}" class="lastpostdate understate" title="{vb:rawphrase go_to_last_post}"><img src="{vb:stylevar imgdir_button}/lastpost-{vb:stylevar right}.png" alt="{vb:rawphrase go_to_last_post}" onload="this.parentNode.parentNode.parentNode.getElementsByTagName('a')[0].removeAttribute('title');" /></a> |
#19
|
||||
|
||||
nerbert,
I made the change and added the removeAttribute but it is still showing mouse over effect! Take a quick look at my code, it should match yours. Edit: I removed cookies and history to double check and it still is showing that mouse over event. Code:
<a href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo_lastpost}, 'threadid', 'threadtitle'}#post{vb:raw pageinfo_lastpost.p}" class="lastpostdate understate" title="{vb:rawphrase go_to_last_post}"><img src="{vb:stylevar imgdir_button}/lastpost-{vb:stylevar right}.png" alt="{vb:rawphrase go_to_last_post}" onload="this.parentNode.parentNode.parentNode.getElementsByTagName('a')[0].removeAttribute('title');" /></a> This is the basic information that I'm given using Firebug: Code:
<h4 class="lastpostlabel">Last Post:</h4> <div> <p class="lastposttitle"> <div class="lastpostby"> by <div id="yui-gen34" class="popupmenu memberaction"> <a id="yui-gen36" class="username online popupctrl" bold;"="" font-weight:="" red;="" color:="" ms;="" sans="" comic="" 13px="" font:="" title="<span style=" href="member.php?u=1"> Syxguns is online now"> <strong> </a> <ul id="yui-gen35" class="popupbody memberaction_body"> </div> </div> |
#20
|
|||
|
|||
Looks like you did it right. Maybe they changed the HTML for vB4.2.0.
Could you post the bottom of the template starting with "<!-- lastpost -->"? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|