Home Forums WoodMart support forum Header and text colour in product page Reply To: Header and text colour in product page

#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