XylotrechusZ
<?php
/**
* Mini-cart
*
* Contains the markup for the mini-cart, used by the cart widget.
*
* This template can be overridden by copying it to yourtheme/woocommerce/cart/mini-cart.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 7.9.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<?php
if ( !class_exists('Woocommerce') ) {
return false;
}
global $woocommerce; ?>
<?php do_action( 'woocommerce_before_mini_cart' ); ?>
<div class="cart-icon-big"></div>
<ul class="cart_list product_list_widget <?php echo esc_attr($args['list_class']); ?>">
<?php if ( ! WC()->cart->is_empty() ) : ?>
<?php
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$_product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key );
$product_id = apply_filters( 'woocommerce_cart_item_product_id', $cart_item['product_id'], $cart_item, $cart_item_key );
if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_widget_cart_item_visible', true, $cart_item, $cart_item_key ) ) {
$product_name = apply_filters( 'woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key );
$thumbnail = apply_filters( 'woocommerce_cart_item_thumbnail', $_product->get_image(), $cart_item, $cart_item_key );
$product_price = apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key );
?>
<li class="<?php echo esc_attr( apply_filters( 'woocommerce_mini_cart_item_class', 'mini_cart_item', $cart_item, $cart_item_key ) ); ?>">
<?php
echo apply_filters( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
'woocommerce_cart_item_remove_link',
sprintf(
'<a href="%s" class="remove remove_from_cart_button" aria-label="%s" data-product_id="%s" data-cart_item_key="%s" data-product_sku="%s"><i class="icon_close"></i></a>',
esc_url( wc_get_cart_remove_url( $cart_item_key ) ),
/* translators: %s is the product name */
esc_attr( sprintf( __( 'Remove %s from cart', 'vapier' ), $_product->get_name() ) ),
esc_attr( $product_id ),
esc_attr( $cart_item_key ),
esc_attr( $_product->get_sku() )
),
$cart_item_key
);
?>
<?php if ( ! $_product->is_visible() ) : ?>
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail );?>
<?php else : ?>
<a href="<?php echo esc_url( $_product->get_permalink( $cart_item ) ); ?>" class="product-image">
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ); ?>
</a>
<?php endif; ?>
<a href="<?php echo esc_url( $_product->get_permalink( $cart_item ) ); ?>" class="product-name">
<?php echo esc_html($product_name); ?>
</a>
<?php
$rating_count = $_product->get_rating_count();
$review_count = $_product->get_review_count();
$average = $_product->get_average_rating(); ?>
<?php echo wc_get_formatted_cart_item_data( $cart_item ); ?>
<?php echo apply_filters( 'woocommerce_widget_cart_item_quantity', '<div class="quantity">' . sprintf( esc_html__('Qty:','vapier').' %s', $cart_item['quantity'] ) . '</div><div class="price">'.sprintf( '%s', $product_price ).'</div>', $cart_item, $cart_item_key ); ?>
</li>
<?php
}
}
?>
<?php else : ?>
<li class="empty">
<span><?php echo esc_html__( 'No products in the cart.', 'vapier' ); ?></span>
<a class="go-shop" href="<?php echo get_permalink( wc_get_page_id( 'shop' ) ); ?>"><?php echo esc_html__( 'GO TO SHOP', 'vapier' ); ?>
<i aria-hidden="true" class="arrow_right"></i></a>
</li>
<?php endif; ?>
</ul><!-- end product list -->
<?php if ( ! WC()->cart->is_empty() ) : ?>
<?php do_action( 'woocommerce_widget_shopping_cart_before_buttons' ); ?>
<div class="total-cart"><div class="title-total"><?php echo esc_html__( 'Total: ', 'vapier' ); ?></div><div class="total-price"><?php echo wp_kses($woocommerce->cart->get_cart_total(),'social'); ?></div></div>
<?php endif; ?>
<?php if ( ! WC()->cart->is_empty() ) : ?>
<div class="buttons">
<a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="button btn view-cart btn-primary"><?php echo esc_html__( 'View cart', 'vapier' ); ?></a>
<a href="<?php echo esc_url( wc_get_checkout_url() ); ?>" class="button btn checkout btn-default"><?php echo esc_html__( 'Check out', 'vapier' ); ?></a>
</div>
<?php endif; ?>
<div class="free-order"><?php echo esc_html__("Free Shipping on All ","vapier"); ?><span><?php echo esc_html__("Orders Over $75","vapier"); ?></span></div>
<?php do_action( 'woocommerce_after_mini_cart' ); ?>