Forums
Forums / Plugin: WooCommerce / ITEMS ON THE PRODUCT PAGE
(@mirek128)
2 years, 10 months ago
Good morning,
I would like to add additional information on the product page (icon with tekst).
Under the add to cart button.
Similar to the attached photo
How can i add it?
Thank you for all the replies:)
Photo:
https://prnt.sc/FgEoG_ptOkWU
https://prnt.sc/cPCnFt3GYinA
The page I need help with: [log in to see the link]
(@babylon1999)
Hello @mirek128,You can use the woocommerce_after_add_to_cart_button hook. :) For example:
woocommerce_after_add_to_cart_button
function add_test_text_after_add_to_cart_button() { echo '<p>Hi, I\'m a test.</p>'; } add_action( 'woocommerce_after_add_to_cart_button', 'add_test_text_after_add_to_cart_button' );
Link to image: https://d.pr/i/4MDsKk
You can find a visual representation of the single product page hooks at https://www.businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/#actions.If you require the assistance of a developer, consider hiring a WooExpert.Cheers!
The topic ‘ITEMS ON THE PRODUCT PAGE’ is closed to new replies.