@partizant: There has been a small bug in the theme, edit woocommerce.php
file (e-commerce-pro/inc/woocommerce.php) remove this following codes (line 36):
/**
* Show cart contents (total link).
*/
if ( ! function_exists( 'e_commerce_cart_link' ) ) {
function e_commerce_cart_link() {
?>
<div class="cart-contents cart_totals sidebar-cart">
<?php
if ( is_woocommerce_activated() ) {
?>
<a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>" title="<?php _e( 'View cart', 'e-commerce-pro' ); ?>">
<span class="cart-icon"></span><span class="subtotal"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <span class="count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'e-commerce-pro' ), WC()->cart->get_cart_contents_count() ) );?></span>
</a>
<?php
}
else {
get_Search_form();
}
?>
</div><!-- .cart-contents.cart_totals.sidebar-cart -->
<?php
}
}
edit structure.php
file (e-commerce-pro/inc/structure.php) remove this following codes (line 286):
<?php
if ( !$e_commerce_primary_search_disable ) :
e_commerce_cart_link() ;
endif;
?>
You can remove this from the core files itself. The issue will be fixed on the next update.
Regards,
Mahesh