Home › Forums › WoodMart support forum › Header and text colour in product page › Reply To: Header and text colour in product page
December 13, 2017 at 10:28 am
#28688
Artem Temos
Keymaster
Hello,
We are glad to know that you considered using WoodMart for your web-site. I hope you will be happy with it.
Try to add the following code snippet to the functions.php file in the child theme
function woodmart_custom_header_styles( $rules ){
if( is_product() ) {
$rules['header_color_scheme'] = array(
'will-be' => 'light',
);
$rules['menu_color_scheme'] = array(
'will-be' => 'light',
);
}
return $rules;
}
add_filter( 'woodmart_get_specific_options', 'woodmart_custom_header_styles' );
Kind Regards
Xtemos