0byt3m1n1
Path:
/
var
/
www
/
clients
/
client38
/
web37
/
web
/
wp-content
/
plugins
/
us-core
/
templates
/
elements
/
[
Home
]
File: cart.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Output cart element * * @var $icon int * @var $dropdown_effect string Dropdown Effect * @var $icon_size int * @var $design_options array * @var $classes string * @var $id string */ if ( ! class_exists( 'woocommerce' ) ) { return; } $_atts['class'] = 'w-cart dropdown_' . $dropdown_effect; $_atts['class'] .= isset( $classes ) ? $classes : ''; if ( $hide_empty ) { $_atts['class'] .= ' hide_empty'; } if ( $vstretch ) { $_atts['class'] .= ' height_full'; } if ( ! empty( $el_id ) ) { $_atts['id'] = $el_id; } $quantity_inline_css = us_prepare_inline_css( array( 'background' => us_get_color( $quantity_color_bg, /* Gradient */ TRUE ), 'color' => us_get_color( $quantity_color_text ), ) ); // Set quantity for AMP pages because JS isn't supported $quantity = ( us_amp() AND class_exists( 'WC_Cart' ) ) ? WC()->cart->get_cart_contents_count() : ''; if ( ! $quantity ) { $_atts['class'] .= ' empty'; } echo '<div' . us_implode_atts( $_atts ) . '>'; echo '<div class="w-cart-h">'; echo '<a class="w-cart-link" href="' . esc_url( wc_get_cart_url() ) . '" aria-label="' . us_translate( 'Cart', 'woocommerce' ) . '">'; echo '<span class="w-cart-icon">'; if ( ! empty( $icon ) ) { echo us_prepare_icon_tag( $icon ); } echo '<span class="w-cart-quantity"' . $quantity_inline_css . '>' . $quantity . '</span></span></a>'; if ( ! us_amp() ) { echo '<div class="w-cart-notification"><div>'; echo sprintf( us_translate_n( '%s has been added to your cart.', '%s have been added to your cart.', 1, 'woocommerce' ), '<span class="product-name">' . us_translate( 'Product', 'woocommerce' ) . '</span>' ); echo '</div></div>'; echo '<div class="w-cart-dropdown">'; the_widget( 'WC_Widget_Cart', 'title=0' ); // This widget being always filled with products via AJAX echo '</div>'; } echo '</div>'; echo '</div>';