cart;
$total = $cart ? (float) $cart->get_subtotal() : 0;
$thresh = apply_filters( ‘capptura_free_shipping_threshold’, 499 );
?>
is_empty() ) {
foreach ( $cart->get_cart() as $key => $item ) {
$product = $item[‘data’];
$name = $product->get_name();
$qty = $item[‘quantity’];
$price = wc_price( $product->get_price() * $qty );
$thumb = $product->get_image( ‘woocommerce_thumbnail’, array( ‘style’ => ‘width:72px;height:90px;object-fit:cover;’ ) );
?>