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.

smirkley 12-02-2011 12:58 AM

Sorry for the bump,..

But I hafta ask one more question. can this be applied to forumlists so I can have the forum description popup in a tooltip?

Thanks for everything in this!

thedarkroom 12-02-2011 04:48 PM

hi friend great mod, but im having troubles with my header i think, i follow the edit instructions but is not showing the "Log in/register" button :( this is my header and my navbar

Header:
Code:

<li class="threadbit {vb:raw thread.statusstring}<vb:if condition="$show['paperclip']"> attachments</vb:if><vb:if condition="!$thread['postuserid'] AND !$thread['del_userid']"> guest</vb:if><vb:if condition="$thread['moderatedprefix']"> unapproved</vb:if>" id="thread_{vb:raw thread.realthreadid}">
        <div class="rating{vb:raw thread.rating}<vb:if condition="$thread['sticky']"> sticky<vb:else /> nonsticky</vb:if>">
                <div class="threadinfo" title="{vb:raw thread.preview}">
                        <!--  status icon block -->
                        <a class="threadstatus" rel="vB::AJAX" <vb:if condition="$show['threadcount']">title="{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}"</vb:if>></a>
               
                        <!-- title / author block -->
                        <div class="inner">
                                <h3 class="threadtitle">
                                      <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>
                                        </vb:if>       
                                               
                                        <vb:if condition="$show['threadicon']">
                                                <img src="{vb:raw thread.threadiconpath}" alt="{vb:raw thread.threadicontitle}" border="0" />
                                        </vb:if>

                                        <vb:if condition="$thread['sticky']">
                                                <img src="{vb:stylevar imgdir_misc}/sticky.gif" alt="{vb:rawphrase sticky_thread}" />
                                        </vb:if>
                                       
                                        <vb:if condition="$thread['movedprefix'] OR $thread['typeprefix'] OR $thread['moderatedprefix'] OR $thread['prefix_rich']">
                                                <span class="prefix understate">
                                                        {vb:raw thread.movedprefix}
                                                        {vb:raw thread.typeprefix}
                                                        {vb:raw thread.moderatedprefix}
                                                        {vb:raw thread.prefix_rich}
                                                </span>
                                        </vb:if>
                                        <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>
                                </h3>
                                               

                                <div class="threadmeta">                               
                                        <div class="author">
                                                <vb:if condition="$show['rmanage']">
                                                        <span class="rmanage"><a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}postings.php?{vb:raw session.sessionurl}do=editthread&amp;t={vb:raw thread.redirectthreadid}">{vb:rawphrase manage}</a></span>
                                                </vb:if>                                               
                                                <vb:if condition="!$show['detailedtime']">
                                                        {vb:rawphrase started_by_x_y_z_a, {vb:link member, {vb:raw thread}, null, 'postuserid', 'postusername'}, {vb:raw thread.postusername}, {vb:raw thread.startdate}, {vb:raw thread.starttime}, {vb:stylevar dirmark}}
                                                <vb:else />
                                                        {vb:rawphrase started_by_x_y_z, {vb:link member, {vb:raw thread}, null, 'postuserid', 'postusername'}, {vb:raw thread.postusername}, {vb:raw thread.startdate}, {vb:stylevar dirmark}}
                                                </vb:if>
                                                <vb:if condition="$show['unsubscribe']">
                                                        &nbsp; <a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}newreply.php?{vb:raw session.sessionurl}do=newreply&amp;t={vb:raw thread.threadid}" rel="nofollow">{vb:rawphrase reply}</a>
                                                        | <a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}subscription.php?{vb:raw session.sessionurl}do=removesubscription&amp;return=ucp&amp;t={vb:raw thread.threadid}" rel="nofollow">{vb:rawphrase unsubscribe}</a>
                                                </vb:if>
                                                <vb:if condition="$thread['pagenav']">
                                                        <dl class="pagination" id="pagination_threadbit_{vb:raw thread.realthreadid}">
                                                                <dt class="label">{vb:raw thread.totalpages} {vb:rawphrase pages} <span class="separator">&bull;</span></dt>
                                                                <dd>
                                                                        {vb:raw thread.pagenav}
                                                                        <vb:if condition="$show['pagenavmore']"> <span class="separator">...</span> <span><a href="{vb:raw thread.lastpagelink}">{vb:raw thread.totalpages}</a></span></vb:if>
                                                                </dd>
                                                        </dl>
                                                </vb:if>
                                        </div>
                                       
                                </div>

                        </div>                               
                        <!-- iconinfo -->
                        <div class="threaddetails td">
                                <div class="threaddetailicons">
                                        <vb:if condition="$show['taglist']">
                                                <img src="{vb:stylevar imgdir_misc}/tag.png" alt="{vb:raw thread.taglist}" />
                                        </vb:if>
                                        <vb:if condition="$show['rexpires']">
                                                <img src="{vb:stylevar imgdir_misc}/expires.gif" alt="{vb:rawphrase expires_on_x_y, {vb:raw thread.expiredate}, {vb:raw thread.expiretime}}" />
                                        </vb:if>
                                        <vb:if condition="$show['moderated']">
                                                <img src="{vb:stylevar imgdir_misc}/moderated_small.gif" alt="{vb:rawphrase x_moderated_posts, {vb:raw thread.hiddencount}}" />
                                        </vb:if>
                                        <vb:if condition="$show['deletedthread']">
                                                <img src="{vb:stylevar imgdir_misc}/trashcan_small.gif" alt="{vb:rawphrase x_deleted_posts, {vb:raw thread.deletedcount}}" />
                                        </vb:if>
                                        <vb:if condition="$show['paperclip']">
                                                <a href="javascript://" onclick="attachments({vb:raw thread.threadid}); return false"> <img src="{vb:stylevar imgdir_misc}/paperclip.png" border="0" alt="{vb:rawphrase x_attachments, {vb:raw thread.attach}}" /></a>
                                        </vb:if>
                                        <vb:if condition="$show['subscribed']">
                                                <img src="{vb:stylevar imgdir_misc}/subscribed.png" alt="{vb:rawphrase you_are_subscribed_to_this_thread}" />
                                        </vb:if>
                                </div>
                        </div>
                </div>
               
                <!-- threadstats -->
                <vb:if condition="!$show['notificationtype']">
                <ul class="threadstats td alt" title="<vb:if condition="$thread['dot_count'] > 0">{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}</vb:if>">
                        <vb:if condition="$show['threadmoved']">
                                <li>&nbsp;</li>
                                <li>&nbsp;</li>
                        <vb:else />
                                <li>{vb:rawphrase replies}: <a href="misc.php?do=whoposted&amp;t={vb:raw thread.threadid}" onclick="who({vb:raw thread.threadid}); return false;" class="understate">{vb:raw thread.replycount}</a></li>
                                <li>{vb:rawphrase views}: {vb:raw thread.views}</li>
                        </vb:if>
                        <li class="hidden">{vb:rawphrase rating}{vb:raw thread.rating} / 5</li>
                </ul>
                </vb:if>                                       
                <!-- lastpost -->
                <dl class="threadlastpost td<vb:if condition="$show['notificationtype']"> alt</vb:if>">
                <vb:if condition="$show['threadmoved']">
                        <dt class="lastpostby hidden">&nbsp;</dt>
                <vb:else />
                        <dt class="lastpostby hidden">{vb:rawphrase last_post_by}</dt>
                        <dd>{vb:raw memberaction_dropdown}</dd>
                        <dd>{vb:raw thread.lastpostdate}<vb:if condition="!$show['detailedtime']">, <span class="time">{vb:raw thread.lastposttime}</span></vb:if>
                        <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}" /></a>
                        </dd>
                </vb:if>
                </dl>

                <vb:if condition="$show['notificationtype']">
                <!--  notification -->
                <div class="threadnotification td" >
                        <label for="thread_imod_checkbox_{vb:raw thread.realthreadid}">{vb:raw thread.notification}</label>
                </div>
                <label class="threadimod td">
                        <input type="checkbox" name="deletebox[{vb:raw subscribethread.$threadid}]" id="thread_imod_checkbox_{vb:raw thread.realthreadid}" value="yes" tabindex="1" />
                </label>
                </vb:if>
               
                <vb:if condition="$show['inlinemod']">
                <!-- fourth block -->
                <label class="threadimod td alt">
                        <input type="checkbox" id="thread_imod_checkbox_{vb:raw thread.realthreadid}" name="imodcheck[{vb:raw thread.realthreadid}]" tabindex="1" />
                </label>
                </vb:if>
               
        </div>
