Applies to Bliss v1.0


There was some superfluous code left inside functions.php of Bliss V1.0 so if your theme is looking for custom.js, please open functions.php within then child theme and remove the following code:



function theme_js() {
    wp_enqueue_script( 'theme_js', get_stylesheet_directory_uri() . '/js/custom.js', array( 'jquery' ), '3.0.64', true );
}

add_action('wp_enqueue_scripts', 'theme_js');