I've been trying to load a javascript file and its not loading, looked up the docs but cant seem to figure out why it wont enqueue. Site is here : site
In the console im getting an error message for cookies, i have also disabled all plugins, recently switching the visual composer one back on but seems like jquery is not working even though i can load it fine.
Also im queueing like this right now:
function edealsdirect_scripts() {
wp_register_script( 'jquery-cookie', get_template_directory_uri() . '/vendor/js/js.cookie.js', array( 'jquery', '', false ) );
wp_enqueue_script( 'jquery-cookie' );
}
add_action( 'wp_enqueue_scripts', 'edealsdirect_scripts' );