woocommerce/templates/cart/cart.php

165 lines
5.9 KiB
PHP
Raw Normal View History

<?php
/**
* Cart Page
2012-08-14 18:05:45 +00:00
*
2015-10-03 07:58:08 +00:00
* This template can be overridden by copying it to yourtheme/woocommerce/cart/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 http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
2015-05-29 15:27:38 +00:00
* @version 2.3.8
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
wc_print_notices();
do_action( 'woocommerce_before_cart' ); ?>
2013-11-25 14:01:32 +00:00
<form action="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>" method="post">
2013-02-25 10:10:11 +00:00
<?php do_action( 'woocommerce_before_cart_table' ); ?>
2013-02-25 10:10:11 +00:00
<table class="shop_table cart" cellspacing="0">
<thead>
<tr>
2012-04-20 11:09:49 +00:00
<th class="product-remove">&nbsp;</th>
<th class="product-thumbnail">&nbsp;</th>
2012-10-16 09:45:33 +00:00
<th class="product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
<th class="product-price"><?php _e( 'Price', 'woocommerce' ); ?></th>
<th class="product-quantity"><?php _e( 'Quantity', 'woocommerce' ); ?></th>
<th class="product-subtotal"><?php _e( 'Total', 'woocommerce' ); ?></th>
</tr>
</thead>
<tbody>
2012-02-20 23:47:24 +00:00
<?php do_action( 'woocommerce_before_cart_contents' ); ?>
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 );
if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_cart_item_visible', true, $cart_item, $cart_item_key ) ) {
?>
<tr class="<?php echo esc_attr( apply_filters( 'woocommerce_cart_item_class', 'cart_item', $cart_item, $cart_item_key ) ); ?>">
<td class="product-remove">
<?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 );
?>
</td>
<td class="product-thumbnail">
<?php
$thumbnail = apply_filters( 'woocommerce_cart_item_thumbnail', $_product->get_image(), $cart_item, $cart_item_key );
if ( ! $_product->is_visible() ) {
echo $thumbnail;
} else {
printf( '<a href="%s">%s</a>', esc_url( $_product->get_permalink( $cart_item ) ), $thumbnail );
}
?>
</td>
<td class="product-name">
<?php
if ( ! $_product->is_visible() ) {
2015-05-29 15:27:38 +00:00
echo apply_filters( 'woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key ) . '&nbsp;';
} else {
2015-05-29 15:27:38 +00:00
echo apply_filters( 'woocommerce_cart_item_name', sprintf( '<a href="%s">%s </a>', esc_url( $_product->get_permalink( $cart_item ) ), $_product->get_title() ), $cart_item, $cart_item_key );
}
// Meta data
2013-11-25 14:01:32 +00:00
echo WC()->cart->get_item_data( $cart_item );
// Backorder notification
if ( $_product->backorders_require_notification() && $_product->is_on_backorder( $cart_item['quantity'] ) ) {
echo '<p class="backorder_notification">' . esc_html__( 'Available on backorder', 'woocommerce' ) . '</p>';
}
?>
</td>
<td class="product-price">
<?php
2013-11-25 14:01:32 +00:00
echo apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key );
?>
</td>
<td class="product-quantity">
<?php
if ( $_product->is_sold_individually() ) {
$product_quantity = sprintf( '1 <input type="hidden" name="cart[%s][qty]" value="1" />', $cart_item_key );
} else {
$product_quantity = woocommerce_quantity_input( array(
'input_name' => "cart[{$cart_item_key}][qty]",
'input_value' => $cart_item['quantity'],
'max_value' => $_product->backorders_allowed() ? '' : $_product->get_stock_quantity(),
'min_value' => '0'
), $_product, false );
}
echo apply_filters( 'woocommerce_cart_item_quantity', $product_quantity, $cart_item_key, $cart_item );
?>
</td>
<td class="product-subtotal">
<?php
2013-11-25 14:01:32 +00:00
echo apply_filters( 'woocommerce_cart_item_subtotal', WC()->cart->get_product_subtotal( $_product, $cart_item['quantity'] ), $cart_item, $cart_item_key );
?>
</td>
</tr>
<?php
2012-04-20 11:09:49 +00:00
}
}
2012-08-14 18:05:45 +00:00
do_action( 'woocommerce_cart_contents' );
?>
<tr>
<td colspan="6" class="actions">
2013-11-25 14:01:32 +00:00
<?php if ( WC()->cart->coupons_enabled() ) { ?>
<div class="coupon">
2012-08-14 18:05:45 +00:00
<label for="coupon_code"><?php _e( 'Coupon', 'woocommerce' ); ?>:</label> <input type="text" name="coupon_code" class="input-text" id="coupon_code" value="" placeholder="<?php esc_attr_e( 'Coupon code', 'woocommerce' ); ?>" /> <input type="submit" class="button" name="apply_coupon" value="<?php esc_attr_e( 'Apply Coupon', 'woocommerce' ); ?>" />
2012-08-14 18:05:45 +00:00
<?php do_action( 'woocommerce_cart_coupon' ); ?>
</div>
<?php } ?>
<input type="submit" class="button" name="update_cart" value="<?php esc_attr_e( 'Update Cart', 'woocommerce' ); ?>" />
<?php do_action( 'woocommerce_cart_actions' ); ?>
2012-08-14 18:05:45 +00:00
<?php wp_nonce_field( 'woocommerce-cart' ); ?>
</td>
</tr>
2012-08-14 18:05:45 +00:00
2012-02-20 23:47:24 +00:00
<?php do_action( 'woocommerce_after_cart_contents' ); ?>
</tbody>
</table>
2013-02-25 10:10:11 +00:00
<?php do_action( 'woocommerce_after_cart_table' ); ?>
2013-02-25 10:10:11 +00:00
</form>
2013-02-25 10:10:11 +00:00
<div class="cart-collaterals">
2012-08-14 18:05:45 +00:00
<?php do_action( 'woocommerce_cart_collaterals' ); ?>
2012-08-14 18:05:45 +00:00
</div>
<?php do_action( 'woocommerce_after_cart' ); ?>