File: /home/nolabhpoint2p/public_html/wp-content/themes/PoinTheme/includes/woocommerce-cart.php
<div class="mfn-cart-overlay"></div>
<div class="mfn-cart-holder woocommerce">
<div class="mfn-ch-row mfn-ch-header">
<span class="toggle-mfn-cart close-mfn-cart mfn-close-icon"><span class="icon">✕</span></span>
<h3>
<?php
$cart_icon = trim( mfn_opts_get('shop-cart') );
if( $cart_icon ){
echo '<i class="'. $cart_icon .'"></i>';
} else {
echo '<svg width="26" viewBox="0 0 26 26"><defs><style>.path{fill:none;stroke:#333;stroke-miterlimit:10;stroke-width:1.5px;}</style></defs><polygon class="path" points="20.4 20.4 5.6 20.4 6.83 10.53 19.17 10.53 20.4 20.4"/><path class="path" d="M9.3,10.53V9.3a3.7,3.7,0,1,1,7.4,0v1.23"/></svg>';
}
echo get_the_title( get_option( 'woocommerce_cart_page_id' ) );
?>
</h3>
</div>
<div class="mfn-ch-row mfn-ch-content-wrapper">
<div class="mfn-ch-row mfn-ch-content">
<?php mfn_get_woo_sidecart_content(); ?>
</div>
</div>
<div class="mfn-ch-row mfn-ch-footer">
<div class="mfn-ch-footer-totals">
<?php mfn_get_woo_sidecart_footer(); ?>
</div>
<div class="mfn-ch-footer-buttons">
<a href="<?php echo wc_get_checkout_url(); ?>" class="button button_full_width button_theme"><?php esc_html_e( 'Proceed to checkout', 'woocommerce' ); ?></a>
<?php if(! is_cart() ): ?><a href="<?php echo esc_url( wc_get_cart_url() ); ?>"><?php esc_html_e( 'View cart', 'woocommerce' ); ?></a> <?php endif; ?>
</div>
</div>
</div>