Skip to content

Instantly share code, notes, and snippets.

@mircobabini
Created April 3, 2014 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mircobabini/9951901 to your computer and use it in GitHub Desktop.
Save mircobabini/9951901 to your computer and use it in GitHub Desktop.
<?php
/**
* Cart Page
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.1.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $woocommerce;
wc_print_notices();
?>
<?php do_action( 'woocommerce_before_cart' ); ?>
<h3><?php _e( 'SHOPPING CART', 'yit' ); ?></h3>
<div class="row-fluid">
<form action="<?php echo esc_url( $woocommerce->cart->get_cart_url() ); ?>" method="post">
<div class="span9 cart-list">
<?php do_action( 'woocommerce_before_cart_table' ); ?>
<table class="shop_table cart" cellspacing="0">
<thead>
<tr>
<th class="product-remove"></th>
<th class="product-name"><?php _e( 'Description', 'yit' ); ?></th>
<th class="product-quantity"><?php _e( 'Quantity', 'yit' ); ?></th>
<th class="product-subtotal"><?php _e( 'Subtotal', 'yit' ); ?></th>
</tr>
</thead>
<tbody>
<?php do_action( 'woocommerce_before_cart_contents' ); ?>
<?php
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
$_product = $values['data'];
if ( $_product->exists() && $values['quantity'] > 0 ) {
?>
<tr class = "<?php echo esc_attr( apply_filters('woocommerce_cart_table_item_class', 'cart_table_item', $values, $cart_item_key ) ); ?>">
<!-- 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', 'yit' ) ), $cart_item_key );
?>
</td>
<!-- Product Name -->
<td class="product-name">
<!-- The thumbnail -->
<div class="product-thumbnail">
<?php
$thumbnail = apply_filters( 'woocommerce_in_cart_product_thumbnail', $_product->get_image(), $values, $cart_item_key );
if ( ! $_product->is_visible() || ( ! empty( $_product->variation_id ) && ! $_product->parent_is_visible() ) )
echo $thumbnail;
else
printf('<a href="%s">%s</a>', esc_url( get_permalink( apply_filters('woocommerce_in_cart_product_id', $values['product_id'] ) ) ), $thumbnail );
?>
</div>
<div class="product-name-price">
<div class="product-name">
<?php
if ( ! $_product->is_visible() || ( ! empty( $_product->variation_id ) && ! $_product->parent_is_visible() ) )
echo apply_filters( 'woocommerce_in_cart_product_title', $_product->get_title(), $values, $cart_item_key );
else
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 ) );
// Meta data
echo $woocommerce->cart->get_item_data( $values );
// Backorder notification
if ( $_product->backorders_require_notification() && $_product->is_on_backorder( $values['quantity'] ) )
echo '<p class="backorder_notification">' . __( 'Available on backorder', 'yit' ) . '</p>';
?>
</div>
<!-- Product price -->
<div class="product-price">
<?php
$product_price = get_option('woocommerce_tax_display_cart') == 'excl' ? $_product->get_price_excluding_tax() : $_product->get_price_including_tax();
echo apply_filters('woocommerce_cart_item_price_html', wc_price( $product_price ), $values, $cart_item_key );
?>
</div>
</div>
</td>
<!-- Quantity inputs -->
<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 {
$step = apply_filters( 'woocommerce_quantity_input_step', '1', $_product );
$min = apply_filters( 'woocommerce_quantity_input_min', '', $_product );
$max = apply_filters( 'woocommerce_quantity_input_max', $_product->backorders_allowed() ? '' : $_product->get_stock_quantity(), $_product );
$product_quantity = sprintf( '<div class="quantity"><input type="number" name="cart[%s][qty]" step="%s" min="%s" max="%s" value="%s" size="4" title="' . _x( 'Qty', 'Product quantity input tooltip', 'yit' ) . '" class="input-text qty text" maxlength="12" /></div>', $cart_item_key, $step, $min, $max, esc_attr( $values['quantity'] ) );
}
echo apply_filters( 'woocommerce_cart_item_quantity', $product_quantity, $cart_item_key );
?>
</td>
<!-- Product subtotal -->
<td class="product-subtotal">
<?php
echo apply_filters( 'woocommerce_cart_item_subtotal', $woocommerce->cart->get_product_subtotal( $_product, $values['quantity'] ), $values, $cart_item_key );
?>
</td>
</tr>
<?php
}
}
}
do_action( 'woocommerce_cart_contents' );
?>
<?php /*
<tr>
<td colspan="6" class="actions">
<?php if ( $woocommerce->cart->coupons_enabled() ) { ?>
<div class="coupon">
<label for="coupon_code"><?php _e( 'Coupon', 'yit' ); ?>:</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', 'yit' ); ?>" />
<?php do_action('woocommerce_cart_coupon'); ?>
</div>
<?php } ?>
<input type="submit" class="button" name="update_cart" value="<?php _e( 'Update Cart', 'yit' ); ?>" /> <input type="submit" class="checkout-button button alt" name="proceed" value="<?php _e( 'Proceed to Checkout &rarr;', 'yit' ); ?>" />
<?php do_action('woocommerce_proceed_to_checkout'); ?>
<?php $woocommerce->nonce_field('cart') ?>
</td>
</tr>
*/ ?>
<?php do_action( 'woocommerce_after_cart_contents' ); ?>
</tbody>
</table>
<?php do_action( 'woocommerce_after_cart_table' ); ?>
<div class="row-fluid border-8">
<div class="span7">
<table class="shop_table_shipping shop_table cart" cellspacing="0">
<thead>
<tr>
<th><?php _e( 'Calculate Shipping', 'yit' ); ?> </th>
</tr>
</thead>
<tbody>
<tr>
<td >
<?php woocommerce_shipping_calculator(); ?>
</td>
</tr>
</tbody>
</table>
</div>
<?php if ( $woocommerce->cart->coupons_enabled() ) : ?>
<div class="span5">
<table class="shop_table_coupon shop_table cart" cellspacing="0">
<thead>
<tr>
<th><?php _e( 'Promotional code', 'yit' ); ?></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input name="coupon_code" class="input-text" id="coupon_code" value="" placeholder="<?php _e('Enter promotion code', 'yit'); ?>" />
<input type="submit" class="button" name="apply_coupon" value="<?php _e( 'Apply Code', 'yit' ); ?>" />
<?php do_action('woocommerce_cart_coupon'); ?>
</td>
</tr>
</tbody>
</table>
</div>
<?php endif ?>
</div>
<?php /*
<div class="cart-collaterals">
<?php do_action('woocommerce_cart_collaterals'); ?>
<?php woocommerce_cart_totals(); ?>
<?php woocommerce_shipping_calculator(); ?>
</div>
*/ ?>
<?php wp_nonce_field( 'woocommerce-cart') ?>
</div>
<div class="span3 cart-user-info">
<div class="cart-collaterals">
<?php do_action('woocommerce_cart_collaterals'); ?>
<?php woocommerce_cart_totals(); ?>
</div>
</div>
</form>
</div>
<?php do_action( 'woocommerce_after_cart' ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment