Add custom text below the product name
-
Hi
How to add custom text below the product name on the product page?
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following PHP code snippet to the child theme functions.php file to do this
function woodmart_text_under_title(){
echo '<p>Custom text under product title.</p>';
}
add_action( 'woocommerce_single_product_summary', 'woodmart_text_under_title', 7 );
Regards
To add this code, the site will be disabled.
Also want to any product, text different be.
Sorry, but it will require more extra code customization that is out of our theme support scope.
The topic ‘Add custom text below the product name’ is closed to new replies.