Wow, just noticed something the theme is doing very oddly. Loading the bootstrap file using the wrong function. ??
It should be using get_template_directory_uri()
not get_stylesheet_directory_uri()
but this will hopefully be fixed in a later version… ( hoping the theme’s author will notice that )
For the time being you can do something like:
add_action( 'wp_enqueue_scripts', 'zen_child_css' );
function zen_child_css() {
wp_enqueue_style( 'parent', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'bootstrap-css', get_template_directory_uri() . '/css/bootstrap.min.css' );
wp_enqueue_style( 'child-css', get_stylesheet_uri() );
}
In order to enqueue everything in your child theme but I can tell you there may be an error loading a resource. The bootstrap-css
one because WordPress will try and look for a css
folder in your theme when loading that file and it won’t find it.
Hope that helps!