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!

169 Snippets
10+ Favourites
20+ Downloads

Add CSS classes to apply for vendor label

/** * Add CSS class to apply for vendor label in a registration * * @param…

How to Set a Default Country on the Vendor Registration Form

Make sure to select the correct vendor registration page under WC Vendors > Settings > Registration…

Single Vendor Purchase

Limits the customers purchase to a single vendor

Add menu item to vendor dashboard

// Add this to your themes functions.php function add_menu_item( $pages ){ $pages[] = array( 'label' =>…

Move "Ships From" under the Product Meta, in the single product page template

Move "Ships From" under the Product Meta, in the single product page template by using 'product_ships_from'…

Change Method Label

add_filter( 'woocommerce_cart_shipping_method_full_label', 'wcv_override_vendor_shipping_label', 10, 2 ); function wcv_override_vendor_shipping_label( $label, $method ){ $label = 'Flat-rate'; // cost;…

Override the commission calculation priority order

/** * Given the provided list of vendor_ids in the vendors array, override the commission to…

Add vendor's details on customer's order email

Use this code snippet to add the following information to be included in the purchase email…

Add Custom Taxonomy - Single Vendor Taxonomy

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

Add Custom Settings Tab to Vendor Dashboard

// Add the tab to the tab nav add_filter( 'wcv_store_tabs', 'add_custom_tab_nav' ); function add_custom_tab_nav( $tabs ){…

Hide “Everywhere Else” on the countries dropdown

if ( ! function_exists( 'wcv_hide_everywhere_else' ) ) { /** * Hide the "Everywhere else" option in…

Custom Vendor Product Fields for HTS and Export Classification Number

Vendor Product Editor Backend Preview: https://snipboard.io/KszCjU.jpg Vendor Product Page Frontend Preview: https://snipboard.io/FNGhHt.jpg

1 2 3 4 5 6 10