</li>

And this is my navbar:
Code:

<div id="navbar" class="navbar">
        <ul id="navtabs" class="navtabs floatcontainer<vb:if condition="$show['member'] AND $notifications_total"> notify</vb:if>">
                {vb:raw template_hook.navtab_start}
                <vb:if condition="!$vboptions['selectednavtab'] AND THIS_SCRIPT != 'search'">
                        <li class="selected"><a class="navtab" href="{vb:link forumhome}">{vb:rawphrase forum}</a>
                                <ul class="floatcontainer">
                                        {vb:raw template_hook.navbar_start}
                                        <vb:if condition="$show['searchbuttons']">
                                                <vb:if condition="$show['member']">
                                                <li><a href="search.php?{vb:raw session.sessionurl}do=getnew&amp;contenttype=vBForum_Post">{vb:rawphrase new_posts_nav}</a></li>
                                                <vb:else />
                                                <li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_Post">{vb:rawphrase todays_posts}</a></li>
                                                </vb:if>
                                        </vb:if>
                                        {vb:raw template_hook.navbar_after_getnew}
                                        <vb:if condition="$show['pmmainlink']">
                                                <li><a href="private.php{vb:raw session.sessionurl_q}" rel="nofollow">{vb:rawphrase private_messages}</a></li>
                                        </vb:if>
                                        {vb:raw template_hook.navbar_after_pm}
                                        <li><a rel="help" href="faq.php{vb:raw session.sessionurl_q}" accesskey="5">{vb:rawphrase faq}</a></li>
                                        {vb:raw template_hook.navbar_after_faq}
                                        <vb:if condition="$show['canviewcalendar']">
                                                <li><a href="calendar.php{vb:raw session.sessionurl_q}">{vb:rawphrase calendar}</a></li>
                                        </vb:if>
                                        {vb:raw template_hook.navbar_after_calendar}
                                        <vb:if condition="$show['communitylink']">
                                        <li class="popupmenu">
                                                <a href="javascript://" class="popupctrl" accesskey="6">{vb:rawphrase community}</a>
                                                <ul class="popupbody popuphover">
                                                        {vb:raw template_hook.navbar_community_menu_start}
                                                        <vb:if condition="$show['quick_links_groups']">
                                                                <li><a href="{vb:link grouphome}">{vb:rawphrase social_groups}</a></li>
                                                        </vb:if>
                                                        <vb:if condition="$show['quick_links_albums']">
                                                                <li><a href="album.php{vb:raw session.sessionurl_q}">{vb:rawphrase pictures_and_albums}</a></li>
                                                        </vb:if>
                                                        <vb:if condition="$bbuserinfo['userid']">
                                                                <li><a href="profile.php?{vb:raw session.sessionurl}do=buddylist"><vb:if condition="$show['friends_and_contacts']">{vb:rawphrase contacts_and_friends}<vb:else />{vb:rawphrase contacts}</vb:if></a></li>
                                                        </vb:if>
                                                        <vb:if condition="$show['memberslist']">
                                                                <li><a href="memberlist.php{vb:raw session.sessionurl_q}">{vb:rawphrase members_list}</a></li>
                                                        </vb:if>
                                                        {vb:raw template_hook.navbar_community_menu_end}
                                                </ul>
                                        </li>
                                        </vb:if>
                                        {vb:raw template_hook.navbar_after_community}
                                        <vb:if condition="$show['canviewforums']">
                                        <li class="popupmenu">
                                                <a href="javascript://" class="popupctrl">{vb:rawphrase forum_actions}</a>
                                                <ul class="popupbody popuphover">
                                                        <li>
                                                                <a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}forumdisplay.php?{vb:raw session.sessionurl}do=markread&amp;markreadhash={vb:raw bbuserinfo.securitytoken}">{vb:rawphrase mark_forums_read}</a>
                                                        </li>
                                                        <vb:if condition="$show['member']">
                                                        <li>
                                                                <a href="profile.php?{vb:raw session.sessionurl}do=editoptions">{vb:rawphrase edit_options}</a>
                                                        </li>
                                                        <li>
                                                                <a href="profile.php?{vb:raw session.sessionurl}do=editprofile">{vb:rawphrase edit_your_details}</a>
                                                        </li>
                                                        </vb:if>
                                                </ul>
                                        </li>
                                        </vb:if>
                                        <li class="popupmenu">
                                                <a href="javascript://" class="popupctrl" accesskey="3">{vb:rawphrase quick_links}</a>
                                                <ul class="popupbody popuphover">
                                                        <vb:if condition="$show['member']">
                                                                <li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_Post">{vb:rawphrase todays_posts}</a></li>
                                                                <li><a href="{vb:link subscription}" rel="nofollow">{vb:rawphrase subscribed_threads}</a></li>
                                                                <li><a href="javascript://" onclick="window.open(getBaseUrl() + 'misc.php?{vb:raw session.sessionurl}do=buddylist&amp;focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">{vb:rawphrase open_contacts}</a></li>
                                                        </vb:if>
                                                        <vb:if condition="$vboptions['forumleaders']">
                                                        <li><a href="showgroups.php{vb:raw session.sessionurl_q}" rel="nofollow">
                                                                <vb:if condition="$vb_suite_installed">
                                                                        {vb:rawphrase view_site_leaders}
                                                                <vb:else />
                                                                        {vb:rawphrase view_forum_leaders}
                                                                </vb:if>
                                                        </a></li>
                                                        </vb:if>
                                                        {vb:raw template_hook.navbar_quick_links_menu_pos1}
                                                        {vb:raw template_hook.navbar_quick_links_menu_pos2}
                                                        {vb:raw template_hook.navbar_quick_links_menu_pos3}
                                                        <vb:if condition="$show['wollink']">
                                                                <li><a href="online.php{vb:raw session.sessionurl_q}">{vb:rawphrase whos_online}</a></li>
                                                        </vb:if>
                                                        {vb:raw template_hook.navbar_quick_links_menu_pos4}
                                                </ul>
                                        </li>
                                        {vb:raw template_hook.navbar_end}
                                </ul>

                        </li>
                <vb:else />
                        <li><a class="navtab" href="{vb:link forumhome}">{vb:rawphrase forum}</a></li>
                </vb:if>
                {vb:raw template_hook.navtab_middle}
                <vb:if condition="!$vboptions['selectednavtab'] AND THIS_SCRIPT == 'search'">
                        <vb:if condition="$show['member']">
                        <li  class="selected"><a class="navtab" href="search.php?{vb:raw session.sessionurl}do=getnew&amp;contenttype=vBForum_Post" accesskey="2">{vb:rawphrase getnew_tab}</a>
                                <ul class="floatcontainer">
                                        <li><a href="search.php?{vb:raw session.sessionurl}do=getnew&amp;contenttype=vBForum_Post">{vb:rawphrase new_posts_nav}</a></li>
                                        <li><a href="search.php?{vb:raw session.sessionurl}do=getnew&amp;contenttype=vBForum_SocialGroupMessage">{vb:rawphrase new_group_messages_nav}</a></li>
                                        <li><a href="search.php?{vb:raw session.sessionurl}do=getnew&amp;contenttype=vBForum_Event">{vb:rawphrase new_events_nav}</a></li>
                                        {vb:raw template_hook.navbar_getnew_menu}
                                        <li><a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}forumdisplay.php?{vb:raw session.sessionurl}do=markread&amp;markreadhash={vb:raw bbuserinfo.securitytoken}">{vb:rawphrase mark_forums_read}</a></li>
                                </ul>
                        </li>
                        <vb:else />
                        <li  class="selected"><a class="navtab" href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_Post" accesskey="2">{vb:rawphrase getnew_tab}</a>
                                <ul class="floatcontainer">
                                        <li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_Post">{vb:rawphrase todays_posts}</a></li>
                                        <li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_SocialGroupMessage">{vb:rawphrase daily_group_message}</a></li>
                                        <li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_Event">{vb:rawphrase daily_events}</a></li>
                                        {vb:raw template_hook.navbar_getdaily_menu}
                                        <li><a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}forumdisplay.php?{vb:raw session.sessionurl}do=markread&amp;markreadhash={vb:raw bbuserinfo.securitytoken}">{vb:rawphrase mark_forums_read}</a></li>
                                </ul>
                        </li>
                        </vb:if>
                <vb:elseif condition="$show['member']" />
                        <li><a class="navtab" href="search.php?{vb:raw session.sessionurl}do=getnew&amp;contenttype=vBForum_Post" accesskey="2">{vb:rawphrase getnew_tab}</a></li>
                <vb:else />
                        <li><a class="navtab" href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_Post" accesskey="2">{vb:rawphrase getnew_tab}</a></li>
                </vb:if>
                {vb:raw template_hook.navtab_end}
        </ul>

        <vb:if condition="$vboptions['enablesearches']">
        <div id="globalsearch" class="globalsearch">
                <form action="search.php?{vb:raw session.sessionurl}do=process" method="post" id="navbar_search" class="navbar_search">
                        <vb:comment><input type="hidden" name="s" value="{vb:raw session.sessionurl}" /></vb:comment>
                        <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
                        <input type="hidden" name="do" value="process" />
                        <span class="textboxcontainer"><span><input type="text" value="" name="query" class="textbox" tabindex="99"/></span></span>
                        <span class="buttoncontainer"><span><input type="image" class="searchbutton" src="{vb:stylevar imgdir_button}/search<vb:if condition="$stylevar['textdirection'] == 'rtl'">_rtl</vb:if>.<vb:if condition="is_browser('ie') AND !is_browser('ie', 7)">gif<vb:else />png</vb:if>" name="submit" onclick="document.getElementById('navbar_search').submit;" tabindex="100"/></span></span>
                </form>
                <ul class="navbar_advanced_search">
                        <li><a href="search.php{vb:raw session.sessionurl_q}" accesskey="4">{vb:rawphrase advanced_search}</a></li>
                </ul>
        </div>
        </vb:if>
