[ad_1]
Hi,
On a development site using a child theme, if I comment out the following code in the child theme’s functions.php, the navigation menus work fine:
function foracure_child_styles() {
wp_enqueue_style('child-styles', get_stylesheet_directory_uri() . '/core/css/style.css', array(), false, false);
}
add_action( 'wp_enqueue_scripts', 'foracure_child_styles' );
If I un-comment out the code, so the code is active, the drop-down menus don’t work. Everything else works fine on the site, and there are no console errors.
Is there anything wrong with the code above?
The page I need help with: [log in to see the link]