I would like to change the landing pages for certain actions but don't see where to do it. 1. after successful log-in 2. after log-out where can I change these values?
If user logs-in via amember/login.php and he has one active subscription, he will be redirected to Product URL specified in product settings. In any other case, user will be redirected to amember/member.php (template member.html) Logout redirect URL can be configured at aMember Cp -> Setup -> php_include.
It would be nice if you could choose a sign-up landing page for each product that's different from the Product URL. That way you could send new subscribers to a page with information they need to know. Another approach would be to allow each product to have a different agreement page.
The difference (at least in my case) is that I have information I would like the new signups to see, but I don't want subscribers to see EVERY time they log in. Only the FIRST time.
aMember currently has no way to do this. It can be implemented as custom PHP script (outside of aMember): if cookie named for example "_product_12_visited" is not set, your special page will be displayed else (if cookie is set) user will be redirected to your actual members area for product #12 (# is for example) Then you just set Product URL to url of this PHP script and you will get what you want.