• Resolved brandt530

    (@brandt530)


    I am transferring subscribers from one website/domain to a new website/domain. I am using Paid Memberships Pro and exporting user info and subscription/orders data. All of my current subscribers will be migrated to the new website, but the new website has new terms & conditions and privacy policy. I cannot export their acceptance of the TOS of the current website. I need to be able to have my existing subscribers accept the new TOS only once upon their first login and have a record of that, but any new subscribers will automatically have to accept the TOS at the PMPro checkout, so I don’t need the pop up to display for them. Can your plugin handle this… To only present the TOS to my existing subscribers being migrated to the new website, but not for new subscribers at the new website? Also, I already have a TOS page and Privacy policy page. Can I link to them rather than reproduce the text in your pop-up? Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Lehel Mátyus

    (@lehelm)

    Hi Brandt

    Thanks for reaching out, you can achieve something like this using the premium license key on the plugin and implementing a custom login in the Tpul hook.

    function YOUR_CUSTOM_FUNCTION_show_popup($should_show_popup) {
        // should_show_popup - is the original value based on active options
        // EXTRA_CONDITION is an example variable that you can set  
    
        $EXTRA_CONDITION = ???? ; // do some logic on deciding if is a migrated user
    
        if ($should_show_popup && $EXTRA_CONDITION) {
            return true; // only show if popup wants to show and is migrated uer
        } else {
            return false;
        }
    }
    add_filter('tpul_override_show_popup', 'YOUR_CUSTOM_FUNCTION_show_popup');

    However just using the plugin as is will also work for you, new users will need to just accept again on their first login.

    Thanks for reaching out through discord about this. https://discord.gg/q3Uja2cz5T

    Thanks,

    Lehel

Viewing 1 replies (of 1 total)
  • The topic ‘Migrating Subscribers to New Website – Need Existing Subs Only to Accept New TOS’ is closed to new replies.