خط زدن قیمت اصلی هنگام استفاده از کد تخفیف ووکامرس
گاهی اوقات بعضی از کالا های فروشگاه ووکامرس ما تخفیف میخورد و نشان دادن قیمت اصلی یک کالا بسیار تاثیر گذار خواهد بود . در این آموزش یاد خواهیم داد که چگونه بر روی قیمت اصلی خط بزنیم و قیمت تخفیف خورده را نمایش دهیم.
کافیست کد زیر را در functions.php قرار دهید
add_filter( 'woocommerce_cart_subtotal', 'a4fran3_slash_cart_subtotal_if_discount', 99, 3 ); function a4fran3_slash_cart_subtotal_if_discount( $cart_subtotal, $compound, $obj ){ global $woocommerce; if ( $woocommerce->cart->get_cart_discount_total() <> 0 ) { $new_cart_subtotal = wc_price( WC()->cart->subtotal - $woocommerce->cart->get_cart_discount_tax_total() - $woocommerce->cart->get_cart_discount_total() ); $cart_subtotal = sprintf( '<del>%s</del> <b>%s</b>', $cart_subtotal , $new_cart_subtotal ); } return $cart_subtotal; }
نتیجه کد بالا :