Fix grouped products sold individually add-to-cart

The add-to-cart button for products sold individually on a grouped
product page would always lead to the "Please choose a product to
add to your cart" error. This fixes that, and also restores th
'single_add_to_cart_text' filter to the button's text.
This commit is contained in:
Brent Shepherd 2013-03-05 14:17:36 +10:00
parent d80c88189c
commit 3935034bc0
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ foreach ( $product->get_children() as $child_id ) {
<?php elseif ( ! $quantites_required ) : ?>
<button type="submit" name="quantity[<?php echo $child_product['product']->id; ?>]" value="1" class="single_add_to_cart_button button alt"><?php _e( 'Add to cart', 'woocommerce' ); ?></button>
<a href="<?php echo esc_url( $child_product['product']->add_to_cart_url() ); ?>" rel="nofollow" class="button alt"><?php echo apply_filters( 'single_add_to_cart_text', __( 'Add to cart', 'woocommerce' ), $child_product['product']->product_type ); ?></a>
<?php else : ?>