add woocommerce_get_variation_price_html filter

This commit is contained in:
Kathy Darling 2013-07-26 09:47:23 -04:00
parent e7bd988470
commit bdcb4cf169
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ class WC_Product_Variation extends WC_Product {
$price = apply_filters( 'woocommerce_variation_empty_price_html', '', $this ); $price = apply_filters( 'woocommerce_variation_empty_price_html', '', $this );
} }
return $price; return apply_filters( 'woocommerce_get_variation_price_html', $price, $this );
} }
/** /**