Trying to Load jQuery
When enqueuing a script from a child theme, you have to use get_stylesheet_directory_uri rather than get_template_directory_uri(). The template directory is the parent theme, and the stylesheet directory is the one shared by the directory the active stylesheet is using. In your functions.php file, the enqueuing would be: function avtheme_scripts() { wp_enqueue_script( ‘av-about-fade’, get_stylesheet_directory_uri() . ‘/js/about-fade.js’, … Read more