Productpage: put price above button
-
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.
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
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
The topic ‘Productpage: put price above button’ is closed to new replies.