• 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/pWHXCKt

    Here if I want it to be like this
    https://ibb.co/6vV5hp1

    I 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.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘change the label “Sold by”’ is closed to new replies.