Here I am again. Have some other questions left. I'm using 3 different languages at this moment (I'm still on the trial version by the way). I want to provide different memberships in different languages. Let's say in the English page: Free Membership Bronze Silver Gold In French: Abonnement gratuit Bronze Argent Or You got the point I think. And the second question: Is this also possible in the profile page? (member.php) Thanks in advance.
I think you will need to create 3 new products for the new language, with the same price group, and then on the french landing page link to the signup page using the signup group URL so the 3 french products only are displayed. David
Sorry to bother you guys again, but I can't seem to find how to get the session for the admin id. The site I'm working on has a separate admin panel. I would like to protect that folder, so only the admin (me) can access it. I don't want to login twice, one for amember admin and one for my site admin. How can I achieve this? Thanks
Is your separate admin panel in php as well? If it does not have any other protection set currently, you can add this code to the top of your other Control panel php files: PHP: <? include "/path/to/amember/config.inc.php";include "/path/to/amember/admin/login.inc.php";
You're a genius Alexander. I was thinking about the solution erwinvdb provided, but this is a much better solution. Thanks a lot.