This topic has 2 replies, 2 voices, and was last updated 6 years, 4 months ago ago by Rose Tyler
Hello,
Where can I set the first tab to be open by default in product desciption? I can not see the option in the theme settings. Where can I change the position of the size information? I would like it to be in the description tab. I attach a screenshot in private content. Thank you.
Regards,
Kamil
Hello,
“Close first tab by default” you can find in Theme Options > E-commerce > Single product page.
The position of Size guide can be changed only via additional customization. Copy description.php file (xstore/woocommerce/single-product/tabs) into same folder in your child theme and add etheme_size_guide();
http://prntscr.com/k7i59e
then add this code in child-theme/functions.php
add_action('wp', 'customize_template_hooks', 65);
function customize_template_hooks () {
remove_action( 'woocommerce_single_product_summary', 'etheme_size_guide', 21 );
}
Regards
You must be logged in to reply to this topic.Log in/Sign up