Hi Dr. Byte,
Thanks for the help. But I am running into the same problem as before. Here is what is happening:
1. In my login link I have http://www.meaningfulaccents.com/ind...om_event=login
2. In my My Account link I have
http://www.meaningfulaccents.com/ind...om_event=login
however the only time the from_event parameter ever gets passed over to tpl_login_default.php is when I click on login.
I have this in my tpl_login_default.php
Code:
$user_action = $_GET['from_event'];
if ($user_action == 'login') {
echo 'Create New Account?';
}
else {
echo HEADING_NEW_CUSTOMER_SPLIT; }
it should trigger whether I click login or my account, but that is not the case. for some reason when I click my account link it drops the parameter. What is going on?