Hello,
It’s maybe an issue with my child theme but I see that there is one stylesheet (id geodirf-custom-stylesheet-css) loaded after my child theme CSS file. Is that the expected behavior?
Below the different css loaded on my page (I’m working on local environment):
<link rel='stylesheet' id='redux-google-fonts-gdf-css' href='http://fonts.googleapis.com/css?family=Finger+Paint%3A400%7CKelly+Slab%3A400%7CRuda%3A700&subset=latin&ver=1455443428' type='text/css' media='all' />
<link rel='stylesheet' id='geodirf-stylesheet-css' href='http://localhost:8888/flying/wp-content/themes/fruitful-child/style.css?ver=1.2.5' type='text/css' media='all' />
<link rel='stylesheet' id='geodirf-custom-stylesheet-css' href='http://localhost:8888/flying/wp-content/themes/GeoDirectory_framework/admin/style.css?ver=1455443428' type='text/css' media='all' />
The code under under my function.php of the child theme:
// Load parent theme style
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles',10,1);
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
Thanks, Flying