Home Forums WoodMart support forum Productpage: put price above button

Productpage: put price above button

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

    lisakey
    Participant

    Dear Woodmart support team,
    I want to put the price on the product page above the button.
    The yellow marked part (on the picture attched) should move down.

    Can you please help me with that?

    Best regards
    Lisa

    https://wecareplus.de/produkt/ethasept-haendedesinfektionsmittel-1-l/

    Attachments:
    You must be logged in to view attached files.
    #337661

    Luke Nielsen
    Keymaster

    Hello,

    Please, try to add this custom PHP code to the functions.php file in your child theme for changing the order of the product price on the single page.

    if ( ! function_exists('wd_order_desk') ) {
        function wd_order_desk() {
    
            remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
            add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 5 );
    
        }
    
        add_action( 'init', 'wd_order_desk' );
    }

    Kind Regards

    #337695

    lisakey
    Participant

    Great! Thank you!

    #337765

    Luke Nielsen
    Keymaster

    Hello,

    If you do not mind, can you please leave a 5 stars rating for our Theme & Customer and Technical Support by going here: http://themeforest.net/downloads It will allow us to release more updates and provide dedicated support in the future.

    We wish you all the best.

    Kind Regards

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Productpage: put price above button’ is closed to new replies.