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)

ramil86 08-11-2011 02:56 PM

You're so good my friend, thank you so much.I wish your mod would be the mod of the month with your new great upgrades. Can't way to see the new perfect version of this mod. Good luck

AttalaEA 08-12-2011 02:06 AM

Dear gothicuser,

Thank you so much for this great mod, everything works fine except the logout button when i click on it the browser redirects to http://www.mywebsite.com/# and no popup shows up and stay logged in. [vBulletin 4.1.5 PL1][Note: I have set my homepage as Forums instead of the CMS]
I noticed that I can logout only while I am at my profile page only

Also I have a fixed width style, and when I resize the browser window to a smaller size the popup windows of registeration/login remains still at its place, why it doesn't move always centered with the website?

Also in IE9 the popup window always floats in the extreme left of the browser window not centered.

Finally how to add secuirty question to the registeration popup window?

Any help will be appreciated.

Thank You

gothicuser 08-12-2011 04:36 AM

Hi
For the first problem, I have to ask a question. Do you have lots of mods installed?
If yes then to fix the problem you will need to go to your AdminCP/Plugins & Products/Plugin Manager and open 'jQt Suite Parse the Logout Template'
Change the execution order from '20' to maybe '60' or higher. That should get the logout button working again.

The positioning of the popup is defined in the main script library. I don't have access to IE9 so would be grateful for a screenshot please.

Quote:

Originally Posted by AttalaEA (Post 2232501)
everything works fine except the logout button when i click on it the browser redirects to http://www.mywebsite.com/# and no popup shows up and stay logged in. [vBulletin 4.1.5 PL1][Note: I have set my homepage as Forums instead of the CMS]
I noticed that I can logout only while I am at my profile page only

Also I have a fixed width style, and when I resize the browser window to a smaller size the popup windows of registeration/login remains still at its place, why it doesn't move always centered with the website?

Also in IE9 the popup window always floats in the extreme left of the browser window not centered.

Finally how to add secuirty question to the registeration popup window?

Any help will be appreciated.

Thank You


AttalaEA 08-12-2011 11:36 AM

1 Attachment(s)
Hi,

I do not have lots of mods installed, and I have changed it gradulaly til I have reach 120 in the execution order of 'jQt Suite Parse the Logout Template' but still doesn't work.

Also for IE9 When I click on Logout it redirects me to the content CMS page (note I have changed homepage to forum) and I have attached also an image for the alignment issue.

I can PM you with AdminCP login to check it out if you don't mind.
Thanks

Attachment 131888

gothicuser 08-12-2011 12:17 PM

This one confuses me.
I will have to investigate to see if changing the home page could make a difference, though off the top of my head I can't see how as the link I use to logout is lifted directly from the vB logout code, I made no alterations. Though the security I added could well have a bearing. I'll get back to you on that one as soon as I can.

As regards to the IE9 alignment, I will see what I can do. I know that sounds feeble, but I have never used IE9 and have no idea what is compatible.
e.g. I use 'margin:auto;' to centralise the popup, but does IE9 recognise that definition??

Quote:

Originally Posted by AttalaEA (Post 2232600)
Hi,

I do not have lots of mods installed, and I have changed it gradulaly til I have reach 120 in the execution order of 'jQt Suite Parse the Logout Template' but still doesn't work.

Also for IE9 When I click on Logout it redirects me to the content CMS page (note I have changed homepage to forum) and I have attached also an image for the alignment issue.


Thanks

Attachment 131888


AttalaEA 08-12-2011 12:22 PM

Quote:

Originally Posted by gothicuser (Post 2232611)
This one confuses me.
I will have to investigate to see if changing the home page could make a difference, though off the top of my head I can't see how as the link I use to logout is lifted directly from the vB logout code, I made no alterations. Though the security I added could well have a bearing. I'll get back to you on that one as soon as I can.

As regards to the IE9 alignment, I will see what I can do. I know that sounds feeble, but I have never used IE9 and have no idea what is compatible.
e.g. I use 'margin:auto;' to centralise the popup, but does IE9 recognise that definition??

Yes It does recognize 'the margin:auto;' but do you need My AdminCP login to invetigate?

Thanks for your kind help, appreciated

ramil86 08-12-2011 01:01 PM

Quote:

Originally Posted by gothicuser (Post 2232241)
I will install this other mod on my test devbox and see if I can find a way to make them play nicely together.
You may have to wait until Saturday though.

Hi. I finally managed to prevent the conflict between multiple jquery plugins.
Here's what i did:

The original code of my other mod with jquery:

PHP Code:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<
script src="js/jquery.ticker.js" type="text/javascript"></script>
<
script type="text/javascript" src="{vb:raw vboptions.bburl}/external.php?&type=js"></script>
<
script type="text/javascript">
    $(function () {
        $(
'#js-news').ticker();
    });
</
script>

3Open additional.css template

4
At the end of the template ADD the following code:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* StatorLatest Threads Ticker  */
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#ticker-wrapper * {
        
margin-leftauto;
        
margin-rightauto;





I just added
PHP Code:

var $j jQuery.noConflict(); 

code to my script and used
PHP Code:

$j 

instead of
PHP Code:

$ = 

the final code to prevent conflicts

PHP Code:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<
script src="js/jquery.ticker.js" type="text/javascript"></script>
<
script type="text/javascript" src="{vb:raw vboptions.bburl}/external.php?&type=js"></script>
<
script type="text/javascript">
var 
$j jQuery.noConflict();
    
$j(function () {
        
$j('#js-news').ticker();
    });
</
script


ramil86 08-12-2011 01:03 PM

Quote:

Originally Posted by ramil86 (Post 2232212)
Great, thanks a lot dear gothicuser . Looking forward to hearing from you

Will u include facebook connect button in your future release? Or could you please show us how to include fconnect function to your mod. Thank you

gothicuser 08-12-2011 04:16 PM

Quote:

Originally Posted by ramil86 (Post 2232618)
Hi. I finally managed to prevent the conflict between multiple jquery plugins.

Thank you very much for sharing this, very useful indeed.

gothicuser 08-12-2011 07:14 PM

Quote:

Originally Posted by AttalaEA (Post 2232501)
Finally how to add secuirty question to the registeration popup window?

I have set it up to work with all three Human Verification methods, (Image, Recaptcha and Question/answer) and it is working for me in a fresh install of vB.
When I look into your AdminCP I'll see if there's a problem friend.


All times are GMT. The time now is 01:22 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.01284 seconds
  • Memory Usage 1,769KB
  • 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
  • (5)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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