This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); |
NewerOlder