Skip to content

Instantly share code, notes, and snippets.

@cartpauj
cartpauj / require-free-membership-coupon-code.php
Created January 27, 2025 18:52
Require a coupon code to signup for a Free MemberPress Membership (does not work with ReadyLaunch templates)
<?php
// CHANGE this array - should be a comma separated list of Membership ID's to apply the signup codes to
$GLOBALS['free_memberships_require_coupon'] = array(2734);
function make_coupon_mandatory_free_membership($errors) {
if(!isset($_POST['mepr_coupon_code']) || trim($_POST['mepr_coupon_code']) == '' && in_array($_POST['mepr_product_id'], $GLOBALS['free_memberships_require_coupon'])) {
$errors[] = 'Sorry, a coupon code is required.';
}
return $errors;
@cartpauj
cartpauj / memberpress-hide-protected-content-from-search-archives.php
Last active November 19, 2024 21:20
Hide protected content (posts, pages, cpts) from search and archive results
<?php
// Please note, this is not heavily tested, and may require some tweaking to get to work for your need
// This will also limit results found in the WP REST API as well
// If your result is large (50+ posts for example) - this is likely going to cause some server performance issues
// So I'd recommend using sparingly and remove the MeprRule::is_uri_locked(get_permalink($post) if you're not using any Custom URI Rules in MP
// If a search returns 10 results, but 8 of those are protected, then this will cause only 2 results to come back
// This could be problematic if you're paginating results, as some pages may have posts shown, and others may be completely blank
@cartpauj
cartpauj / nua-bypass-by-membership.php
Created June 13, 2023 14:07
Bypass New User Approve if certain Membership(s) is purchased in MemberPress
<?php
function nua_allow_user_if_membership($errors) {
$allowed_memberships = array(123,321,789,987); // CHANGE THIS
if(!is_user_logged_in()) {
if(in_array((int)$_POST['mepr_product_id'], $allowed_memberships)) {
$_REQUEST['action'] = 'createuser'; //Set this so "New User Approve" plugin will not limit the subscriber
}
}
@cartpauj
cartpauj / mp-elementor-html-alterations.php
Created May 17, 2023 15:35
Disable MP Elementor protection HTML alterations
<?php
// Copy lines 4-6 below into a plugin like Code Snippets (run on front-end only)
add_filter('mp_elementor_include_section_html', function() {
return false;
});
@cartpauj
cartpauj / prli-delay-message.php
Created August 9, 2022 20:25
Show a delay message when using Pretty Links Meta Refresh or Javascript redirect types with a delay
<?php
function plp_delay_message_code() {
?>
<p>Please wait... You will be redirected soon.</p>
<?php
}
add_action('prli-redirect-header', 'plp_delay_message_code');
@cartpauj
cartpauj / esaf-commission-user-joined-after-aff.php
Created May 14, 2021 13:04
Easy Affiliate - Pay higher commission if user signed up AFTER affiliate
<?php
add_filter('esaf_commission_percentages', function ($commission, $affiliate, $transaction) {
if($transaction) {
$user = get_user_by('email', $transaction->cust_email);
if($user && strtotime($user->user_registered) > strtotime($affiliate->user_registered)) {
$commission = array(30);
}
}
@cartpauj
cartpauj / mepr-hide-cancel-button-for-time.php
Created April 23, 2021 17:03
Hide cancel link in MP until user has been active for 3 months.
<?php
add_filter('mepr_custom_cancel_link', function($link, $sub) {
$time = strtotime($sub->created_at);
if(time() < strtotime("+3 months", $time)) {
return '';
}
return $link;
}, 10, 2);
@cartpauj
cartpauj / disable-math-on-login.php
Created February 9, 2021 16:30
Disable Math Captcha on Login Page - MemberPress
<?php
// Disables math captcha on login page
function kill_math_on_login() {
remove_all_actions('mepr-forgot-password-form');
remove_all_actions('mepr-login-form-before-submit');
remove_all_filters('mepr-validate-forgot-password');
remove_all_filters('mepr-validate-login');
}
add_action('plugins_loaded', 'kill_math_on_login');
@cartpauj
cartpauj / mepr-force-vat-type-business.php
Created February 5, 2021 15:29
Force MemberPress user VAT type to business
<?php
function force_business_vat_type($user) {
update_user_meta($user->ID, 'mepr_vat_customer_type', 'business');
}
add_action('mepr-signup-user-loaded', 'force_business_vat_type');
@cartpauj
cartpauj / mepr-disable-password-lost-changed-email.php
Last active August 25, 2021 15:14
Disable MemberPress Password Lost/Changed email
<?php
// Copy the lines below this one into a plugin like Code Snippets (run everywhere type)
function disable_admin_pw_changed_email_memberpress($recipients, $subject, $message, $headers) {
if(strpos($subject, 'Password Lost/Changed') !== false) {
$recipients = array(); // no recipients
}
return $recipients;
}
add_filter('mepr-wp-mail-recipients', 'disable_admin_pw_changed_email_memberpress', 11, 4);