all of a sudden; the numbers of the different images are gone - and it doesn't slide anymore. drama.
I have minor knowledge in this field and am relativly new to WP ...
www.servion.net
thanks
Sébastien | French WordpressDesigner answers:
at first you can try this
add this code in your functions.php, at the top of the file, just after <?php
function sebastien_reinitjquery() {
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', 'sebastien_reinitjquery');
EDIT : Denzel, i work with daniel about his site. He bought your function (here) and he sent me yesterday an email within this code . Now i paste this code here. What's the problem ?
I was thinking that's more honest to not change the code but if you want, i can, no problem.
I have rename the function...
Denzel Chia answers:
Hi hans,
That's a wholesale copy of my answer in a previous question.
http://wpquestions.com/question/show/id/1708
Mr Sebastien, can you please at least change the function name?
Thanks.
Denzel