Does anyone know how I can do that? Right now it's pointing to "http://www.MySite.com/amember/signup.php"
All of the templates are stored at amember\templates. You can modify the link to point to whatever you like on a page by page basis.
You are probably talking about the login page link? amember/templates/login.html and maybe the index page index.html David
I found the source. Looks like my programmer use the Membership Academy Amember Widget and changed the link from inside. Since this might help someone later on, here's what I did. I looked into the Membership Academy Amember Widget editor through Wordpress and found this below. $amember_widget_url = empty($options['amember_widget_url']) ? '/amember/' : $options['amember_widget_url']; $amember_widget_signup = empty($options['amember_widget_signup']) ? 'Sign up today!' : $options['amember_widget_signup']; $amember_widget_landing = empty($options['amember_widget_signup']) ? '/amember/signup.php' : $options['amember_widget_landing']; I simply replaced the /amember/signup.php code with the url I want it to link to. I did that twice since there were two of the /amember/signup.php code snippet. I have no idea if this is the correct and secured way of doing it but at least it's working.