Home › Forums › WoodMart support forum › E_ERROR › Reply To: E_ERROR
November 22, 2021 at 10:32 am
#333627
Elise Noromit
Member
Hello,
Please add this code to the function.php of the child theme:
function woodmart_cart_subtotal() {
if ( ! is_object( WC() ) || ! property_exists( WC(), 'cart' ) || ! method_exists( WC()->cart, 'get_cart_subtotal' ) ) {
return;
}
?>
<span class="wd-cart-subtotal<?php echo woodmart_get_old_classes( ' woodmart-cart-subtotal' ); ?>"><?php echo WC()->cart->get_cart_subtotal(); ?></span>
<?php
}
Best Regards