Home Forums WoodMart support forum I can't access the Slider Revolution Reply To: I can't access the Slider Revolution

#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 );