woocommerce/templates/cart/mini-cart.php

75 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/**
2012-08-14 18:05:45 +00:00
* Mini-cart
*
* Contains the markup for the mini-cart, used by the cart widget
2012-08-14 18:05:45 +00:00
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $woocommerce;
?>
<?php do_action( 'woocommerce_before_mini_cart' ); ?>
<ul class="cart_list product_list_widget <?php echo $args['list_class']; ?>">
<?php if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) : ?>
2012-08-14 18:05:45 +00:00
<?php foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $cart_item ) :
$_product = $cart_item['data'];
2012-08-14 18:05:45 +00:00
// Only display if allowed
2012-08-14 18:05:45 +00:00
if ( ! apply_filters('woocommerce_widget_cart_item_visible', true, $cart_item, $cart_item_key ) || ! $_product->exists() || $cart_item['quantity'] == 0 )
continue;
2012-08-14 18:05:45 +00:00
// Get price
2012-12-03 16:36:54 +00:00
$product_price = get_option( 'woocommerce_tax_display_cart' ) == 'excl' ? $_product->get_price_excluding_tax() : $_product->get_price_including_tax();
2012-08-14 18:05:45 +00:00
$product_price = apply_filters( 'woocommerce_cart_item_price_html', woocommerce_price( $product_price ), $cart_item, $cart_item_key );
?>
2012-08-14 18:05:45 +00:00
<li>
<a href="<?php echo get_permalink( $cart_item['product_id'] ); ?>">
2012-08-14 18:05:45 +00:00
<?php echo $_product->get_image(); ?>
2012-08-14 18:05:45 +00:00
<?php echo apply_filters('woocommerce_widget_cart_product_title', $_product->get_title(), $_product ); ?>
2012-08-14 18:05:45 +00:00
</a>
2012-08-14 18:05:45 +00:00
<?php echo $woocommerce->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>
2012-08-14 18:05:45 +00:00
<?php endforeach; ?>
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 -->
<?php if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) : ?>
2012-10-16 09:45:33 +00:00
<p class="total"><strong><?php _e( 'Subtotal', 'woocommerce' ); ?>:</strong> <?php echo $woocommerce->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">
2012-10-16 09:45:33 +00:00
<a href="<?php echo $woocommerce->cart->get_cart_url(); ?>" class="button"><?php _e( 'View Cart &rarr;', 'woocommerce' ); ?></a>
<a href="<?php echo $woocommerce->cart->get_checkout_url(); ?>" class="button checkout"><?php _e( 'Checkout &rarr;', 'woocommerce' ); ?></a>
</p>
<?php endif; ?>
<?php do_action( 'woocommerce_after_mini_cart' ); ?>