Page 1 of 1

add text in different languages on the site

Posted: Sun Jun 12, 2011 11:01 pm
by fbjernebo
If I add text,

like this in the template:
<?php echo $text_1; ?>


and this in my language files:
$_['text_1'] = 'Currency';




wehy do I get this error then:
Undefined variable: text_1 in <b>/nfs/c03/h04/mnt/85977/domains/5thupperstreet.com/html/catalog/view/theme/default/template/common/header.tpl</b> on line <b>109</b> was not found on this server.


Should I add it somewhere else too?

Re: add text in different languages on the site

Posted: Sun Jun 12, 2011 11:03 pm
by Xsecrets
yes you need to add

Code: Select all

$this->data['text_1'] = $this->language->get('text_1'); 
to your controller file.