custom_role_based_redirection mods – patreon_mods

function custom_role_based_redirection() { // Check if not in the admin section and the user is on a page if (is_admin() || !is_page()) { return; } // Array defining the member roles $member_roles = [‘donator’, ‘silverdonator’, ‘golddonator’, ‘platinumdonator’, ‘titanium_donator’]; // Array…Continue reading

pmpro_admin_access_override administrator have access to every page

function pmpro_admin_access_override($hasaccess, $post, $user, $levels) { // Check if the current user has the ‘administrator’ role if (current_user_can(‘administrator’)) { // Grant access return true; } // Return the original access decision for non-admins return $hasaccess; } add_filter(‘pmpro_has_membership_access_filter’, ‘pmpro_admin_access_override’, 10, 4);Continue reading

Filter the settings of email frequency sent

/** * Filter the settings of email frequency sent when using the Extra Expiration Warning Emails Add On * https://www.paidmembershipspro.com/add-ons/extra-expiration-warning-emails-add-on/ * * Update the $settings array to your list of number of days => ”. * Read the Add On…Continue reading