Home › Forums › WoodMart support forum › I can't access the Slider Revolution › Reply To: I can't access the Slider Revolution
November 13, 2020 at 1:09 pm
#241308
ourfocnetwork
Participant
We already fixed the issue by removing this code below from functions.php
`
/**
* ————————————————————————————————
* Defer Parsing of JavaScript
* ————————————————————————————————
*/
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 );