File: /home/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/templates/elements/cart.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );
/**
* Output cart element
*
* @var $visibility string Visibility: 'always' / 'not_empty'
* @var $icon int
* @var $icon_size int
* @var $design_options array
* @var $id string
*/
if ( ! class_exists( 'woocommerce' ) ) {
return;
}
global $woocommerce;
$link = $woocommerce->cart->get_cart_url();
global $cache_enabled;
$classes = '';
if ( isset( $design_options ) AND isset( $design_options['hide_for_sticky'] ) AND $design_options['hide_for_sticky'] ) {
$classes .= ' hide-for-sticky';
}
if ( isset( $design_options ) AND isset( $design_options['hide_for_not-sticky'] ) AND $design_options['hide_for_not-sticky'] ) {
$classes .= ' hide-for-not-sticky';
}
if ( isset( $id ) AND ! empty( $id ) ) {
$classes .= ' ush_' . str_replace( ':', '_', $id );
}
echo '<div class="w-cart' . $classes . '">';
echo '<div class="w-cart-h">';
echo '<a class="w-cart-link" href="' . esc_attr( $link ) . '">';
if ( ! empty( $icon ) ) {
echo us_prepare_icon_tag( $icon );
}
echo '<span class="w-cart-quantity"></span></a>';
echo '<div class="w-cart-notification"><span class="product-name">' . us_translate( 'Product', 'woocommerce' ) . '</span> ' . __( 'was added to your cart', 'us' ) . '</div>';
echo '<div class="w-cart-dropdown">';
the_widget( 'WC_Widget_Cart' ); // This widget being always filled with products via AJAX
echo '</div>';
echo '</div>';
echo '</div>';