Fix for Terms and Conditions....
I have the answer for you, but it may take a little doing....
First, my complaint....the X-Cart makers are pretty shysty for not making that available for the non-php person.
So here it goes...
X-Cart works on a Label (lbl) and Text (txt) basis on much of the site. If you find your 'conditions.tpl', you must of come across that damn *Place Terms and Conditions Here* statement. A txt_whatever line should have went there for conditions.tpl to pull in and display.
First, don't actually put Terms and conditions there. That is to say, don't actually cut and paste something there. This part of the programming needs a 'txt_terms' line to refer to, as it does for the lbl_terms_n_conditions' line you see a little bit below in the same conditions.tpl file.
Anyway, this is probably what you have already:
{capture name=dialog}
{*place terms and conditions here*}
this is what the line should look like:
{capture name=dialog}
{$lng.txt_terms}
Now, go into the Languages menu in the admin menu. Select your language, select Text in topics, then go to the bottom and 'Add New Entry'
In the first Box....txt_terms
In the second box .... Terms and Conditions
In the third box....cut and paste your terms and conditions. Be advised, HTML codes work fine here.
X-Cart people could have done this as they did for the other pages, but looks like it's a reason to pay for Tech support if you ask me.
I think I covered what it takes to fix that....let me know if I missed anything.
|