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

Remove address from the header

Remove address block from the header

Add an image filed to the sign up form

// Add the image field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_image_uploader'); function wcv_image_uploader( ){ if…

Disable sold by link on checkout page

/** * Disable the sold by link on the checkout page */ add_filter('wcvendors_sold_by_link', 'wcv_disable_checkout_sold_by_link', 10, 2);…

How to Style the WC Vendors Signup Form

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

AIO Dashboard

Suport for AIO SEO dashboard

Add vendor id and name to CSV commissions export

Add vendor id and name to CSV commissions export

Remove the "Apply to become a vendor" checkbox from the WooCommerce default customer signup form

/** * Remove WC Vendors "Apply to become a vendor" checkbox from the WooCommerce default customer…

Remove table from dashboard

if ( ! function_exists( 'wcv_remove_recent_order_table_columns' ) ) { /** * Remove columns from Recent Orders table…

Force downloadable checkbox to be checked on the vendor product editor

/** * Force downloadable checkbox to be checked using MutationObserver */ function force_downloadable_checkbox_checked() { ?>

Use Billing Address in Order Exports

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

Add an audio field to the sign up form

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

1 2 3 4 10