Support Forum
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/
Visit Cruise Talk Central and Mr Papa's World
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...
Visit Cruise Talk Central and Mr Papa's World
no... replace that line of code with
wp_enqueue_script('jquery');
to tell wp to loads its own version...
Visit Cruise Talk Central and Mr Papa's World
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...
Visit Cruise Talk Central and Mr Papa's World
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');
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...
Visit Cruise Talk Central and Mr Papa's World
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...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)