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…
google-site-verification=DmMH19PL8EFWGPQtwtWbjnRSNF3y5JAmaLFwFBLNW4Q
google-site-verification=DmMH19PL8EFWGPQtwtWbjnRSNF3y5JAmaLFwFBLNW4Q
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
AIO Dashboard
Suport for AIO SEO dashboard
Download Manager
Support for Download Manager for WC Vendor
Product Expiry For Woo
Supports the Expiry for Woocommerce plugin - WC Vendor
Single Vendor Purchase
Limits the customers purchase to a single vendor
Redirecting Vendors to Vendor Dashboard on Login
Snippet To Redirect Vendors to their Dashboard on login
Custom fields to vendor settings page
add_action('wcvendors_settings_after_paypal', 'pv_add_custom_merchant_id_field'); function pv_add_custom_merchant_id_field() { ?>
Commissions as a fixed dollar amount, or fixed plus a percentage.
add_filter( 'wcv_commission_rate', 'my_wcv_custom_filter', 10, 3 ); function my_wcv_custom_filter( $commission, $product_id, $product_price ) { return WCV_Commission::get_commission_rate( $product_id…
Add a custom column to Commission table
/** * Add custom columns label * * @param Array $columns array stored column names *…
Add order status to commissions table
/** * Add order status to commissions table * * @param Array $columns array stored column…