Woocommerce add to cart layout
Woocommerce add to cart layout
I am new to Woocommerce Integration. The following code displays the cart details:
global $woocommerce;
$items = $woocommerce->cart->get_cart();
foreach($items as $item => $values)
$_product = wc_get_product( $values['data']->get_id() );
//product image
$getProductDetail = wc_get_product( $values['product_id'] );
echo $getProductDetail->get_image(array( 50, 50 )); // accepts 2 arguments ( size, attr )
echo "<b>".$_product->get_title() .'</b> <br> Quantity: '.$values['quantity'].'<br>';
$price = get_post_meta($values['product_id'] , '_price', true);
echo " Price: ".$price."<br>";
#Regular Price and Sale Price
echo "Regular Price: ".get_post_meta($values['product_id'] , '_regular_price', true)."<br>";
echo "Sale Price: ".get_post_meta($values['product_id'] , '_sale_price', true)."<br>";
But I would like it to display like in cart page with the remove item and quantity field functionalities.
How this can be done?
templates/cart/
cart.php
Thankew for your help
– Ghugu
Sep 6 '18 at 16:49
0
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Just copy the necessary code from related Woocommerce templates located in Woocommerce plugin under
templates/cart/
sub-folder starting bycart.php
file. Your actual code is outdated with some mistakes. Once done, you will be able to edit your question to ask again (if needed).– LoicTheAztec
Sep 4 '18 at 17:18