Hi,
Ever since I upgraded to the new WordPress, the feature "Show Sliding Image Gallery" doesn't work, which I loved as a feature.
Is there something I can do about this?
Thanks!
Denzel Chia answers:
Hi,
Put this add the beginning of your functions.php, after <?php
function autofocus_init_script() {
if (!is_admin()) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
}
add_action('init', 'autofocus_init_script');
Thanks.
janegr comments:
Problem fixed! Thanks!
Denzel Chia comments:
Hi,
Glad to hear that!
Since its fixed, can you please award me the price money?
Thanks.
Denzel
Denzel Chia comments:
Hi janegr,
This is the FAQ page on how to assign price money.
http://wpquestions.com/page/static/name/HowToAssignPrizeMoney
Thanks!
Denzel
Oleg Butuzov answers:
can you provide URL?
janegr comments:
http://www.janegittingsrobert.com/
Oleg Butuzov comments:
add this to your functions php and lets see how it helps.
if (!is_admin()){
wp_enqueue_script('jqueryjs', 'http://code.jquery.com/jquery-1.4.2.min.js', array(), false, true );
}
Oleg Butuzov comments:
if (!is_admin()){
wp_enqueue_script('jquery', 'http://code.jquery.com/jquery-1.4.2.min.js', array(), false, true );
}
fixed. sorry.