</div>
</div><!-- closing div for above_body -->

<div class="body_wrapper">
<div id="breadcrumb" class="breadcrumb">
        <ul class="floatcontainer">
                <li class="navbithome"><a href="index.php{vb:raw session.sessionurl_q}" accesskey="1"><img src="{vb:stylevar imgdir_misc}/navbit-home.png" alt="{vb:rawphrase home}" /></a></li>
                {vb:raw navbits.breadcrumb}
                {vb:raw navbits.lastelement}
        </ul>
        <hr />
</div>

{vb:raw ad_location.ad_navbar_below}
{vb:raw ad_location.global_below_navbar}

<vb:if condition="$show['notices'] AND THIS_SCRIPT != 'register'">
        <form action="profile.php?do=dismissnotice" method="post" id="notices" class="notices">
                <input type="hidden" name="do" value="dismissnotice" />
                <input type="hidden" name="s" value="{vb:raw session.sessionurl}" />
                <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
                <input type="hidden" id="dismiss_notice_hidden" name="dismiss_noticeid" value="" />
                <input type="hidden" name="url" value="{vb:raw return_link}" />
                <ol>
                        {vb:raw notices}
                </ol>
        </form>
</vb:if>

i really hope you can help me :)

gothicuser 12-02-2011 06:22 PM

