Child theme is not rendering parent and own javascripts (but css loaded properly, js not)
The function get_template_directory_uri always returns the directory of the PARENT THEME, even if in a child theme, while the function get_stylesheet_directory_uri() returns the directory of your child theme. I guess that your scripts are enqueued in the parent theme using the “get_stylesheet_directory_uri” method, meaning the javascript won’t be found in the child theme. I would … Read more