Repository › Forums › Support › WooCommerce Extended Coupon Features PRO › Show price of free item › Reply To: Show price of free item
September 14, 2017 at 8:44 am
#1916
Soft79
Keymaster
I see, try this:
add_filter( 'wjecf_free_cart_item_price',
function ( $text, $price_html, $cart_item, $cart_item_key )
{
$product = new WC_Product( $cart_item['product_id'] );
return "<del>" . wc_price( $product->get_price() ) . "</del> <strong>" . __('Free!', 'woocommerce') . "</strong>";
}, 10, 4);
add_filter( 'wjecf_free_cart_item_subtotal',
function ( $text, $price_html, $cart_item, $cart_item_key )
{
$product = new WC_Product( $cart_item['product_id'] );
return "<del>" . wc_price( $product->get_price() * $cart_item['quantity'] ) . "</del> <strong>" . __('Free!', 'woocommerce') . "</strong>";
}, 10, 4);
PS: I don’t think there was a typo in the snippet. Did you copy/paste well?