Test

Louis Agnello
<10

Show Terms By Default

Show the terms of agreement open on the checkout page by default

Auto Complete Virtual Orders - Not EFT

Auto complete virtual orders that are virtual but NOT downloadable, excluding EFT orders

Prevent Wholesale Customer to Add Product to the Cart If The Product is Low on Stock

// Prevent wholesale customer to add to cart if the product is low on stock add_filter('woocommerce_is_purchasable',…

WWOF v3: Force "View Cart" link in the success side-popup to open in the same tab

/** * WWOF v3: Force "View Cart" link in the success side-popup to open in the…

Retroactive Lifetime Licenses

Mark all existing licenses for an EDD product as lifetime licenses.

Vendor Canonical Links

Makes the vendor canonical links go to yoursite/vendor/vendor-name instead of yoursite/vendor.

Remove Gift Aid "Title" Field From Donation Forms

add_filter( 'charitable_default_donation_fields', function( $fields ) { if ( isset( $fields['title'] ) ) { // Remove from…

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…

1 86 87 88 89 90 218