vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - jQt jQuery Suite for vB4 (https://vborg.vbsupport.ru/showthread.php?t=267121)

Winter Sonata 11-25-2011 03:17 AM

Any chance this will work on 402 ?

Looks promising, thanks alot!

Demo ?

Gemma 11-26-2011 04:16 PM

Thanks gothicuser, works great :)

gothicuser 11-26-2011 08:14 PM

Quote:

Originally Posted by Winter Sonata (Post 2271638)
Any chance this will work on 402 ?

Yep

Quote:

Looks promising, thanks alot!

Demo ?
I would normally have it installed on my site, but I started an upgrade 2 weeks ago, and Murphy's law kicked in...... I haven't had a day off work since then.
When I finally finish this marathon of work (damn soon I hope) I will complete the upgrade in re-install the demo(s).

smirkley 12-01-2011 12:02 PM

gothicuser,.. firstly, thanks, this really dresses up the functionality of my forums.

I am in the process of fine tuning this for my layout, so if I post a question or a bug report, they are just me trying to finish it up.

Hey, I use the add-on you gave for the search results, and I like the positioning of the popup.

But I wish to move the other thread list popups to position more to the right also. I would just like to position the popup to the right of the mouse pointer instead of above the pointer as it is currently.

Where do I tweak the settings to move it over a bit.

Thanks again.

gothicuser 12-01-2011 01:00 PM

Quote:

Originally Posted by smirkley (Post 2273645)
But I wish to move the other thread list popups to position more to the right also. I would just like to position the popup to the right of the mouse pointer instead of above the pointer as it is currently.

Where do I tweak the settings to move it over a bit.

Thanks again.

To edit the position of the tooltip you need to open one of the css.js files (depending on which theme you use, either the 'jqt_suite_black_css.js' or 'jqt_suite_white_css.js')
The positioning is controlled where you see the line
PHP Code:

offset: [14, -20], 

x coordinate fist, then y
They are fiddly to get right. You just need to experiment.
The block you need to find will be the
PHP Code:

    // Tooltip for threadbits
$("td.jqt_threadbit_tooltip_trigger[title]").tooltip({
   
tipClass:'jqt_threadbit_tooltip_white',
   
offset: [14, -20],
   
effect'slide',
   
predelay'500',
   
slideInSpeed500,
   
slideOutSpeed400,
   
slideOffset20
}).dynamic({ bottom: { direction'down'bouncetrue } }); 

or

PHP Code:

    // Tooltip for threadbits number 2 (vB4)
$("div.jqt_threadbit_tooltip_trigger2[title]").tooltip({
   
tipClass:'jqt_threadbit_tooltip_white',
   
offset: [14, -20],
   
effect'slide',
   
predelay'500',
   
slideInSpeed500,
   
slideOutSpeed400,
   
slideOffset20
}).dynamic({ bottom: { direction'down'bouncetrue } }); 

You'll have to experiment.

qpurser 12-01-2011 02:22 PM

1 Attachment(s)
I just installed your mod and really like professional look of it. Great job!!

However I have a couple issues:
The thread tooltip shows up fine but it still shows also the "standard" popup from vBulletin when hovering over a thread. How can I turn the "standard" popup off?

Did the modifications also for the postbit as instructed but my postbit looks like this now as shown in the attachment

Thanks for any help
Michael

gothicuser 12-01-2011 04:28 PM

Quote:

Originally Posted by qpurser (Post 2273681)
However I have a couple issues:
The thread tooltip shows up fine but it still shows also the "standard" popup from vBulletin when hovering over a thread. How can I turn the "standard" popup off?

That shouldn't happen, doing the template edit the original 'title=""':
PHP Code:

<div class="threadinfo" title="{vb:raw thread.preview}"

is replaced by the edit:
PHP Code:

<div class="threadinfo"

so hiding the original tip.
Quote:

Did the modifications also for the postbit as instructed but my postbit looks like this now as shown in the attachment
Looked at your postbit piccy, but the only time I saw that was when another mod was clashing with mine. Do you have any other add-ons that use script (jquery or mootools)?

