2011-12-09 20:16:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-14 18:05:45 +00:00
|
|
|
* Variable product add to cart
|
|
|
|
*
|
2014-12-22 15:29:13 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2015-04-15 13:39:14 +00:00
|
|
|
* @version 2.4.0
|
2011-12-09 20:16:34 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2014-11-27 14:48:58 +00:00
|
|
|
exit;
|
2014-09-22 16:37:57 +00:00
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2014-08-17 20:29:51 +00:00
|
|
|
global $product, $post;
|
2011-12-09 20:16:34 +00:00
|
|
|
|
2015-07-27 15:42:22 +00:00
|
|
|
do_action( 'woocommerce_before_add_to_cart_form' ); ?>
|
2011-12-09 20:16:34 +00:00
|
|
|
|
2013-06-14 11:48:41 +00:00
|
|
|
<form class="variations_form cart" method="post" enctype='multipart/form-data' data-product_id="<?php echo $post->ID; ?>" data-product_variations="<?php echo esc_attr( json_encode( $available_variations ) ) ?>">
|
2015-04-15 13:26:46 +00:00
|
|
|
<?php do_action( 'woocommerce_before_variations_form' ); ?>
|
2015-04-15 13:39:14 +00:00
|
|
|
|
2015-07-09 14:58:58 +00:00
|
|
|
<?php if ( ! empty( $available_variations ) || false === $available_variations ) : ?>
|
2013-09-25 08:36:04 +00:00
|
|
|
<table class="variations" cellspacing="0">
|
|
|
|
<tbody>
|
2015-07-27 15:42:22 +00:00
|
|
|
<?php foreach ( $attributes as $attribute_name => $options ) : ?>
|
2013-09-25 08:36:04 +00:00
|
|
|
<tr>
|
2015-07-27 15:42:22 +00:00
|
|
|
<td class="label"><label for="<?php echo sanitize_title( $attribute_name ); ?>"><?php echo wc_attribute_label( $attribute_name ); ?></label></td>
|
|
|
|
<td class="value">
|
2013-09-25 08:36:04 +00:00
|
|
|
<?php
|
2015-07-27 15:42:22 +00:00
|
|
|
$selected = isset( $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] ) ? $_REQUEST[ 'attribute_' . sanitize_title( $attribute_name ) ] : $product->get_variation_default_attribute( $attribute_name );
|
|
|
|
wc_dropdown_variation_attribute_options( array( 'options' => $options, 'attribute' => $attribute_name, 'product' => $product, 'selected' => $selected ) );
|
2013-09-25 08:36:04 +00:00
|
|
|
?>
|
2015-07-27 15:42:22 +00:00
|
|
|
</td>
|
2013-09-25 08:36:04 +00:00
|
|
|
</tr>
|
|
|
|
<?php endforeach;?>
|
2015-07-27 15:42:22 +00:00
|
|
|
<tr class="woocommerce-reset-row">
|
|
|
|
<th> </th>
|
|
|
|
<td><a class="reset_variations" href="#"><?php _e( 'Clear selection', 'woocommerce' ); ?></a></td>
|
|
|
|
</tr>
|
2013-09-25 08:36:04 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2013-10-16 09:41:20 +00:00
|
|
|
<?php do_action( 'woocommerce_before_add_to_cart_button' ); ?>
|
2013-09-25 08:36:04 +00:00
|
|
|
|
|
|
|
<div class="single_variation_wrap" style="display:none;">
|
2013-10-16 09:41:20 +00:00
|
|
|
<?php do_action( 'woocommerce_before_single_variation' ); ?>
|
|
|
|
|
2013-09-25 08:36:04 +00:00
|
|
|
<div class="single_variation"></div>
|
2013-10-16 09:41:20 +00:00
|
|
|
|
2015-07-10 14:37:52 +00:00
|
|
|
<?php do_action( 'woocommerce_before_variations_button' ); ?>
|
2013-09-25 08:36:04 +00:00
|
|
|
<div class="variations_button">
|
2015-07-27 15:42:22 +00:00
|
|
|
<?php woocommerce_quantity_input( array( 'input_value' => isset( $_POST['quantity'] ) ? wc_stock_amount( $_POST['quantity'] ) : 1 ) ); ?>
|
2015-04-29 01:25:16 +00:00
|
|
|
<button type="submit" class="single_add_to_cart_button button alt"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>
|
2013-09-25 08:36:04 +00:00
|
|
|
</div>
|
2015-07-27 15:42:22 +00:00
|
|
|
<?php do_action( 'woocommerce_after_variations_button' ); ?>
|
2013-10-16 09:41:20 +00:00
|
|
|
|
2013-09-25 08:36:04 +00:00
|
|
|
<input type="hidden" name="add-to-cart" value="<?php echo $product->id; ?>" />
|
|
|
|
<input type="hidden" name="product_id" value="<?php echo esc_attr( $post->ID ); ?>" />
|
2014-10-14 08:03:47 +00:00
|
|
|
<input type="hidden" name="variation_id" class="variation_id" value="" />
|
2013-10-16 09:41:20 +00:00
|
|
|
|
|
|
|
<?php do_action( 'woocommerce_after_single_variation' ); ?>
|
2011-12-09 20:16:34 +00:00
|
|
|
</div>
|
|
|
|
|
2013-10-16 09:41:20 +00:00
|
|
|
<?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
|
2013-09-25 08:36:04 +00:00
|
|
|
|
|
|
|
<?php else : ?>
|
2014-01-15 05:53:37 +00:00
|
|
|
<p class="stock out-of-stock"><?php _e( 'This product is currently out of stock and unavailable.', 'woocommerce' ); ?></p>
|
2013-09-25 08:36:04 +00:00
|
|
|
<?php endif; ?>
|
2011-12-09 20:16:34 +00:00
|
|
|
|
2015-07-27 15:42:22 +00:00
|
|
|
<?php do_action( 'woocommerce_after_variations_form' ); ?>
|
2011-12-09 20:16:34 +00:00
|
|
|
</form>
|
|
|
|
|
2013-10-16 09:41:20 +00:00
|
|
|
<?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>
|