Add post meta if content has WP Tasty

This snippet will check if your migrated content has WP Tasty in it and if it…

<10

Disable Widgets blocks

//Disable Widgets blocks add_filter( 'use_widgets_block_editor', '__return_false' );

MemberPress: Add Address Fields to Authorize.net

By default, the user’s address data collected through MemberPress registration forms are not sent to Authorize.net.…

MFP > Deploy Show & Get Data

add_action('acf/save_post', 'add_show_children'); function add_show_children($post_id) { if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id; if (!wp_is_post_revision($post_id) && 'show' ==…

MemberPress: Override ReadyLaunch Description For The Specific Payment Method on Click

The code snippet works on the ReadyLaunch™ registration pages only. This code snippet will override the…

MemberPress: Modify ReadyLaunch Invoice Amount Text to Remove Dot from Swedish Kron (kr.)

Note: Works with the ReadyLaunch template only. This code snippet removes the period (.) after the…

MemberPress: Restrict Signups for Northern Ireland-Based Users

This code snippet will restrict signups for Northern Ireland-based users on MemberPress registration pages. Additionally, it…

Facebook Pixel

Abby Herman
<10

MemberPress: Customize Unauthorized Message For Logged-Out Non-Authorised User and a Logged in Non-Authorised User

This snippet customizes the unauthorized message shown to users who attempt to access content protected by…

MemberPress: Unenrolled Course Shortcode

The code snippet registers a new shortcode: [mpcs-unenrolled-courses]. Adding this shortcode will display an unordered list…

1 120 121 122 123 124 156