File: /var/www/html/wppartneramazingsecret/wp-content/themes/themify-ultra/includes/cart-icon.php
<?php if ( themify_is_woocommerce_active() && themify_theme_show_area( 'cart_icon' ) ) :?>
<div class="cart-icon<?php echo WC()->cart->get_cart_contents_count()===0?' empty-cart':''; ?>">
<div class="cart-wrap">
<a class="cart-icon-link" href="<?php echo themify_show_slide_cart()?'#slide-cart':wc_get_cart_url(); ?>">
<em class="icon-shopping-cart">
<?php echo themify_get_icon('shopping-cart','fa',false,false,array('aria-label'=>__('Shop Cart','themify'))); ?>
</em>
<span></span>
<em class="screen-reader-text"><?php _e( 'Cart', 'themify' ); ?></em>
</a>
<!-- /.cart-wrap -->
</div>
</div>
<?php endif;