• Resolved sumicool7

    (@sumicool7)


    I followed TM3909 advice from one of the posts to disable all the plugins and check them one by one and found out that W3 Total Cache Plugin is causing some kind of problem. It works when I disable the option to minify the JS but it effects the speed of the site.

    Any work around solution for this problem?

    http://wordpress.org/extend/plugins/wpsocialite/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Tom Morton

    (@tm3909)

    Can you link me to the site you’re having an issue on? It would be easier if I could see your specific errors.

    [Edit]: I just activated W3 total cache with all of the minify settings maxed out on my dev system and I’m seeing the plugin work fine.

    Thread Starter sumicool7

    (@sumicool7)

    Sorry for the late response! I am at the moment busy with my university exams and stuff.

    here is my website
    http://www.sumithsuresh.com/

    Plugin Author Tom Morton

    (@tm3909)

    It looks like you are loading jQuery 1.6.2 from Google rather than the latest version. Can you please change this to allow WordPress to load it, or better yet update your wp_enqueue_script call to reflect the latest version?

    Thread Starter sumicool7

    (@sumicool7)

    I added <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js”></script&gt; below the wp_head() function but still it doesn’t work.

    Can you guide me on how to update the wp_enqueue_script to reflect the latest version?

    Plugin Author Tom Morton

    (@tm3909)

    Apologies for the delay, caught up with a large project.

    In your functions.php you can use the wp_enqueue_script() to call jquery.

    For example:

    if( !is_admin()){
      wp_deregister_script('jquery');
      wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js', false, '1.3.2');
     wp_enqueue_script('jquery');
    }
    Plugin Author Tom Morton

    (@tm3909)

    I’m marking this resolved. Feel free to open it back if you are still experiencing issues.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Conflict With W3 Total Cache Plugin.’ is closed to new replies.