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…

Add order status to the commissions table export

/** * Add order status to the commissions table export */ function wcv_commission_export_columns( $columns ){ $columns['order_status']…

Custom Field to Vendor Settings Page

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

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 51 52 53 54 55 92