change the label “Sold by”
-
Hello, I was looking for information on how to change the label “Sold by” on the panel without having to affect the translation of the page product (where if I want it to continue showing as “sold by”)
I attach examples (sorry that this in Spanish, but I think it is understood)
Here if I want to change the label
https://ibb.co/pWHXCKtHere if I want it to be like this
https://ibb.co/6vV5hp1I already tried to do this, but it changes both on the panel and on the product page
add_filter( ‘wcfmmp_sold_by_label’, function( $sold_by_lable ) {
$sold_by_lable = ‘store’; // SET YOUR LABEL HERE
return $sold_by_lable;
}, 50);Thanks in advance.
The topic ‘change the label “Sold by”’ is closed to new replies.