Site logo

[Resolved] Move Price below Short description

Home Forums Support [Resolved] Move Price below Short description

Home Forums Support Move Price below Short description

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1535638
    Oliver

    Hi team,
    Loving GeneratePress Pro so far.

    Quick question – would it be possible to add a way to rearrange the layout of the Single product page?

    I would like to move the product price to below the short description.

    Many thanks

    #1535808
    David
    Staff
    Customer Support

    Hi there,

    most of the elements in the Woocommerce plugin templates are attached using Hooks. So you could add this PHP Snippet to move the Summary above the Price:

    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 9 );

    https://docs.generatepress.com/article/adding-php/

    #1536727
    Oliver

    You’re a legend David, many thanks!

    #1536853
    David
    Staff
    Customer Support

    Glad to be of help!

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