add_to_cart filter added in loop/add-to-cart.php

Needed by Product Bundles extension to avoid overriding this file.
Finally, no templates files are overridden.
This commit is contained in:
Manos Psychogyiopoulos 2012-07-06 15:29:12 +03:00
parent 3d02d1a238
commit 73214c421d
1 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ if( $product->get_price() === '' && $product->product_type != 'external' ) retur
<?php if ( ! $product->is_in_stock() ) : ?>
<a href="<?php echo get_permalink($product->id); ?>" class="button"><?php echo apply_filters('out_of_stock_add_to_cart_text', __('Read More', 'woocommerce')); ?></a>
<a href="<?php echo get_permalink( $product->id ); ?>" class="button"><?php echo apply_filters( 'out_of_stock_add_to_cart_text', __('Read More', 'woocommerce') ); ?></a>
<?php else : ?>
@ -18,20 +18,20 @@ if( $product->get_price() === '' && $product->product_type != 'external' ) retur
switch ( $product->product_type ) {
case "variable" :
$link = get_permalink($product->id);
$label = apply_filters('variable_add_to_cart_text', __('Select options', 'woocommerce'));
$link = get_permalink( $product->id );
$label = apply_filters( 'variable_add_to_cart_text', __('Select options', 'woocommerce') );
break;
case "grouped" :
$link = get_permalink($product->id);
$label = apply_filters('grouped_add_to_cart_text', __('View options', 'woocommerce'));
$label = apply_filters( 'grouped_add_to_cart_text', __('View options', 'woocommerce') );
break;
case "external" :
$link = get_permalink($product->id);
$label = apply_filters('external_add_to_cart_text', __('Read More', 'woocommerce'));
$label = apply_filters( 'external_add_to_cart_text', __('Read More', 'woocommerce') );
break;
default :
$link = esc_url( $product->add_to_cart_url() );
$label = apply_filters('add_to_cart_text', __('Add to cart', 'woocommerce'));
$link = apply_filters( 'add_to_cart_url', esc_url( $product->add_to_cart_url() ), $product );
$label = apply_filters( 'add_to_cart_text', __('Add to cart', 'woocommerce'), $product );
break;
}