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

Change TikTok purchase Event

When using the WPCode Conversion Pixels addon the event name used when a purchase is completed…

<10

MemberPress: Disable Emails for Specific Memberships

The code snippet will disable emails from being sent based on the text matching a membership…

MemberPress: Delete Transaction and User Account When Sub-Account is Removed

Adding this code snippet will automatically delete user account and related transaction when a sub-account is…

Remove Download Links

Remove download links from checkout page for all downloads.

Remove hyperlink from name field

add_filter('preprocess_comment', 'remove_links_from_comment_author'); function remove_links_from_comment_author($commentdata) { // Regular expression to detect hyperlinks $pattern = '/

Pete Tran
<10

Add user registration date

/* * Creating a column (it is also possible to remove some default ones) */ add_filter(…

MemberPress: Add Custom Field to Transactions Table

This code snippet will add data collected through a custom field on MemberPress registration forms to…

Set State Field To Us States Dropdown With Default

Change the "State" field into a "Province" field.

1 76 77 78 79 80 224