Restored context for From: price string

This commit is contained in:
Claudio Sanches 2016-10-25 15:04:59 -02:00
parent 923790dbc7
commit ad349ad89c
1 changed files with 1 additions and 1 deletions

View File

@ -1048,7 +1048,7 @@ class WC_Product {
* @return string
*/
public function get_price_html_from_text() {
$from = '<span class="from">' . __( 'From:', 'woocommerce' ) . ' </span>';
$from = '<span class="from">' . _x( 'From:', 'From minimum price', 'woocommerce' ) . ' </span>';
return apply_filters( 'woocommerce_get_price_html_from_text', $from, $this );
}