Guys, really sorry. Just got home from work, need sleep will reply in the morning.

gothicuser 12-03-2011 04:40 AM

Quote:

Originally Posted by smirkley (Post 2273870)
Sorry for the bump,..

But I hafta ask one more question. can this be applied to forumlists so I can have the forum description popup in a tooltip?

Thanks for everything in this!

I did try that once, but I seem to remember there were other issues there, not sure what they were though.
When this damn project I'm so submerged in comes to an end I will have time to further develop this and will add other bits as well.

gothicuser 12-03-2011 04:44 AM

Quote:

Originally Posted by thedarkroom (Post 2274066)
hi friend great mod, but im having troubles with my header i think, i follow the edit instructions but is not showing the "Log in/register" button :( this is my header and my navbar

i really hope you can help me :)

The code you posted for the header looks like a bit of your threadbits template.
What theme are you having the problems with?
Let me know and I'll be able to help you more bud.

gothicuser 12-03-2011 04:50 AM

Quote:

Originally Posted by qpurser (Post 2273737)
Nope..That is not the issue. I commented out the original Title as you can see

I'm at a loss. Been trying to replicate your issue but can't.
Which theme are you trying to add the mod to please?

thedarkroom 12-03-2011 05:00 AM

hi :) the name of my template is Concept9

