Merge pull request #393 from lucasstark/patch-1

Added woocommerce_cart_item_price_html filter
This commit is contained in:
Mike Jolley 2011-12-19 05:19:22 -08:00
commit da6c1ec527
1 changed files with 2 additions and 2 deletions

View File

@ -50,9 +50,9 @@ global $woocommerce;
<td class="product-price"><?php
if (get_option('woocommerce_display_cart_prices_excluding_tax')=='yes') :
echo woocommerce_price( $_product->get_price_excluding_tax() );
echo apply_filters('woocommerce_cart_item_price_html', woocommerce_price( $_product->get_price_excluding_tax() ), $values, $cart_item_key );
else :
echo woocommerce_price( $_product->get_price() );
echo apply_filters('woocommerce_cart_item_price_html', woocommerce_price( $_product->get_price() ), $values, $cart_item_key );
endif;
?></td>