Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 104029

alancf on "[Plugin: WooCommerce - excelling eCommerce] How to show the original price in the cart?"

$
0
0

This code will show the sale price of all the products in the cart:

if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
	foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
		$_product = $values['data'];
		echo woocommerce_price( $_product->sale_price );
	}
}

Viewing all articles
Browse latest Browse all 104029

Trending Articles