Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #586449

    Hi,

    See the performance report here for our enfold website from server in India: https://gtmetrix.com/reports/isha.sadhguru.org/iUGErG3T
    Can you suggest some improvement suggestions please. Considering top most topics in the report.

    1) Can we use BWP Minify, if so what are the js/css that need to be excluded
    2) How do we reduce the redirects that happen on the theme files
    3) Is there a simple way to remove query strings

    Regards,
    Subba

    #587220

    Hey ishafoundation!

    Yes, you can use it but please make sure to disable it while you are making styling changes, then flush cache and enable it
    Please add following code to Functions.php file in Appearance > Editor

    add_filter( 'style_loader_src', 'avia_remove_version' );
    add_filter( 'script_loader_src', 'avia_remove_version' );
    
    function avia_remove_version( $url )
    {
        return remove_query_arg( 'ver', $url );
    }

    Regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.