gothicuser 12-03-2011 06:11 AM

Quote:

Originally Posted by thedarkroom (Post 2274232)
hi :) the name of my template is Concept9

I'll have a look and get back to you.

thedarkroom 12-03-2011 03:36 PM

it would be great :D

smirkley 12-03-2011 03:45 PM

Quote:

Originally Posted by gothicuser (Post 2274228)
I did try that once, but I seem to remember there were other issues there, not sure what they were though.
When this damn project I'm so submerged in comes to an end I will have time to further develop this and will add other bits as well.

Take your time, you have a life. So no worries.

I am going to play with that concept for awhile, and if I can make it work I will shoot you the code.

Thanks again.

customcolor 12-06-2011 06:29 AM

well im running 4.1.8 and it looks fine...sings in fine...but only one thing not working.....the registration doesnt show the question, image or that other thing...and it only shows " i agree to"

try it at... http://www.localclubhotspot.com/forum.php

gothicuser 12-06-2011 06:36 AM

Quote:

Originally Posted by customcolor (Post 2275101)
only one thing not working.....the registration doesnt show the question, image or that other thing...and it only shows " i agree to"

Silly question really.. do you have Human Verification turned on/configured from your AdminCP?
and is "Display Human Verification?" in the AdminCP/jQt Settings turned on?
Normally if the script is hiccupping there, it will display a blank/empty bordered box.

