This topic has 2 replies, 2 voices, and was last updated 9 years, 5 months ago ago by Eva Kemp
Hello,
I would like to move size-guide and price like attachment with custom css.
Please check them and tell me how.
Regards,
Hello,
You can reorder Woocommerce items as described here:
http://www.alphablossom.com/move-woocommerce-price-on-single-product-page/
So to move “price” you need add this code in functions.php of your child theme:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 25 );
Unfortunately size guide can’t be moved because in this case we have to decrease the width of variations form and buttons will be displayed one after the other.
Sorry for inconveniences.
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up