Search results for: admin

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;…

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 (…

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']…

Add order status to commissions table

/** * Add order status to commissions table * * @param Array $columns array stored column…

Add a custom column to Commission table

/** * Add custom columns label * * @param Array $columns array stored column names *…

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…

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() { ?>

Redirecting Vendors to Vendor Dashboard on Login

Snippet To Redirect Vendors to their Dashboard on login

Prevent Publishing Posts with Broken Internal Links

Checks all internal links within post content before publishing. If a linked page or post returns…

Single Vendor Purchase

Limits the customers purchase to a single vendor

Product Expiry For Woo

Supports the Expiry for Woocommerce plugin - WC Vendor

Download Manager

Support for Download Manager for WC Vendor

AIO Dashboard

Suport for AIO SEO dashboard

1 29 30 31 32 33 137