WP Simple Pay: Stripe Checkout - Subscription Confirmation

Ensure Customer Subscriptions are available in the payment confirmation data.

Simple Chained Products

Enables a chained products setting on the Download product edit screen for automatically adding "chained" products…

Conditional Gateway Fees

Do not charge gateway fee to customer if the amount is over X

Disable Emojis

/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…

<10

Custom Countries

Illustrates how to add a custom list of countries

<10

Generate a virtual coupon when order is completed.

This snippet will generate a new virtual coupon for a coupon that you've enabled virtual coupon…

Disable PayPal for Multi-Item Checkout

Disables the PayPal gateway when the cart contains multiple items. PayPal disabled the ability to purchase…

How to change the store address country for all vendors

/** * Set the vendor's store country to us. */ function wcv_set_vendor_country() { if ( function_exists(…

Remove Subscriber from Segment

This snippet helps remove a push subscriber from a segment on the defined event.

Extra WordPress Filters in Pro (Do something with the age restriction display) | Display Eventbrite Events

Using this filter you can change the age restriction display. e.g. all_ages by default displays nothing,…

Blocks on templates

Setting a specific block on specific templates by default

1 47 48 49 50 51 129