Archived topic
New section on product page
1 reply · Started by Pedro on March 7, 2019
Hello! I would like to add a section in the WooCommerce product pages.
There I would place items to give clients confidence, something like this site does:
https://www.dropbox.com/s/77zik22905bt6qa/wootheme.png?dl=0
How could I do it?
Thank you!
Hi there,
You should be able to use the woocommerce_after_single_product_summary hook which is included in our Hooks Elements module.
Give the content a class like:
<div class="woo_after_summary_content">some content</div>
Set the priority to 1, then this CSS should position it between the product image and product tabs:
.woo_after_summary_content {
clear: both;
}
Hope this helps!