Hey all,
I’m interested in building a child theme from Enigma, as well. Just starting with WordPress theme developement, using this code in my engima child theme functions.php:
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
function enqueue_child_theme_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style') );
}
?>
I’ll be interested to see a resolution to this, as any changes I make to the child’s style.css aren’t showing up.
Lots of Love for everyone and thanks for the great theme xx