Where is the Page Setting box for the Single Product Page?
-
I set the header text color and the text color for heading to light (= white) for my Shop page because it looked well with the image I had used for the Shop heading (http://postimg.org/image/ke5j0vtpn/) but now the problem I have is that when I go to a page for a single product I can’t see the text color of the header because by default the header color background is white too (http://postimg.org/image/cvwhmhezv/). Where can I go to change either the header color background or the text color of the header of a single product page? I would very much appreciate if someone could help me.
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
It works! Good enough. Thanks again 🙂
You are welcome, write us when you have any difficulties or issues with our theme.
And we would be glad if you will rate our theme with 5 stars on themeforest in case you are satisfied with our theme and customer service http://themeforest.net/downloads
Thank you in advance 🙂
The topic ‘Where is the Page Setting box for the Single Product Page?’ is closed to new replies.