woocommerce/templates/cart/mini-cart.php

91 lines
3.8 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-03 13:53:50 +00:00
* Mini-cart
*
2015-11-03 13:31:20 +00:00
* Contains the markup for the mini-cart, used by the cart widget.
2012-08-14 18:05:45 +00:00
*
2015-11-03 13:31:20 +00:00
* This template can be overridden by copying it to yourtheme/woocommerce/cart/mini-cart.php.
*
2015-11-03 13:31:20 +00:00
* 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 http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.5.0
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<?php do_action( 'woocommerce_before_mini_cart' ); ?>
<ul class="cart_list product_list_widget <?php echo $args['list_class']; ?>">
2015-05-14 21:18:53 +00:00
<?php if ( ! WC()->cart->is_empty() ) : ?>
2012-08-14 18:05:45 +00:00
<?php
2013-11-25 14:01:32 +00:00
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 );
2012-08-14 18:05:45 +00:00
if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_widget_cart_item_visible', true, $cart_item, $cart_item_key ) ) {
2012-08-14 18:05:45 +00:00
$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 );
2013-11-25 14:01:32 +00:00
$product_price = apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key );
?>
2015-03-31 08:40:26 +00:00
<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( 'woocommerce_cart_item_remove_link', sprintf(
'<a href="%s" class="remove" title="%s" data-product_id="%s" data-product_sku="%s">&times;</a>',
esc_url( WC()->cart->get_remove_url( $cart_item_key ) ),
__( 'Remove this item', 'woocommerce' ),
esc_attr( $product_id ),
esc_attr( $_product->get_sku() )
), $cart_item_key );
?>
2014-11-14 12:24:51 +00:00
<?php if ( ! $_product->is_visible() ) : ?>
2015-02-26 11:59:40 +00:00
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name . '&nbsp;'; ?>
2014-11-14 12:24:51 +00:00
<?php else : ?>
<a href="<?php echo esc_url( $_product->get_permalink( $cart_item ) ); ?>">
2015-02-26 11:59:40 +00:00
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name . '&nbsp;'; ?>
2014-11-14 12:24:51 +00:00
</a>
<?php endif; ?>
2013-11-25 14:01:32 +00:00
<?php echo WC()->cart->get_item_data( $cart_item ); ?>
2012-08-14 18:05:45 +00:00
<?php echo apply_filters( 'woocommerce_widget_cart_item_quantity', '<span class="quantity">' . sprintf( '%s &times; %s', $cart_item['quantity'], $product_price ) . '</span>', $cart_item, $cart_item_key ); ?>
</li>
<?php
}
}
?>
2012-08-14 18:05:45 +00:00
<?php else : ?>
2012-08-14 18:05:45 +00:00
2012-10-16 09:45:33 +00:00
<li class="empty"><?php _e( 'No products in the cart.', 'woocommerce' ); ?></li>
2012-08-14 18:05:45 +00:00
<?php endif; ?>
2012-08-14 18:05:45 +00:00
</ul><!-- end product list -->
2015-05-14 21:18:53 +00:00
<?php if ( ! WC()->cart->is_empty() ) : ?>
2013-11-25 14:01:32 +00:00
<p class="total"><strong><?php _e( 'Subtotal', 'woocommerce' ); ?>:</strong> <?php echo WC()->cart->get_cart_subtotal(); ?></p>
2012-08-14 18:05:45 +00:00
<?php do_action( 'woocommerce_widget_shopping_cart_before_buttons' ); ?>
2012-08-14 18:05:45 +00:00
<p class="buttons">
<a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="button wc-forward"><?php _e( 'View Cart', 'woocommerce' ); ?></a>
<a href="<?php echo esc_url( wc_get_checkout_url() ); ?>" class="button checkout wc-forward"><?php _e( 'Checkout', 'woocommerce' ); ?></a>
</p>
<?php endif; ?>
<?php do_action( 'woocommerce_after_mini_cart' ); ?>