The following code snippets allow you to change the sold by and ‘vendor’ text shown on the front end. Add the code to your theme’s functions.php file.
Change Sold by to Vendor in loop:
add_filter( 'wcv_loop_sold_by', 'custom_wcv_loop_sold_by'); function custom_wcv_loop_sold_by( $sold_by ) { $sold_by['title'] = 'Vendor: '; return $sold_by; }
Change Sold by: to Vendor: in single product pages:
add_filter( 'wcv_product_sold_by', 'custom_wcv_product_sold_by'); function custom_wcv_product_sold_by( $sold_by ) { $sold_by['title'] = 'Vendor: '; return $sold_by; }