I'm using the WooShop theme on http://eventdepotnj.com and creating a child theme for it.
I made a new directory /wooshop-child with this style.css:
/*
Theme Name: WooShop Child
Description: Child theme for WooShop
Author: Blue Star Multimedia
Template: wooshop
*/
and I added a functions.php file with this code:
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
However it is not working.
I uploaded my edited header.php and footer.php files to the child theme folder to override the regular theme, and that worked. But when I make any changes to the style.css file, it's not showing up on my child theme, it doesn't seem to be picking it up. Any ideas?