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
|
|
|
?>
|
|
|
|
|
2013-10-16 09:41:20 +00:00
|
|
|
<?php 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:39:14 +00:00
|
|
|
|
2015-04-15 13:26:46 +00:00
|
|
|
<?php do_action( 'woocommerce_before_variations_form' ); ?>
|
2015-04-15 13:39:14 +00:00
|
|
|
|
2013-09-25 08:36:04 +00:00
|
|
|
<?php if ( ! empty( $available_variations ) ) : ?>
|
|
|
|
<table class="variations" cellspacing="0">
|
|
|
|
<tbody>
|
|
|
|
<?php $loop = 0; foreach ( $attributes as $name => $options ) : $loop++; ?>
|
|
|
|
<tr>
|
2014-12-22 15:29:13 +00:00
|
|
|
<td class="label"><label for="<?php echo sanitize_title( $name ); ?>"><?php echo wc_attribute_label( $name ); ?></label></td>
|
2014-10-14 08:03:47 +00:00
|
|
|
<td class="value"><select id="<?php echo esc_attr( sanitize_title( $name ) ); ?>" name="attribute_<?php echo sanitize_title( $name ); ?>" data-attribute_name="attribute_<?php echo sanitize_title( $name ); ?>">
|
2013-09-25 08:36:04 +00:00
|
|
|
<option value=""><?php echo __( 'Choose an option', 'woocommerce' ) ?>…</option>
|
|
|
|
<?php
|
|
|
|
if ( is_array( $options ) ) {
|
|
|
|
|
|
|
|
if ( isset( $_REQUEST[ 'attribute_' . sanitize_title( $name ) ] ) ) {
|
|
|
|
$selected_value = $_REQUEST[ 'attribute_' . sanitize_title( $name ) ];
|
|
|
|
} elseif ( isset( $selected_attributes[ sanitize_title( $name ) ] ) ) {
|
|
|
|
$selected_value = $selected_attributes[ sanitize_title( $name ) ];
|
|
|
|
} else {
|
|
|
|
$selected_value = '';
|
2012-10-09 14:57:02 +00:00
|
|
|
}
|
2012-06-10 17:15:02 +00:00
|
|
|
|
2013-09-25 08:36:04 +00:00
|
|
|
// Get terms if this is a taxonomy - ordered
|
2014-12-05 14:44:48 +00:00
|
|
|
if ( taxonomy_exists( $name ) ) {
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-12-22 15:29:13 +00:00
|
|
|
$terms = wc_get_product_terms( $post->ID, $name, array( 'fields' => 'all' ) );
|
2013-09-25 08:36:04 +00:00
|
|
|
|
|
|
|
foreach ( $terms as $term ) {
|
2014-11-27 14:48:58 +00:00
|
|
|
if ( ! in_array( $term->slug, $options ) ) {
|
2013-09-25 08:36:04 +00:00
|
|
|
continue;
|
2014-11-27 14:48:58 +00:00
|
|
|
}
|
2013-09-25 08:36:04 +00:00
|
|
|
echo '<option value="' . esc_attr( $term->slug ) . '" ' . selected( sanitize_title( $selected_value ), sanitize_title( $term->slug ), false ) . '>' . apply_filters( 'woocommerce_variation_option_name', $term->name ) . '</option>';
|
|
|
|
}
|
2014-11-27 14:48:58 +00:00
|
|
|
|
2013-09-25 08:36:04 +00:00
|
|
|
} else {
|
2013-03-07 19:34:29 +00:00
|
|
|
|
2013-09-25 08:36:04 +00:00
|
|
|
foreach ( $options as $option ) {
|
|
|
|
echo '<option value="' . esc_attr( sanitize_title( $option ) ) . '" ' . selected( sanitize_title( $selected_value ), sanitize_title( $option ), false ) . '>' . esc_html( apply_filters( 'woocommerce_variation_option_name', $option ) ) . '</option>';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-06-10 17:15:02 +00:00
|
|
|
}
|
2013-09-25 08:36:04 +00:00
|
|
|
?>
|
|
|
|
</select> <?php
|
2014-11-27 14:48:58 +00:00
|
|
|
if ( sizeof( $attributes ) === $loop ) {
|
2013-09-25 08:36:04 +00:00
|
|
|
echo '<a class="reset_variations" href="#reset">' . __( 'Clear selection', 'woocommerce' ) . '</a>';
|
2014-11-27 14:48:58 +00:00
|
|
|
}
|
2013-09-25 08:36:04 +00:00
|
|
|
?></td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</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
|
|
|
|
2013-09-25 08:36:04 +00:00
|
|
|
<div class="variations_button">
|
2013-11-25 14:16:26 +00:00
|
|
|
<?php woocommerce_quantity_input(); ?>
|
2013-09-25 11:35:06 +00:00
|
|
|
<button type="submit" class="single_add_to_cart_button button alt"><?php echo $product->single_add_to_cart_text(); ?></button>
|
2013-09-25 08:36:04 +00:00
|
|
|
</div>
|
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
|
|
|
|
|
|
|
</form>
|
|
|
|
|
2013-10-16 09:41:20 +00:00
|
|
|
<?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>
|