customcolor 12-06-2011 09:16 PM

Quote:

Originally Posted by gothicuser (Post 2275103)
Silly question really.. do you have Human Verification turned on/configured from your AdminCP?
and is "Display Human Verification?" in the AdminCP/jQt Settings turned on?
Normally if the script is hiccupping there, it will display a blank/empty bordered box.

turned on meaning "not disabled" then yes its turned on

and yes display human verification is turned on for jqt settings

customcolor 12-07-2011 02:00 AM

at this point i disabled it so that i can use auctions/classifieds the jqt clashed

smirkley 12-07-2011 05:01 AM

Quote:

Originally Posted by gothicuser (Post 2275103)
Silly question really.. do you have Human Verification turned on/configured from your AdminCP?
and is "Display Human Verification?" in the AdminCP/jQt Settings turned on?
Normally if the script is hiccupping there, it will display a blank/empty bordered box.

I think he is talking about the percieved link for the Rules and Terms...just looks like that whats that for.

gothicuser 12-07-2011 08:02 AM

Quote:

Originally Posted by smirkley (Post 2274343)
Take your time, you have a life. So no worries.
I am going to play with that concept for awhile, and if I can make it work I will shoot you the code.
Thanks again.

I have it working..... after a fashion.
I am able to get the actual description up in a tooltip, also, in a sexier color the post and thread count. But I'm damned if I can make it display the 'Last Post By' detail. I have tried everything with totally NO success :(
Still, acorns... etc.

update: I can make it display all that I would like, but only if I generate a new template and do a replacement which is not tenable because of the vast variety of themes/styles.
I will persevere, and let me know if you have any success in this area

gothicuser 12-07-2011 11:08 AM

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?

This has been addressed in the next release, due out in a couple of days.

gothicuser 12-07-2011 02:05 PM

Been having a heavy dev session.
Will be issuing an upgrade package in the next couple of days which will include a couple of bug fixes
New features:
Search results tooltip
Forum description tooltip
More functionality to the current threadbit tooltip.
Shout (very quickly) if you can think of any other bits that ought to be added.

smirkley 12-07-2011 02:55 PM

Quick question,.. in the legacy postbit tooltip, I noticed that the tooltip pops up on the page, but lays under a posted google video. I rather keep the tooltip positioned where I have it, but is this a bug? or just the way it interacts with an embedded google video?

You can see this if you make a post with lets say just an embedded google video in a post, using legacy postbit. I have my tooltip positioned just to the right of a users avatar.

And Thanks, for the upcoming enhancements!

gothicuser 12-07-2011 04:02 PM

Quote:

