Quantcast
Channel: XTemos » All Posts
Viewing all articles
Browse latest Browse all 38952

Reply To: Where is the Page Setting box for the Single Product Page?

$
0
0

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


Viewing all articles
Browse latest Browse all 38952

Trending Articles