MemberPress: Change Country VAT Rate for a Certain Membership

The code snippet will modify the VAT rate on registration for a specified membership only if…

WooCommerce number of archive products per page

Change WooCommerce Archive products number per page code snippet.

Tahbit Al Bashar
<10

Display Vendor-Submitted data as Restricted Content.

Automatically output content submitted by FES Vendors wrapped in the [edd_restrict] shortcode.

Untitled Snippet

increase upload memory

WP Simple Pay: Disable Webhook Failed Notification

Disable alert bubbles when webhook events are not received.

WP Simple Pay: Allow Customers to Exempt from Tax

Add a "Checkbox" field with the "Stripe Metadata Label" set to "Tax Exempt"

WP Simple Pay: Stripe Checkout - Subscription Confirmation

Ensure Customer Subscriptions are available in the payment confirmation data.

MemberPress: Modify "Back to Home" Text And Link on Thank You Page

This snippet changes the text and link of the "Back to Home" button or link (inside…

Send Donation Notification For Pending Offline Donations

Sends a notification to admin if the donation is pending AND it was made in offline…

Keep Emoticons

WordPress converts all emoticons to emoji. This small snippet prevents that, without removing emojis from your…

Set Minimum total purchase amount

add_action( 'woocommerce_check_cart_items', 'required_min_cart_subtotal_amount' ); function required_min_cart_subtotal_amount() { // HERE Set minimum cart total amount $minimum_amount =…

Current Year

function current_year_shortcode() { return date('Y'); } add_shortcode('year', 'current_year_shortcode');

<10
1 77 78 79 80 81 224