Title: Plugin doesnt work
Last modified: August 21, 2016

---

# Plugin doesnt work

 *  Resolved [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/)
 * Hi, the plugin is activated on my website but is not working. I have the same
   problem on 2 websites : [http://freshhome.ro](http://freshhome.ro) and [http://travelica.ro](http://travelica.ro).
   Please help
 * [https://wordpress.org/plugins/q2w3-fixed-widget/](https://wordpress.org/plugins/q2w3-fixed-widget/)

Viewing 13 replies - 1 through 13 (of 13 total)

 *  Plugin Contributor [Max Bond](https://wordpress.org/support/users/max-bond/)
 * (@max-bond)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572301)
 * Hi!
    You have outdated jQuery on both sites!
 * [http://freshhome.ro](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](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)
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572325)
 * i done that on freshhome.ro, still not working.
 * on travelica.. i have wp 3.8.1 , how can i update jquery ?
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572327)
 * ok its working on freshhome now 🙂
 * i dont know how to update the jquery for travelica.ro ..
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572333)
 * 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](http://codex.wordpress.org/Forum_Welcome#No_Bumping),
   thank you.]_
 *  Plugin Contributor [Max Bond](https://wordpress.org/support/users/max-bond/)
 * (@max-bond)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572436)
 * 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.
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572443)
 * 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](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’);
 *  Plugin Contributor [Max Bond](https://wordpress.org/support/users/max-bond/)
 * (@max-bond)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572448)
 * 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');
       ```
   
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572451)
 * It’s working ! Thanks a lot !
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572607)
 * 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 ..
 *  Plugin Contributor [Max Bond](https://wordpress.org/support/users/max-bond/)
 * (@max-bond)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572611)
 * 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.
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572612)
 * yes i think the problem was from minify. there are still a lor of errors ?
 *  Plugin Contributor [Max Bond](https://wordpress.org/support/users/max-bond/)
 * (@max-bond)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572613)
 * No javascript errors!
    I see the widget is working now!
 *  Thread Starter [mr.achim](https://wordpress.org/support/users/mrachim/)
 * (@mrachim)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572614)
 * thank you 007 ! 🙂

Viewing 13 replies - 1 through 13 (of 13 total)

The topic ‘Plugin doesnt work’ is closed to new replies.

 * ![](https://ps.w.org/q2w3-fixed-widget/assets/icon-256x256.png?rev=2384479)
 * [Fixed Widget and Sticky Elements for WordPress](https://wordpress.org/plugins/q2w3-fixed-widget/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/q2w3-fixed-widget/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/q2w3-fixed-widget/)
 * [Active Topics](https://wordpress.org/support/plugin/q2w3-fixed-widget/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/q2w3-fixed-widget/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/q2w3-fixed-widget/reviews/)

 * 13 replies
 * 2 participants
 * Last reply from: [mr.achim](https://wordpress.org/support/users/mrachim/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/plugin-doesnt-work-42/#post-4572614)
 * Status: resolved