| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/glaza/templates/header/ |
Upload File : |
<?php
//check empty
if ( ! class_exists( 'Woocommerce' ) || ! function_exists( 'wc_get_cart_url' ) || ! function_exists( 'is_cart' ) || is_cart() ) {
return false;
}
$glaza_topbar_cart = glaza_get_option( 'navbar_cart' );
if ( ! empty( $glaza_topbar_cart ) ): ?>
<div class="topbar-cart">
<a class="cart-icon" href="<?php echo esc_url( wc_get_cart_url() ) ?>" title="<?php echo esc_attr( glaza_translate( 'view_cart' ) ); ?>">
<i class="icon-simple icon-handbag" aria-hidden="true"></i><span class="cart-counter"><?php echo esc_attr( WC()->cart->cart_contents_count ); ?></span>
</a>
<?php if ( function_exists( 'woocommerce_mini_cart' ) ): ?>
<div id="mini-cart" class="is-light-text">
<div class="mini-cart-wrap woocommerce">
<div class="widget_shopping_cart_content">
<?php woocommerce_mini_cart(); ?>
</div>
</div>
</div>
<?php endif; ?>
</div>
<?php endif; ?>