About

Hey there! We're WC Vendors, the team behind the best WooCommerce multi vendor marketplace plugin.

You can find lots of code snippets on our profile here at WP Code that will enhance your marketplace with some of the less commonly asked for features we have generated installable code snippets for.

If you find a bug in one of these snippets please let us know via the support form on our site :)

And visit us if you're looking for a great multi vendor plugin for WooCommerce!

106 Snippets
10+ Favourites
20+ Downloads

Add custom page to the vendor dashboard

// Hook into the navigation add_filter( 'wcv_pro_dashboard_urls', 'add_test_page_nav', 9 ); function add_test_page_nav( $pages ){ $pages[ 'test_page'…

Opening booking resources editor in new tab

This snippet will open the booking resources editor in a new tab instead of opening it…

Add vat over the commission

This will add VAT value over the commission

Change label of CSV header, and removing others(Export Totals to CSV)

This snippet will change the label of CSV header, and remove the others(Export Totals to CSV)

Change the sold by link label to vendor's name

Change the sold by link label to vendor's name

Use Billing Address in Order Exports

By default the export order feature for the vendor dashboard users the customers shipping address. This…

Use Full Store Address in Ships From

By default the Ships From metadata displayed under the add to cart button only shows the…

Add Custom Taxonomy - Single Vendor Taxonomy

It'll only allow the vendor to select one custom taxonomy term at a time

Add Custom Taxonomy - Multiple Vendor Taxonomy

Allows the vendor to select multiple taxonomies

Add Custom Taxonomy to Woocommerce Single Product Page

add_action( 'woocommerce_product_meta_end', 'wcv_add_brands_single_product' ); function wcv_add_brands_single_product() { global $product; $taxonomy = 'wcv_brands'; // The custom taxonomy…

Min-Max Product Price (with decimal support)

Add minimum/maximum validation to your product's price - with decimal support

Elementor Store Headers

Gives support for Elementor on WC Vendor Headers

1 2 3 4 9