Is it possible that when someone is on the checkout page, he/she can edit "Your Order" by removing products from the "cart" without going to the cart page here and forth?
hope to hear from you!
This is the standard woocommerce page and woocommerce do not have any such feature to remove the items from the checkout page, you can only remove the items from the cart page.
Ok that is too bad. Thanks for the response. Is it possible though to input a link under "Your Order" (see the attachment of my previous post) that links to the cart when it is clicked. As of now there is no clear path to the cart..
Please try adding the given code in your wplms-customizer.php file in wplms customizer plugin :
add_action('woocommerce_checkout_before_order_review','cart_link_on_checkout');function cart_link_on_checkout(){ $id=get_option( 'woocommerce_cart_page_id' ); if(!empty($id)) echo '<a href="'.get_permalink($id).'">Edit cart</a>';}
It will add a link to cart page where user can edit order below your order in checkout page .
refer : http://prntscr.com/c2auo4
Author
Posts
Viewing 4 posts - 1 through 4 (of 4 total)
The topic ‘Edit cart at checkout’ is closed to new replies.