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!

170 Snippets
10+ Favourites
20+ Downloads

Gravity Forms Hook — BOL Upload Triggers Capture

When the vendor uploads the Bill of Lading, the following snippet links the submission to the…

Custom Field to Vendor Settings Page

/* WC Vendors Pro - My Custom Field */ function store_bank_details( ){ if ( class_exists( 'WCVendors_Pro'…

Recent products table

if ( ! function_exists( 'wcv_remove_recent_product_table_columns' ) ) { /** * Remove columns from Recent Products table…

Display Vendor Policies on the Vendor Shop Page

By default, we only show the Vendor Policies on the Single Product Page. Please use the…

Use Full Store Address in Ships From

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

Add a video field to the sign-up form

// Add the video field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_video_uploader'); function wcv_video_uploader( ){ //…

Force product type for all products

// Disable the product type drop down. add_filter('wcv_disable_product_type', function() { return true; } ); /** *…

How to Style the WC Vendors Login Form

Learn how to style your WC Vendors login form with custom CSS for a clean, modern,…

Product Expiry For Woo

Supports the Expiry for Woocommerce plugin - WC Vendor

Reorder dashboard navigation

Bring the order page to the front of the product page

Remove Method label

add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_shipping_method_title', 10, 2 ); function remove_shipping_method_title( $label, $method ){ $new_label = ''; if (…

1 5 6 7 8 9 10