Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1440798

    I need to ad characteristics, video and some other content in tabs below the products main image and description.

    How?

    Thanks.

    #1440884

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.