I was using something like this:
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css',
array('parent-style'));
}
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 30);
And I was getting the same problem. I have been using that technique for creating child themes for other themes. But GP makes this a lot easier. The more I use this theme, the more I want to make it my only parent theme ever. Thank you.