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

    We are using woocommerce and enfold theme.
    We would to add the same text to all products single pages, like the widget “single product page” , but we want to placed bottom the tabs of additional_information not bottom of product image, have you any suggestion to do something like that or something similar.
    We dint want to add that text for each product .

    • This topic was modified 8 years, 1 month ago by tesseram.
    #710593

    Hi tesseram!

    Thank you for using Enfold.

    Please add something like this in the functions.php file:

    add_action( 'woocommerce_after_single_product_summary', 'woocommerce_after_single_product_summary_extra_text', 2 );
    function woocommerce_after_single_product_summary_extra_text() {
    	$output = '<div class="product_extra_text">Add some content here</div';
    	echo $output;
    }
    

    Regards,
    Ismael

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