Issue with product tabs on product pages.
Not sure whats going on but we need to get it fixed pronto as looks very unprofessional.
Note we have the below code running in the child theme functions php file:
<?php
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( 'More Information' ); // Rename the description tab
$tabs['additional_information']['title'] = __( 'Dimensions and Care' ); // Rename the additional information tab
return $tabs;
}
Many thanks,
Chris
Attachments:
You must be
logged in to view attached files.