-1

I want to replace the word "De: " of all products, but I do not know where

Link to website

Element to replace

helgatheviking
  • 25,596
  • 11
  • 95
  • 152

1 Answers1

0

You can change the "From" text via the woocommerce_get_price_html_from_text filter.

You would do so, like this:

add_filter( 'woocommerce_get_price_html_from_text', 'so_43054760_price_html_from_text' );
function so_43054760_price_html_from_text( $text ){
    return __( 'whatever', 'your-plugin-textdomain' );
}

Keep in mind this is WooCommerce 3.0-specific code. I'm not sure it is back-compatible with WC 2.6.x.

helgatheviking
  • 25,596
  • 11
  • 95
  • 152