Home › Forums › Basel support forum › double menu header › Reply To: double menu header
October 19, 2017 at 6:25 am
#22055
Artem Temos
Keymaster
Hello,
We are glad to know that you considered using Basel for your web-site. I hope you will be happy with it.
Unfortunately, there is no such option for our product pages. You can do this globally for all products by adding the following code snippet to the functions.php file in the child theme
function basel_poduct_header() {
global $basel_options;
if ( is_product() ) $basel_options['header'] = 'split';
}
add_action( 'wp', 'basel_poduct_header', 100 );
Kind Regards
Xtemos