Home Forums Basel support forum Where is the Page Setting box for the Single Product Page? Reply To: Where is the Page Setting box for the Single Product Page?

#1193

Artem Temos
Keymaster

Hello,

Thank you for your report.

It seems to be some small bug in the theme. Please add the following code snippet to your child theme functions.php file. In the future we will try to find better solution for this situation


add_filter('basel_get_specific_options', 'basel_single_product_header');
function basel_single_product_header($rules) {
	if( is_singular('product') ) {
		$rules['header_color_scheme'] = array(
			'will-be' => 'dark',
			'if' => 'header-overlap',
			'in_array' => array(false)
		);
	}
	return $rules;
}

Kind Regards,
Xtemos