qpurser 12-01-2011 05:23 PM

Quote:

Originally Posted by gothicuser (Post 2273714)
That shouldn't happen, doing the template edit the original 'title=""':
PHP Code:

<div class="threadinfo" title="{vb:raw thread.preview}"

is replaced by the edit:
PHP Code:

<div class="threadinfo"

so hiding the original tip.

Nope..That is not the issue. I commented out the original Title as you can see

Here is the code I have now in my "threadbit"
Code:

<!-- <div class="threadinfo" title="{vb:raw thread.preview}"> -->
<vb:if condition="$vboptions['jqt_threadbits_tooltip_on']">
    <div class="threadinfo">
        <div class="jqt_threadbit_tooltip_trigger2" title="&lt;table class=&quot;threadbit_tooltip&quot;&gt;
&lt;tr&gt;
&lt;td class=&quot;avatar_blok&quot;&gt;
  &lt;img src=&quot;{vb:raw thread.avatarurl}&quot; border=&quot;0&quot;style=&quot;max-width:80px;min-width:60px; max-height:90px;&quot; /&gt;
&lt;/td&gt;
&lt;td class=&quot;user_detail&quot;&gt;
&lt;p class=&quot;borderbottom&quot;&gt;&lt;i&gt;Preview&lt;/i&gt;&lt;/p&gt;
&lt;p class=&quot;details2&quot;&gt;{vb:raw thread.preview}&lt;/p&gt;
&lt;h5&gt;Started by: {vb:raw thread.postusername}, {vb:raw thread.lastpostdate} {vb:raw thread.lastposttime}&lt;/h5&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;">
<vb:else />
            <div class="threadinfo" title="{vb:raw thread.preview}">
</vb:if>


smirkley 12-02-2011 12:03 AM

Quote:

Originally Posted by qpurser (Post 2273681)
Did the modifications also for the postbit as instructed but my postbit looks like this now as shown in the attachment

This looks like the same problem with mine, except for mine only does this with banned and awaiting confirmation members with posts.

smirkley 12-02-2011 12:45 AM

Quote:

Originally Posted by gothicuser (Post 2273657)
To edit the position of the tooltip you need to open one of the css.js files (depending on which theme you use, either the 'jqt_suite_black_css.js' or 'jqt_suite_white_css.js')
The positioning is controlled where you see the line
PHP Code:

offset: [14, -20], 

x coordinate fist, then y
They are fiddly to get right. You just need to experiment.
The block you need to find will be the
PHP Code:

    // Tooltip for threadbits
$("td.jqt_threadbit_tooltip_trigger[title]").tooltip({
   
tipClass:'jqt_threadbit_tooltip_white',
   
offset: [14, -20],
   
effect'slide',
   
predelay'500',
   
slideInSpeed500,
   
slideOutSpeed400,
   
slideOffset20
}).dynamic({ bottom: { direction'down'bouncetrue } }); 

or

PHP Code:

    // Tooltip for threadbits number 2 (vB4)
$("div.jqt_threadbit_tooltip_trigger2[title]").tooltip({
   
tipClass:'jqt_threadbit_tooltip_white',
   
offset: [14, -20],
   
effect'slide',
   
predelay'500',
   
slideInSpeed500,
   
slideOutSpeed400,
   
slideOffset20
}).dynamic({ bottom: { direction'down'bouncetrue } }); 

You'll have to experiment.


Thank you !!

I played with it awhile, and got ther threadlist tooltip to position properly where I wanted it.

Sweet!

But I did notice that the search_threadbit tooltip is positioned even further the distance to the right now. Like it was in the middle for some reason oem, and when I moved the position offset for threadlist, it moved the offset even further the same distance to the right.

A note, I used your search_threadbit that you posted.


All times are GMT. The time now is 01:22 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
  • Page Generation 0.01567 seconds
  • Memory Usage 1,793KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (10)bbcode_php_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete