Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
Login Button
Avatar
GG
Member
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 3:50 pm

When you click on the login button the windows drops down but the form does not show.  Look at upload image.

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 4:52 pm

Impossible to tell without more info such as a link to your site... but more than likely will be this: http://codex.simple-press.com/.....-conflict/

Avatar
GG
Member
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 6:07 pm
Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 6:23 pm

so yeah, just like in the link I gave you to the codex... your theme (or could be plugin) is doing bad things...  its loading a very, very old version of jquery directly

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?ver=1.4.2'></script>

rather than loading the jquery that comes with wp...  so there will be all sorts of conflicts likely with that very old version of jquery...  as a reference, wp comes with jquery 1.7.2...

so you need to find where in your wp theme its incorrectly loading that old jquery and then we can help you correct it...

Avatar
GG
Member
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 6:37 pm

It's in the theme file.  Do I simply just replace the numbers to 1.7.2...?

 

wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"), false, '1.4.2')

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 6:39 pm

no...  replace that line of code with

wp_enqueue_script('jquery');

to tell wp to loads its own version...

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 6:41 pm

oh wait... is there more code after your line?  like what I said to do?

If so, just comment out that register...  but also check for a wp_deregister_script() before it...

bottom line, dont deregister the wp jquery, dont register a bogus jquery and then enqueue the wp version...

Avatar
GG
Member
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 6:53 pm

Sorry, I'm really trying to follow.  I don't know what I'm doing.

I comment out both and got the same result.  Comment just one and the button stops working.  

This is what I did..

//load scripts
if( !is_admin()){
global $wdp_options;
foreach ($wdp_options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
}
// wp_deregister_script('jquery');
// wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"), false, '1.4.2');
wp_enqueue_script('jquery');
wp_enqueue_script('cufon', get_bloginfo('template_url') . '/js/cufon-yui.js');
wp_enqueue_script('museo', get_bloginfo('template_url') . '/js/Museo_100_250-Museo_500_400.font.js');
wp_enqueue_script('cycle', get_bloginfo('template_url') . '/js/jquery.cycle.all.latest.js');
wp_enqueue_script('nivo', get_bloginfo('template_url') . '/js/jquery.nivo.slider.pack.js');
wp_enqueue_script('elastic', get_bloginfo('template_url') . '/js/jquery.elastic.js');
wp_enqueue_script('scrollto', get_bloginfo('template_url') . '/js/jquery.scrollTo-1.4.2-min.js');

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 7:09 pm

so yes, thats correct... the jquery issue is resolved... and the login button now slides the form open...

but it appears perhaps that you have some other login plugin or theme trying to do its own login thing?  is that true?  something has turned off (hidden) all the input form elements...

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jun 9, 2012 - 7:15 pm

additionally, perhaps try disabling the google translate thing too... its throwing an error too...  perhaps that is the interference...

just trying to narrow it down...

Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 620
Members: 17365
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10128
Posts: 79626