This is the site site link which uses child theme. Notice blue colors instead of green which i choose.
skipcheru – I do not see anything blue on that page. However, the font-awesome icons are not loading. See this screenshot for help http://prntscr.com/cn1ltu
sorry i used theme, here is the screen shot.Screen shot and also another screenshot2
-
This reply was modified 9 years, 8 months ago by
skipcheru.
-
This reply was modified 9 years, 8 months ago by
skipcheru.
skipcheru – Please give me till the end of the day to set up a child theme to test this.
Sure i will appreciate. Thanks
skipcheru, I found a bug! 🙂 We’ll be updating Vega to allow for Child Themes to correctly load the color scheme. Please give us till the end of the week to push the update. Sorry for the inconvenience this may have caused you!
Please do because it’s a really nice theme and i wanna use it on my site.
The theme has been updated. Your child theme should now be loading the color scheme correctly. Let me know if you have any questions.
Hey Lyra thanks for the update and reply. I have tested it and i found another bug. I think the css is not loaded well for each component. Compare these screenshots of parent and child theme. eg parent theme form vs child theme form . Also this parent button and font vs child button and font .
-
This reply was modified 9 years, 8 months ago by
skipcheru. Reason: wrong url
This isn’t really a bug but rather the way dependencies are loaded. Please make sure you load the parent and child stylesheets like follows:
add_action( 'wp_enqueue_scripts', 'vega_child_enqueue_styles' );
function vega_child_enqueue_styles() {
$parent_style = 'vega-wp-style';
$deps = array('bootstrap', 'font-awesome', 'bootstrap-social');
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' , $deps);
wp_enqueue_style( 'vega-wp-style-child',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}