Viewing 10 replies - 1 through 10 (of 10 total)
  • pazis

    (@pazis)

    I don’t have “New User Approve” installed, and I have the same issue.

    Great H-master

    (@great-h-master)

    Hello. Thank you both for using Paid Memberships Pro. This sometimes occurs if the PMPro pages are not set up correctly. Recheck your PMPro pages to confirm the checkout page is correct. Also, this might occur if the checkout page is locked down to a level. Check these two things and let us know what happens. Hope this helps. Thanks again.

    Thread Starter wpshiran

    (@wpshiran)

    Great H-master,

    Thanks for the reply. I have double checked everything and seems all in place. When I disable new user approve plugin. confirmation page works again.

    Any idea?

    Jessica Oros

    (@jessica-o)

    You can solve this by creating a custom confirmation page and redirecting to that on confirmation instead using the pmpro_confirmation_url filter. You can see an example of this in the addon packages addon here: https://github.com/strangerstudios/pmpro-addon-packages/blob/master/pmpro-addon-packages.php#L408-L416

    Thread Starter wpshiran

    (@wpshiran)

    I have updated “pmpro_confirmation_url” with “members_confirmation.php”. but still drags me to home page

    Great H-master

    (@great-h-master)

    Hello wpshiran,
    The pmpro_confirmation_url filter works like a standard WordPress filter. You can specify your own custom function and have it run when pmpro_confirmation_url() is called, modifying the output. Did you specify the file custom file or did you create a function to use with the filter?

    Hi Great H-master. Can you please elaborate on this last post. I’m having the same problem. However, I do not how to specify a custom function and modify the output.

    Thank you.

    Hey kmelen,

    You can use the pmpro_confirmation_url filter like this to return a specific URL:

    function my_pmpro_confirmation_url($url, $user_id, $level_id) {
        return home_url('confirmation2');   //redirects to yoursite.com/confirmation2, change this to whatever you want
    }
    add_filter('pmpro_confirmation_url', 'my_pmpro_confirmation_url', 10, 3);

    You’ll want to add that code to your functions.php file or a customizations plugin.

    If you need further help, please consider becoming a PMPro member for our member support forums.

    Hope that clears things up!

    Where do I find this New User Approve plugin?

    Thanks
    John

    New User Approve is not an addon specifically related to PMPro. You can find it by searching for it in the WordPress plugin repository but I’m not too familiar with it.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘New User Approve Plugin’ is closed to new replies.