I did some digging and realized where I was going wrong. I had thought there were set variables for some config items, but there aren't. You have to define them in the template. So, for instance, to get my support email address to show up in my privacy statement, I had to do the following.
I had to edit x-cartdir/skin1/help/business.tpl. I changed the following line:
Quote:
{$lng.txt_privacy_statement}
|
to
Quote:
{$lng.txt_privacy_statement|substitute:"support":$ config.Company.support_department}
|
Then in the Language Editor for txt_privacy_statement, I placed the variable {{support}} wherever I want the email address to appear. Whatever you put in the quotes after substitute in the template, you have to put between double curly brackets in the language variable.
I answered my own question in case anyone else is ever looking for the same info. I hope it helps someone.
Jill
