This topic has 4 replies, 2 voices, and was last updated 6 years, 7 months ago ago by Rose Tyler
Hello,
I have searched the forum and found a couple of different answers for this.
How can I move the product price below the Product short descriptions?
Also there are 2 Add to wishlist on the single product page, how do I remove the one next to the price?
Thank you in advance!
Hello,
1. Add this code in functions.php of child theme:
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 10);
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 20);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10);
2. Please read our documentation https://www.8theme.com/demo/docs/legenda/#!/wishlist
Regards
Great! Thank you Rose!
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up