I click the
Close First Tab By Default
Turn on if you want to keep the first tab closed.
It does not work.
I have the following snippet to change the tab names. I post it in case that is causing issues.
/**
* Rename product data tabs
*/
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( 'Images' ); // Rename the description tab
$tabs['reviews']['title'] = __( 'Reviews' ); // Rename the reviews tab
$tabs['additional_information']['title'] = __( 'Product Information' ); // Rename the additional information tab
return $tabs;
}
ALSO
The Large Newsletter popup continues to popup continually while browsing. How can that be stopped after you sign up or click to close? OR just once per visit.
Thanks for your help!
Dan