Changing order of content on product page
-
I have been trying to change the order of the content on the product to show in this order, title, price, review, add to cart, excerpt. I tried adding this to the content_single_products.php */
remove_action( ‘woocommerce_single_excerpt’, ‘woocommerce_template_single_excerpt’, 20 );
remove_action( ‘woocommerce_single_add_to_cart’, ‘woocommerce_template_single_add_to_cart’, 30 );
add_action( ‘woocommerce_single_add_to_cart’, ‘woocommerce_template_single_add_to_cart’, 20 );
add_action( ‘woocommerce_single_excerpt’, ‘woocommerce_template_single_excerpt’, 30 );to get the add to cart button before the excerpt but it did nothing. If someone knows what I could do to get the order as Title, Price, Review, Add to Cart, Excerpt, I would be SOOO grateful!
Creatiknit.com/shop
- The topic ‘Changing order of content on product page’ is closed to new replies.