Tagged: additional information
I noticed in woocommerce single product pages – the tab has term ‘additional information‘ – and the it is reiterated as an h2 in the panel : – is this a setting that can be changed? – just a tweak – seems redundant (mentioned twice) right now – might be in the woocommerce core ?? – using ENFOLD theme – thanks in advance….
-john w-
Hey jsw_nz!
Thank you for using the theme!
You can remove the Additional Information or change it to something else by adding this on functions.php:
add_filter( 'woocommerce_product_additional_information_heading', 'woocommerce_change_product_additional_information_heading');
function woocommerce_change_product_additional_information_heading($heading) {
$heading = __( 'CHANGE THE STRING HERE OR LEAVE THIS BLANK', 'woocommerce' );
return $heading;
}
I hope that helps.
Regards,
Ismael