Best Multi Vendor Marketplace Plugin for WordPress › Forums › WC Marketplace › How to remove Sold-By Link
Tagged: Remove Sold-by link
- This topic has 6 replies, 2 voices, and was last updated 6 years, 5 months ago by
Ramamurthy Krishnan.
- AuthorPosts
- February 25, 2020 at 10:08 pm #108800
elpidaretail
ParticipantI want to show who is selling product on shop page but I don’t want my customer to see Vendor details by clicking on Vendor Name.
How I can remove Vendor link on shop product page and make it just as vendor name Text ? - February 26, 2020 at 11:56 am #108860
Ramamurthy Krishnan
KeymasterHi,
Please add the below code to your child theme’s functions.php file, if you are not using any child theme then please use code snippet plugin to add this code.
add_filter( 'wcfmmp_is_allow_sold_by_linked', 'cus_wcfmmp_is_allow_sold_by_linked' ); function cus_wcfmmp_is_allow_sold_by_linked() { return false; }Thanks,
- February 26, 2020 at 3:28 pm #108891
elpidaretail
ParticipantSuperb. It worked.
Thanks a lot. Is there any code guide which we can use to tweak other things ?
- February 27, 2020 at 9:26 pm #109060
elpidaretail
ParticipantAny suggestion ?
- February 28, 2020 at 12:14 pm #109172
Ramamurthy Krishnan
KeymasterHi,
You’re most welcome.
Can you please specify which others things you want to tweak?Thanks,
- February 28, 2020 at 7:21 pm #109213
elpidaretail
ParticipantOk, I will get back in separate ticket with requirement. I thought there would be some help documents.
Thanks a lot. - March 3, 2020 at 12:24 pm #109677
Ramamurthy Krishnan
KeymasterOk great.
- AuthorPosts
- The topic ‘How to remove Sold-By Link’ is closed to new replies.