• While sandboxing my site, I noticed that every time a member tried to log in to a subdomain, they were redirected to the member levels page and asked to create a site. (In my site, one person pays for a subdomain to be created and then people sign up for their specific subdomain for free)

    The bit of code that’s doing this is in the root PHP file of the Paid Memberships Pro plugin, and is as follows:

    elseif($wpdb->get_var("SELECT membership_id FROM $wpdb->pmpro_memberships_users WHERE status = 'active' AND user_id = '" . $user->ID . "' LIMIT 1"))
    		{
    			//if logged in and a member, send to wherever they were going
    		}
    		else
    		{
    			//not a member, send to subscription page
    			$redirect_to = pmpro_url("levels");
    		}

    In essence, because my members are ONLY members of the subdomain, and not “members” as defined by the plugin, they are being asked to create a site and pay.

    What I’d like to do is replace the $redirect_to = pmpro_url("levels"); section with a redirect that would send the users to the subdomain they were signing into. I’ve tried replacing “pmppro_url()” with both “site_url()” and “network_site_url()” (among many others) and both send users back to the root domain upon signing in instead of to the subdomain.

    Thoughts on what other functions or variables I might be able to use? This is the only minor issue I’m having with this incredible plugin and I’m sure there has to be a fairly simple solution.

    Thanks!

    -Nick

    EDIT: Just for additional information, part of the problem, I believe, is that the plugin is only activated on the root domain, NOT THE SUBDOMAINS, so any attempt to use the standard hooks like “get_network_url” or the like are most likely pulling from the apparent directory of the plugin. I need it to recognize the referring site and send the users back there upon login.

    http://wordpress.org/extend/plugins/paid-memberships-pro/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fixing the redirect in PMP with PMP Network?’ is closed to new replies.