Originally Posted by smirkley (Post 2275558)
Quick question,.. in the legacy postbit tooltip, I noticed that the tooltip pops up on the page, but lays under a posted google video. I rather keep the tooltip positioned where I have it, but is this a bug? or just the way it interacts with an embedded google video?

You can see this if you make a post with lets say just an embedded google video in a post, using legacy postbit. I have my tooltip positioned just to the right of a users avatar.

And Thanks, for the upcoming enhancements!

I have seen that, it's to do with the z-index which I can adjust from my end :)

smirkley 12-08-2011 02:57 AM

Sorry for the late post, but I just discovered that Login/Logout does not work on CMS builds.

Havent tested register yet.

gothicuser 12-08-2011 04:13 AM

Quote:

Originally Posted by smirkley (Post 2275770)
Sorry for the late post, but I just discovered that Login/Logout does not work on CMS builds.

Havent tested register yet.

Eh?
Do you mean on version 4.1.9?
If so I haven't tested yet, though I did see that they have included a new jQuery library :eek:

EDIT: Nope, not that, just upgraded one of my dev boxes to 4.1.9 and all seems to work fine. No errors.

smirkley 12-08-2011 04:46 AM

I am still on 4.1.8 until 9 comes out of beta.

But I click on the register link, or logout link,...and nothing happens.

Other pages completely ok.

gothicuser 12-08-2011 07:00 AM

Quote:

Originally Posted by smirkley (Post 2275786)
I am still on 4.1.8 until 9 comes out of beta.
But I click on the register link, or logout link,...and nothing happens.
Other pages completely ok.

Ah, you're saying those links are not working on VBCMS page(s) but ok on all other pages.
Interesting, I'm not having a problem here BUT I have seen that the execution order can have an effect on that.
What you could try (bit heavy handed, I know) is to pop into AdminCP/Plugins & Products/Manage Products/jQt Login/Register/jQt Suite Parse the MarkRead Template
Set execution order to something like 100
then AdminCP/Plugins & Products/Manage Products/jQt Login/Register/jQt Suite Parse the Logout Template and set it's execution order to maybe 120 (this has to be higher than markread)
Let me know if that[s] kills your forums[/s] works or not.

smirkley 12-09-2011 12:29 AM

Did as suggested,... everything works on CMS except Logout.

gothicuser 12-10-2011 10:17 AM

Update itself is ready. All I have to do now is the documentation, and a couple more test installs.
Possibly tomorrow morning.

p.s. Smirkley, we really need to talk :rolleyes: I was on your site and see a couple of possible issues.

gothicuser 12-11-2011 06:54 AM

Finally, I have posted the upgrade. Fully tested with new docs.
Oh dear, the docs need fixing :(

smirkley 12-15-2011 06:56 PM

Thank you for this mod. I have just upgraded and also used the IE fix js file. I love the improvements.

After considerable testing the following are bugs/wishlist stuff. The bugs are carryovers from the last so they are nothing new. The wishlists are just things that seem to add to its value. I know you have implied that at least one of the bugs are a problem or conflict on my site, but I have disabled all mods and the problems persist on a default vB theme.



Bugs:

[S]search result tooltip is positioned a couple of hundred pixels to the right further than the other tooltips, and when I adjust the css to move the threadbit tooltips toward the center, the search result tooltip moves even further to the right by the same amount. Would prefer to have all tooltips positioned the same referencing the css setting.[/S] fixed in v2.1

[S]On CMS, logout login/reg overlay does not work on any CMS page.[/S]
Human verification does not show on CMS using IE and Firefox in register overlay, and does not show on any site page using Internet Explorer.

template edit below seems to have fixed this for FF, still no human verify using IE9 in reg.login




[S]On the Register overlay, the term "(checkbox) I agree to" should also have added " all Terms & Conditions"[/S] to be fixed in next update - I edited to include a link and the rest of the phrase for now in the product xml.
fix: find:
{vb:raw vboptions.bbtitle}}

add after:
<u><a href="{vb:raw vboptions.tosurl}" target="_blank">{vb:rawphrase terms_of_service}</a></u>



