Built in theme customizer not working in Storefront child theme.
-
I followed James Koster’s instructions for setting up a Storefront child theme so that the custom stylesheet loads after the woocommerce.css stylesheet:
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 30); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/custom.css', array('parent-style') ); }
Now any changes made using the built-in theme customizer (Appearance/Customize) are ignored. How do I re-enable the theme customizer for other users?
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Built in theme customizer not working in Storefront child theme.’ is closed to new replies.