Forums
Home / Plugin: WooCommerce / Content after woocommerce
(@carlos-jaramillo)
7 years, 4 months ago
Hi,
Is there a way to add a division after woocommerce content?
Thanks
(@lorro)
This can be achieved with a hook:
add_action( 'woocommerce_after_main_content', 'add_my_text', 20 ); function add_my_text() { print '<p>This is my extra text.</p>'; }
The snippet goes in functions.php for your child theme if you have one, otherwise yuou can use the “My Custom Functions” plugin.
Thanks, I ‘ll add it to my functions