2011-12-09 20:16:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-14 18:05:45 +00:00
|
|
|
* Grouped product add to cart
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2014-04-08 09:29:51 +00:00
|
|
|
* @version 2.1.7
|
2011-12-09 20:16:34 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2014-04-08 09:29:51 +00:00
|
|
|
global $product, $post;
|
|
|
|
|
|
|
|
$parent_product_post = $post;
|
2011-12-19 18:42:21 +00:00
|
|
|
|
2013-09-25 11:35:06 +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="cart" method="post" enctype='multipart/form-data'>
|
2011-12-09 20:16:34 +00:00
|
|
|
<table cellspacing="0" class="group_table">
|
|
|
|
<tbody>
|
2013-09-25 11:35:06 +00:00
|
|
|
<?php
|
|
|
|
foreach ( $grouped_products as $product_id ) :
|
|
|
|
$product = get_product( $product_id );
|
|
|
|
$post = $product->post;
|
|
|
|
setup_postdata( $post );
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php if ( $product->is_sold_individually() || ! $product->is_purchasable() ) : ?>
|
2013-11-25 14:16:26 +00:00
|
|
|
<?php woocommerce_template_loop_add_to_cart(); ?>
|
2013-09-25 11:35:06 +00:00
|
|
|
<?php else : ?>
|
|
|
|
<?php
|
|
|
|
$quantites_required = true;
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_quantity_input( array( 'input_name' => 'quantity[' . $product_id . ']', 'input_value' => '0' ) );
|
2013-09-25 11:35:06 +00:00
|
|
|
?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td class="label">
|
|
|
|
<label for="product-<?php echo $product_id; ?>">
|
|
|
|
<?php echo $product->is_visible() ? '<a href="' . get_permalink() . '">' . get_the_title() . '</a>' : get_the_title(); ?>
|
|
|
|
</label>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<?php do_action ( 'woocommerce_grouped_product_list_before_price', $product ); ?>
|
|
|
|
|
|
|
|
<td class="price">
|
|
|
|
<?php
|
|
|
|
echo $product->get_price_html();
|
|
|
|
|
|
|
|
if ( ( $availability = $product->get_availability() ) && $availability['availability'] )
|
|
|
|
echo apply_filters( 'woocommerce_stock_html', '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability['availability'] ) . '</p>', $availability['availability'] );
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
endforeach;
|
|
|
|
|
|
|
|
// Reset to parent grouped product
|
2014-04-08 09:29:51 +00:00
|
|
|
$post = $parent_product_post;
|
|
|
|
$product = get_product( $parent_product_post->ID );
|
|
|
|
setup_postdata( $parent_product_post );
|
2013-09-25 11:35:06 +00:00
|
|
|
?>
|
2011-12-09 20:16:34 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2013-06-14 11:48:41 +00:00
|
|
|
<input type="hidden" name="add-to-cart" value="<?php echo esc_attr( $product->id ); ?>" />
|
|
|
|
|
2012-03-30 15:10:14 +00:00
|
|
|
<?php if ( $quantites_required ) : ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
<?php do_action( 'woocommerce_before_add_to_cart_button' ); ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
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>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
<?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2011-12-19 18:42:21 +00:00
|
|
|
<?php endif; ?>
|
2011-12-09 20:16:34 +00:00
|
|
|
</form>
|
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
<?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>
|