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

    How to place product meta above “buy now” button and under short description?

    • This topic was modified 5 years ago by Uros.
    #1115225

    Hey Uroš,

    You can add this code in your child theme’s functions.php:

    add_action( 'woocommerce_single_product_summary', 'my_product_meta', 25 );
    
    function my_product_meta() {
      //your code here
    }

    Just insert your code and replace the comment.
    Hope it helps.

    Best regards,
    Nikko

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