hi,
when i add an item to the cart, and the half screen cart page slides in from the right. the items in the cart have the variable code showing- do you know how i can fix that?
1 Answers
To resolve this issue, you can open the \wp-content\themes\dw-brickstore\woocommerce\cart\mini-cart.php
file:
Line 51
Replace the following code: <?php echo esc_html( $woocommerce->cart->get_item_data( $cart_item ) ); ?>
With new code: <?php echo $woocommerce->cart->get_item_data( $cart_item ); ?>
Hope this helps !
Please login or Register to submit your answer