Force Minimum Password Length at Checkout

Force a minimum password length when a customer creates an account at checkout

Reverse variable pricing

Great for when you've added variable prices lowest to highest but want to show highest to…

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

Make All Users Vendors

/** * Make all new user registrations Vendors. */ add_filter( 'woocommerce_new_customer_data', 'wcv_woocommerce_new_user_data' ); function wcv_woocommerce_new_user_data( $data…

Set the ranges for Calendar View | Display Eventbrite Events

The following code snippet filters the valid ranges for the next/prev keys of the calendar views…

Switching between ftp_put and ftp_fput FTP upload methods in Store Exporter Deluxe

function custom_woo_ce_cron_export_ftp_switch() { // ftp_put or ftp_fput return 'ftp_fput'; } add_filter( 'woo_ce_cron_export_ftp_switch', 'custom_woo_ce_cron_export_ftp_switch' );

<10

WC Vendors Activate All Inactive Vendors

Activates all inactive Vendor Stores in a WC Vendors Marketplace. NOTE: To be ran once.

Menu Item image Animation on Hover

When you hover over a menu item, the will be an image which will slide behind…

<10

Defining Mailgun Mailer Constants

This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…

1 139 140 141 142 143 212