woocommerce/templates/cart/cart.php

134 lines
5.2 KiB
PHP
Raw Normal View History

<?php
/**
* Cart Page
*/
global $woocommerce;
?>
<?php $woocommerce->show_messages(); ?>
<form action="<?php echo esc_url( $woocommerce->cart->get_cart_url() ); ?>" method="post">
<?php do_action( 'woocommerce_before_cart_table' ); ?>
<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-01-05 11:31:22 +00:00
<th class="product-name"><span class="nobr"><?php _e('Product Name', 'woocommerce'); ?></span></th>
<th class="product-price"><span class="nobr"><?php _e('Unit Price', 'woocommerce'); ?></span></th>
<th class="product-quantity"><?php _e('Quantity', 'woocommerce'); ?></th>
<th class="product-subtotal"><?php _e('Price', 'woocommerce'); ?></th>
</tr>
</thead>
<tbody>
2012-02-20 23:47:24 +00:00
<?php do_action( 'woocommerce_before_cart_contents' ); ?>
<?php
2012-04-20 11:09:49 +00:00
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
$_product = $values['data'];
2012-04-20 11:09:49 +00:00
if ( $_product->exists() && $values['quantity'] > 0 ) {
?>
<tr>
2012-04-20 11:09:49 +00:00
<!-- Remove from cart link -->
<td class="product-remove">
<?php
echo apply_filters( 'woocommerce_cart_item_remove_link', sprintf('<a href="%s" class="remove" title="%s">&times;</a>', esc_url( $woocommerce->cart->get_remove_url( $cart_item_key ) ), __('Remove this item', 'woocommerce') ), $cart_item_key );
?>
</td>
<!-- The thumbnail -->
<td class="product-thumbnail">
<?php
2012-04-20 11:09:49 +00:00
printf('<a href="%s">%s</a>', esc_url( get_permalink( apply_filters('woocommerce_in_cart_product_id', $values['product_id'] ) ) ), $_product->get_image() );
?>
</td>
2012-04-20 11:09:49 +00:00
<!-- Product Name -->
<td class="product-name">
2012-04-20 11:09:49 +00:00
<?php
2012-06-08 12:41:01 +00:00
printf('<a href="%s">%s</a>', esc_url( get_permalink( apply_filters('woocommerce_in_cart_product_id', $values['product_id'] ) ) ), apply_filters('woocommerce_in_cart_product_title', $_product->get_title(), $values, $cart_item_key ) );
2012-04-20 11:09:49 +00:00
// Meta data
echo $woocommerce->cart->get_item_data( $values );
// Backorder notification
2012-04-20 11:09:49 +00:00
if ( $_product->backorders_require_notification() && $_product->get_total_stock() < 1 )
2012-06-06 20:35:40 +00:00
echo '<p class="backorder_notification">' . __('Available on backorder', 'woocommerce') . '</p>';
?>
</td>
2012-04-20 11:09:49 +00:00
<!-- Product price -->
<td class="product-price">
<?php
$product_price = ( get_option('woocommerce_display_cart_prices_excluding_tax') == 'yes' ) ? $_product->get_price_excluding_tax() : $_product->get_price();
2012-02-27 18:22:54 +00:00
2012-04-20 11:09:49 +00:00
echo apply_filters('woocommerce_cart_item_price_html', woocommerce_price( $product_price ), $values, $cart_item_key );
?>
</td>
<!-- Quantity inputs -->
<td class="product-quantity">
<?php
if ( $_product->is_sold_individually() ) {
2012-04-23 16:21:51 +00:00
$product_quantity = '1';
2012-04-20 11:09:49 +00:00
} else {
$data_min = apply_filters( 'woocommerce_cart_item_data_min', '', $_product );
$data_max = ( $_product->backorders_allowed() ) ? '' : $_product->get_stock_quantity();
$data_max = apply_filters( 'woocommerce_cart_item_data_max', $data_max, $_product );
2012-04-23 16:21:51 +00:00
$product_quantity = sprintf( '<div class="quantity"><input name="cart[%s][qty]" data-min="%s" data-max="%s" value="%s" size="4" title="Qty" class="input-text qty text" maxlength="12" /></div>', $cart_item_key, $data_min, $data_max, esc_attr( $values['quantity'] ) );
2012-04-20 11:09:49 +00:00
}
2012-04-23 16:21:51 +00:00
echo apply_filters( 'woocommerce_cart_item_quantity', $product_quantity, $cart_item_key );
2012-04-20 11:09:49 +00:00
?>
</td>
<!-- Product subtotal -->
<td class="product-subtotal">
<?php
echo $woocommerce->cart->get_product_subtotal( $_product, $values['quantity'] );
?>
</td>
</tr>
<?php
2012-04-20 11:09:49 +00:00
}
}
}
do_action( 'woocommerce_cart_contents' );
?>
<tr>
<td colspan="6" class="actions">
<?php if ( get_option( 'woocommerce_enable_coupons' ) == 'yes' ) { ?>
<div class="coupon">
2012-04-30 19:50:35 +00:00
<label for="coupon_code"><?php _e('Coupon', 'woocommerce'); ?>:</label> <input name="coupon_code" class="input-text" id="coupon_code" value="" /> <input type="submit" class="button" name="apply_coupon" value="<?php _e('Apply Coupon', 'woocommerce'); ?>" />
2012-04-30 19:50:35 +00:00
<?php do_action('woocommerce_cart_coupon'); ?>
</div>
<?php } ?>
<?php $woocommerce->nonce_field('cart') ?>
2012-01-05 11:31:22 +00:00
<input type="submit" class="button" name="update_cart" value="<?php _e('Update Cart', 'woocommerce'); ?>" /> <a href="<?php echo esc_url( $woocommerce->cart->get_checkout_url() ); ?>" class="checkout-button button alt"><?php _e('Proceed to Checkout &rarr;', 'woocommerce'); ?></a>
<?php do_action('woocommerce_proceed_to_checkout'); ?>
</td>
</tr>
2012-02-20 23:47:24 +00:00
<?php do_action( 'woocommerce_after_cart_contents' ); ?>
</tbody>
</table>
<?php do_action( 'woocommerce_after_cart_table' ); ?>
</form>
<div class="cart-collaterals">
<?php do_action('woocommerce_cart_collaterals'); ?>
<?php woocommerce_cart_totals(); ?>
<?php woocommerce_shipping_calculator(); ?>
</div>