Reply To: Epik Doesn't Work With New WordPress

Homepage Community Forums Epik Theme Support Epik Doesn't Work With New WordPress Reply To: Epik Doesn't Work With New WordPress

#22976
wisefamily
Customer

    Someone helped me find the issue.

    For some reason this code was breaking the themes ability to edit and create posts.

    Once I removed it everything worked.

    I originally had it in there to comply with all that GTMetrix stuff.

    add_action(‘customize_register’, ‘customizer’);
    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 );