Plugin doesnt work
-
Hi, the plugin is activated on my website but is not working. I have the same problem on 2 websites : http://freshhome.ro and http://travelica.ro . Please help
-
Hi!
You have outdated jQuery on both sites!http://freshhome.ro
jQuery loaded two times. Source code line 8:
<script type='text/javascript' src='http://code.jquery.com/jquery-1.6.2.js'></script>
You need to remove this completely!http://travelica.ro
Source code line 43:
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js?ver=3.8.1'></script>
You need to update jQuery to version 1.10.2 (WordPress 3.8 standard)i done that on freshhome.ro, still not working.
on travelica.. i have wp 3.8.1 , how can i update jquery ?
ok its working on freshhome now π
i dont know how to update the jquery for travelica.ro ..
for freshhome.ro : something strange… the plugin its working only when i am loged on the website. if i logout its not working anymore. i have cleared the cache and no results
for travelica.ro : i instaled jquery updater and its not working
please help
[Moderator Note: No bumping, thank you.]
Hi!
for freshhome.ro : something strange… the plugin its working only when i am loged on the website
Check plugin settings page. Option “Enable plugin for logged in users only” must be disabled.
for travelica.ro : i instaled jquery updater and its not working
I see the site is still using jQuery 1.4.4.
jQuery Updater didn’t help? Well… in this case you have to manually disable jQuery load string. First search in theme function.php file for this string:
http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js
if found – comment this string. If you don’t know how to comment the string post the code here I’ll help.fresh is working, thanks !
@ travelica, i tryed with to comment like bellow and nothing :
function my_scripts_method() {
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ‘ /* http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js */ ‘);
wp_enqueue_script( ‘jquery’ );
}
add_action(‘wp_enqueue_scripts’, ‘my_scripts_method’);Here is the right way:
function my_scripts_method() { //wp_deregister_script( 'jquery' ); //wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'); wp_enqueue_script( 'jquery' ); } add_action('wp_enqueue_scripts', 'my_scripts_method');It’s working ! Thanks a lot !
i made an update to freshhome.ro wp theme, and i don’t know why the fixed widget it isn’t working anymore. can you please help me ? thanks ..
Hello!
I see a lot of javascript errors on your site.
The source of errors is WP Minify plugin! Disable it, then we can continue debuging.yes i think the problem was from minify. there are still a lor of errors ?
No javascript errors!
I see the widget is working now!thank you 007 ! π
The topic ‘Plugin doesnt work’ is closed to new replies.