in the legacy postbit tooltip, I noticed that the tooltip pops up on the page, but lays under a posted google video. I rather keep the tooltip positioned where I have it, but is this a bug? or just the way it interacts with an embedded google video? You can see this if you make a post with lets say just an embedded google video in a post, using legacy postbit. I have my tooltip positioned just to the right of a users avatar.





Wishlist:

[S]forumhome forumlist tooltip - would like the image in tooltip to be the forum statusicon image instead of the default.[/S]

found fix solution!!:

replace in :
forumhome_forumbit_level1_post
forumhome_forumbit_level2_post


find:
{vb:stylevar imgdir_statusicon}/users.png

replace with:
{vb:stylevar imgdir_statusicon}/{vb:raw forum.imageprefix}forum_{vb:raw forum.statusicon}-48.png





I, after testing out all the above items, wanted to try to add a register floater image on all pages, and link it to the login/register overlay. I am successful except for the fact the image links properly, but now the Login/Register link in the header no longer works. Is it not possible to have two instances of the login/register overlay on any given page?

I know you are busy, I look forward to your reply. Thanks.

gothicuser 12-15-2011 08:07 PM

Quote:

Originally Posted by smirkley (Post 2278087)
Bugs:

search result tooltip is positioned a couple of hundred pixels to the right further than the other tooltips, and when I adjust the css to move the threadbit tooltips toward the center, the search result tooltip moves even further to the right by the same amount. Would prefer to have all tooltips positioned the same referencing the css setting.

I will look further into this, I may try to separate the script controller for this (search) tooltip.
Quote:

On CMS, logout login/reg overlay does not work on any CMS page.

Human verification does not show on CMS using IE and Firefox in register overlay, and does not show on any site page using Internet Explorer.
I have to say that I have not seen these problems at all, having tested with all popular browsers (Chrome, FF, IE7,8 & 9 and Safari) All overlays work on all the pages on the three vB4 forums I administer with this mod installed.

Quote:

On the Register overlay, the term "(checkbox) I agree to" should also have added " all Terms & Conditions"
Thanks, that will be added :o

Quote:

in the legacy postbit tooltip, I noticed that the tooltip pops up on the page, but lays under a posted google video. I rather keep the tooltip positioned where I have it, but is this a bug? or just the way it interacts with an embedded google video? You can see this if you make a post with lets say just an embedded google video in a post, using legacy postbit. I have my tooltip positioned just to the right of a users avatar.
I see what you mean. I have z-indexed that to 9999, but it still underlays the google video which I cannot explain. I will add that to my todo list
Quote:

Wishlist:

forumhome forumlist tooltip - would like the image in tooltip to be the forum statusicon image instead of the default.

found fix solution!!:

replace in :
forumhome_forumbit_level1_post
forumhome_forumbit_level2_post


find:
{vb:stylevar imgdir_statusicon}/users.png

replace with:
{vb:stylevar imgdir_statusicon}/{vb:raw forum.imageprefix}forum_{vb:raw forum.statusicon}-48.png
I, after testing out all the above items, wanted to try to add a register floater image on all pages, and link it to the login/register overlay. I am successful except for the fact the image links properly, but now the Login/Register link in the header no longer works. Is it not possible to have two instances of the login/register overlay on any given page?

I know you are busy, I look forward to your reply. Thanks.
Is it not possible to have two instances of the login/register overlay on any given page?=No. I ran into that problem before on another of my mod attempts. It's the way jQuery works. You CAN have two instances but only with different trigger and element designations (change the names) which would effectively defeat the object. You see they rel="" using the ID's of which only one is allowed on any page. If I was able to utilise the 'class="" then you could have as many on one page as you want.

p.s. if you understood that lot you are a better person that me :eek:

smirkley 12-15-2011 08:14 PM

Quote:

Originally Posted by smirkley (Post 2278087)
search result tooltip is positioned a couple of hundred pixels to the right further than the other tooltips, and when I adjust the css to move the threadbit tooltips toward the center, the search result tooltip moves even further to the right by the same amount. Would prefer to have all tooltips positioned the same referencing the css setting.

Solution found:


I didnt see the changes in the search result template editfor the new version - fixed!


All times are GMT. The time now is 07:40 PM.

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.02539 seconds
  • Memory Usage 2,063KB
  • 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
  • (3)bbcode_code_printable
  • (10)bbcode_php_printable
  • (27)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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