Adding Custom Text
Posted: Wed Jan 13, 2010 8:46 am
I'm trying to add some custom text to the create account page at index.php?route=account/create
In the markup for catalog\view\theme\default\template\account\create.tpl, I add the line:
Then, in the language file at catalog\language\english\account\create.php, I add the line:
I then clear the system\cache folder except for index.html
I am receiving an error "Notice: Undefined variable: text_poboxnotice in C:\Inetpub\wwwroot\domainname\catalog\view\theme\default\template\account\create.tpl on line 46"
What else do I need to do to add some simple text to a page like this?
In the markup for catalog\view\theme\default\template\account\create.tpl, I add the line:
Code: Select all
<p><?php echo $text_poboxnotice; ?></p>
Code: Select all
$_['text_poboxnotice'] = 'Please note, we do not ship to PO Boxes.';
I am receiving an error "Notice: Undefined variable: text_poboxnotice in C:\Inetpub\wwwroot\domainname\catalog\view\theme\default\template\account\create.tpl on line 46"
What else do I need to do to add some simple text to a page like this?