change stripe_default_button_text and color
function my_pmpro_change_default_button_text() { ?>Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
function my_pmpro_change_default_button_text() { ?>Continue reading
function hide_discount_code_field_for_specific_levels($show) { global $pmpro_level; if( in_array( $pmpro_level->id, array(1,2,3,4,5,6) ) ) { $show = false; } return $show; } add_filter(‘pmpro_show_discount_code’, ‘hide_discount_code_field_for_specific_levels’);Continue reading
/** * Filter to exclude Level 1 members from PMPro Members List * * @param string $sql The original SQL query for fetching members. * @return string The modified SQL query excluding Level 1 members. */ function cody_exclude_level_1_from_pmpro_members_list($sql) { //…Continue reading
function check_user_role_and_redirect() { // Check if the user is logged in if ( is_user_logged_in() ) { // Get current user info $user = wp_get_current_user(); // Define the URLs for redirection $facebook_group_url = ‘https://www.facebook.com/groups/fs22westend64x’; $another_page_url = ‘https://levismodding.co.uk/membership-account/membership-checkout/?level=3’; // Check user roles…Continue reading
/** * Redirect Members to a Unique Confirmation Page Based on Membership Level * * title: Redirect Members to a Unique Confirmation Page Based on Membership Level * layout: snippet * collection: checkout * category: confirmation * * You can…Continue reading
function my_custom_pmpro_level_cost_spacing() { ?>Continue reading
function my_custom_pmpro_checkout_fields_spacing() { ?>Continue reading
function remove_unwanted_user_contact_methods($contactmethods) { $fields_to_remove = [ ‘facebook’, ‘twitter’, ‘linkedin’, ‘dribbble’, ‘instagram’, ‘pinterest’, ‘wordpress’, ‘github’, ‘medium’, ‘youtube’, ‘vimeo’, ‘vkontakte’, ‘odnoklassniki’, ‘tiktok’, ‘mastodon’, ‘user_url’ // Also remove the website field ]; foreach ($fields_to_remove as $field) { unset($contactmethods[$field]); } return $contactmethods; } add_filter(‘user_contactmethods’,…Continue reading
function custom_admin_colors_on_user_profiles() { $screen = get_current_screen(); if ($screen->base === ‘profile’) { add_action(‘admin_head’, function() { echo ‘ ‘; }); } } add_action(‘current_screen’, ‘custom_admin_colors_on_user_profiles’);Continue reading
if (!function_exists(‘capture_user_details_before_update’)) { add_action(‘personal_options_update’, ‘capture_user_details_before_update’); add_action(‘edit_user_profile_update’, ‘capture_user_details_before_update’); function capture_user_details_before_update($user_id) { error_log(‘Capturing user details before update for user ID: ‘ . $user_id); // Capturing user details without checking if current user is admin $user_info = get_userdata($user_id); // Capture current details $details…Continue reading