woocommerce/templates/cart/mini-cart.php

75 lines
3.0 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 2.1.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']; ?>">
2013-11-25 14:01:32 +00:00
<?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>
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 );
?>
<li>
2014-11-14 12:24:51 +00:00
<?php echo apply_filters( 'woocommerce_cart_item_remove_link', sprintf( '<a href="%s" class="remove" title="%s">&times;</a>', esc_url( WC()->cart->get_remove_url( $cart_item_key ) ), __( 'Remove this item', 'woocommerce' ) ), $cart_item_key ); ?>
<?php if ( ! $_product->is_visible() ) : ?>
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name; ?>
2014-11-14 12:24:51 +00:00
<?php else : ?>
<a href="<?php echo get_permalink( $product_id ); ?>">
<?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name; ?>
</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 -->
2013-11-25 14:01:32 +00:00
<?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>
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">
2013-11-25 14:01:32 +00:00
<a href="<?php echo WC()->cart->get_cart_url(); ?>" class="button wc-forward"><?php _e( 'View Cart', 'woocommerce' ); ?></a>
<a href="<?php echo WC()->cart->get_checkout_url(); ?>" class="button checkout wc-forward"><?php _e( 'Checkout', 'woocommerce' ); ?></a>
</p>
<?php endif; ?>
<?php do_action( 'woocommerce_after_mini_cart' ); ?>