Home › Forums › WoodMart support forum › WPbakery plugin update error › Reply To: WPbakery plugin update error
April 30, 2020 at 10:34 am
#191194
[email protected]
Participant
Please recheck now.
I had initially added code in function.php to defer loading of javascripts. The code worked for me as site speed become a little less slow after adding the code. see the code below;
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) return $url;
if ( strpos( $url, 'jquery.js' ) ) return $url;
return "$url' defer ";
}
add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
I have removed it now. Please recheck.