I need to ad characteristics, video and some other content in tabs below the products main image and description.
How?
Thanks.
Hey peterolle,
Thank you for the inquiry.
You can use WooCommerce hooks to insert additional content to the single product page. For a reference regarding the available hooks, you can check the /wp-content/plugins/woocommerce/templates/content-single-product.php file.
To insert content after the product tabs, you can try the woocommerce_after_single_product_summary hook. Set the priority to 10 or 15.
Example:
add_action('woocommerce_after_single_product_summary', function() {
echo "something";
, 15);
Best regards,
Ismael