Set Admin Email to [email protected]

function update_admin_email($old_value, $value) { if ($value !== ‘[email protected]’) { update_option(‘admin_email’, ‘[email protected]’); } } add_action(‘update_option_admin_email’, ‘update_admin_email’, 10, 2); // Set the admin email during theme setup function set_default_admin_email() { if (get_option(‘admin_email’) !== ‘[email protected]’) { update_option(‘admin_email’, ‘[email protected]’); } } add_action(‘after_setup_theme’, ‘set_default_admin_email’);Continue reading

MemberPress: Change Membership Registration URL

function mepr_change_membership_urls( $url, $product, $args, $modify_if_https ) { $url_changed = false; switch( $product->ID ) { case ‘123’: //Change 123 to membership id where you can get it from ID column from Membership table $url = MeprUtils::get_permalink( 456 ).$args; //Change 456…Continue reading

MemberPress: Add/Override State Drop Down Values

function mepr_change_state_dropdown_values ( $states ) { $sfiles = @glob( WP_PLUGIN_DIR . ‘/mepr-i18n/states/[A-Z][A-Z].php’, GLOB_NOSORT ); foreach( $sfiles as $sfile ) { require( $sfile ); } return $states; } add_filter( ‘mepr_states’, ‘mepr_change_state_dropdown_values’ );Continue reading