Is it possible to edit the default content in the “Additional Information” tab in my woocommerce shop? I know that it autopopulates the tab, but we have a lot of product attributes and I’d like to add a link like “Click here for more information on product attributes” either above or below the list of attributes.
Hi There,
Please add the following code under functions.php
file locates in your child theme:
add_action( 'woocommerce_product_additional_information', 'print_custom_html' );
function print_custom_html(){
?>
<a href="#">Click here for more information on product attributes</a>
<?php
}
Thanks much!
You’re welcome.