• hello guys i was using w3tc but it caused some problems with Feedburner, so i juxt recently uninstalled it, is their any other option to speed up wordpress site, i’m using setra theme
    my site: https://www.droidopedia.com
    and i have installed some plugins:
    Adsense Made Easy – Best Simple Ad Inserter
    All In One SEO Pack
    Easy Watermark
    External Links
    Feedburner Optin Form
    Google AdSense
    Google Analytics Dashboard for WP
    Jetpack by WordPress.com
    Limit Login Attempts
    Page Links To
    SEO Friendly Images
    WP Smush
    WP-PageNavi

    used
    P3 (Plugin Performance Profiler)
    and jetpack is slowing down… i can’t uninstall it…
    any salution?

    and alexa says my site is very slow around 9.7s loadtime..

Viewing 9 replies - 1 through 9 (of 9 total)
  • Gulshan Kumar

    (@thegulshankumar)

    Hello droidopedia,
    I have written a complete tutorial on speed optimization, consider following this best practices. https://www.gulshankumar.net/wordpress-speed-optimization-tips/

    I’m damn sure, this will be helpful for you.

    I’d use WP-Super-Cache if I were you, I really like that cache plugin. Further make sure your PHP settings are optimized (realpath_cache_size, opcache), you use at least PHP 5.6, but preferably 7.0, and that MySQL is optimized (InnoDB in MySQL >= 5.5).

    See https://www.saotn.org/mysql-55-innodb-performance-improvement/, https://www.saotn.org/optimize-php-opcache-configuration/ and https://www.saotn.org/optimize-php-performance-check-set-php-realpath_cache_size/ for more information. Also https://www.saotn.org/wordpress-wp-options-table-autoload-micro-optimization/ can make a really huge difference.

    Further I see you use multiple plugins with nearly the same functionality (Adsense Made Easy & Google AdSense). Don’t use two, or more, plugins offering the same functionality. Choose one and lose the other.

    When I browse your site in Google Chrome, and have the webmaster tools enabled (F12), I see the DOMContentLoaded is approx. 1,35 seconds, and the overall load takes 3,2 seconds. Looks like your Google ads aren’t loaded with defer or async, and the Facebook like box takes quite some time to load the external resources.

    Thread Starter droidopedia

    (@droidopedia)

    @jan Reilink
    thnx for your reply bro .. i have installed wp-super-cache and as you told me about php or mysql tweaks so i don’t know how to modify them… any plugin or any other easy way to do so? and i have uninstalled (adsense made easy) and and how do i defer or async google ads??? 1 more thing is their anyother facebook like box?

    @gulshan Kumar
    thnx to you too boss… your article is well written but you said remove query strings with a code but code doesn’t work..

    Hi @droidopedia, your site already feels much faster now with WPSC enabled!

    To remove query strings and version numbers from static resources, use the following code in your theme’s functions.php:

    function saotn_removeQueryStrings( $src ) {
        if( strpos( $src, '?ver=' ) )
            $src = remove_query_arg( 'ver', $src );
        return $src;
    }
    add_filter( 'style_loader_src', 'saotn_removeQueryStrings', 10, 2 );
    add_filter( 'script_loader_src', 'saotn_removeQueryStrings', 10, 2 );

    As for the Facebook like-box, try to find the javascript somewhere in your theme. It looks like:

    <script>(function(d, s, id) {
                  var js, fjs = d.getElementsByTagName(s)[0];
                  if (d.getElementById(id)) {return;}
                  js = d.createElement(s); js.id = id;
                  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
                  fjs.parentNode.insertBefore(js, fjs);
                }(document, 'script', 'facebook-jssdk'));</script>

    Now, before js.src =, add: js.async=true;. That’ll make the Facebook like box load asynchronously. Try to do the same for Twitter:

    <script
      src="https://platform.twitter.com/widgets.js"
      type="text/javascript">
    </script>

    needs to have a defer or async:

    <script
      src="https://platform.twitter.com/widgets.js"
      type="text/javascript" defer>
    </script>

    The Google AdSense plugin should do its job good, but haven’t looked into it.

    After making changes to files, clear your WPSC cache ??

    Thread Starter droidopedia

    (@droidopedia)

    thnx bro but as you can see it still shows up the version.

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    <script type="text/javascript" src="https://www.droidopedia.com/wp-includes/js/wp-embed.min.js?ver=4.4.2"></script>

    ??

    I think you’re looking at your browser cache, because I don’t see the ?ver=:

    <script type='text/javascript' src='https://www.droidopedia.com/wp-includes/js/wp-embed.min.js'></script>

    Clear your browser cache and do a hard refresh, that should fix that ??

    Thread Starter droidopedia

    (@droidopedia)

    these tweaks are not working like w3tc did for me.. any salution to figure feeburner with w3tc?

    Thread Starter droidopedia

    (@droidopedia)

    gtmetrix reports?
    PageSpeed Score
    B (84%)
    YSlow Score
    D (66%)
    Page Details
    Page Load Time
    4.3s
    Total Page Size
    1.35MB
    Requests
    100
    with w3tc it was A (92%) and yslow B (89%)

    Thread Starter droidopedia

    (@droidopedia)

    thnkyuw so much it really removed ver queries .. and now any salution for finding facebook like box ? and do i have to use w3tc to speed up?
    1 more thing howz theme Sahifa do i upgrade to that?

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘How To Speed Up WordPress…??’ is closed to new replies.