Re: Cold Steel Template Support Thread
In an attempt to change the appearance of the Products Quantity Discounts table within the products info page, I added this to the products_info.css :
Quote:
#qtyDiscountsOffPrice {
border: 1px solid #000000;
background: #f0f8ff;
margin: 0.2em;
padding: 0.5em 0.5em;
text-align: center;
}
and in tpl_modules_products_qantity_discounts.php changed lines 17 and 30 to read <table id="qtyDiscountsOffPrice">
I am getting the desired effect in FF and IE8, however, this does not work in Chrome. Why is this so? :shocking:
Link to the page with quantity discount.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
frank18
In an attempt to change the appearance of the Products Quantity Discounts table within the products info page, I added this to the products_info.css :
and in tpl_modules_products_qantity_discounts.php changed lines 17 and 30 to read <table id="qtyDiscountsOffPrice">
I am getting the desired effect in FF and IE8, however, this does not work in Chrome. Why is this so? :shocking:
Link to the page with quantity discount.
Looks the same when viewing in
Chrome, Opera, Safari, FF and IE7/8
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
Looks the same when viewing in
Chrome, Opera, Safari, FF and IE7/8
Clearing the cache and reloading the browser did help :blush:
Re: Cold Steel Template Support Thread
I am fairly new to Zen Cart, and we've been using another template, which is live at http://www.Kelownaspiceandtea.com/ and I want to switch to Cold Steel. I've been playing with it and really like it!
I have successfully installed your theme and can easily switch between our default theme and Cold Steel.
We're using Zen Cart v.1.3.9h and I have just a couple of issues. I think I can sort most problems with a bit of searching and experimentation, but need your help on this one.
I'm a bit stumped with some errant visible text e.g. on the customer log-in page, these phrases (below) appear and I need to alter them or make them go away altogether. They appear in tables or in white space in locations where I might expect to be able to customize the content and I did search for the text strings and found them, but when I change the texts below, the page fails.
BILLING_INFO_TEXT
RETURN_CUSTOMER_TEXT
SHOP_CONFIDENCE_TEXT
HEADING_CUSTOMER_SERVICE
How do I amend the phrases in such a way so as the page still works?
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
sunnyokanagan
I am fairly new to Zen Cart, and we've been using another template, which is live at
http://www.Kelownaspiceandtea.com/ and I want to switch to Cold Steel. I've been playing with it and really like it!
I have successfully installed your theme and can easily switch between our default theme and Cold Steel.
We're using Zen Cart v.1.3.9h and I have just a couple of issues. I think I can sort most problems with a bit of searching and experimentation, but need your help on this one.
I'm a bit stumped with some errant visible text e.g. on the customer log-in page, these phrases (below) appear and I need to alter them or make them go away altogether. They appear in tables or in white space in locations where I might expect to be able to customize the content and I did search for the text strings and found them, but when I change the texts below, the page fails.
BILLING_INFO_TEXT
RETURN_CUSTOMER_TEXT
SHOP_CONFIDENCE_TEXT
HEADING_CUSTOMER_SERVICE
How do I amend the phrases in such a way so as the page still works?
check
includes/languages/cold_steel/engish.php
and/or
includes/languages/english/cold_steel/login.php
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
check
includes/languages/cold_steel/engish.php
and/or
includes/languages/english/cold_steel/login.php
Thank you for your very speedy reply!
It appears to be in tpl_login_default.php like this example:
Line #110 : <h3 class="AssuranceHeader"><?php echo HEADING_SHOP_CONFIDENCE; ?></h3>
Line #113 : <?php echo SHOP_CONFIDENCE_TEXT; ?>
But I find when I change anything there, the login page fails. Perhaps I am not editing those lines correctly. If I wish to say something other than SHOP_CONFIDENCE_TEXT, which instance do I alter?
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
sunnyokanagan
Thank you for your very speedy reply!
It appears to be in tpl_login_default.php like this example:
Line #110 : <h3 class="AssuranceHeader"><?php echo HEADING_SHOP_CONFIDENCE; ?></h3>
Line #113 : <?php echo SHOP_CONFIDENCE_TEXT; ?>
But I find when I change anything there, the login page fails. Perhaps I am not editing those lines correctly. If I wish to say something other than SHOP_CONFIDENCE_TEXT, which instance do I alter?
DO NOT EDIT tpl_login_default.php
You will find the necessary definitions to edit in
includes/languages/cold_steel/engish.php
and/or
includes/languages/english/cold_steel/login.php
the define statements are as follows
define('HEADING_SHOP_CONFIDENCE', 'Shop With Confidence');
define('SHOP_CONFIDENCE_TEXT', '<h4><strong>We value your privacy...</strong></h4><br />Your personal information is strictly confidential and only shared with shippers and payment processors as needed.<br />For more information read our <a href="' . zen_href_link(FILENAME_PRIVACY, '', 'SSL') . '">Privacy policy</a>.');
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
DO NOT EDIT tpl_login_default.php
You will find the necessary definitions to edit in
includes/languages/cold_steel/engish.php
and/or
includes/languages/english/cold_steel/login.php
Aha! This may be my problem. Cold Steel resides in
/store/includes/includes/languages/english/cold_steel
and neither the english.php nor login.php contains the definitions we are discussing.
Should I delete all Cold Steel files and folders and re-install fresh under /store/includes/languages/english/ ? Will I still be able to edit themes to my other two default templates?
What is your advice? Which is very much appreciated, by the way!
And should I CHMOD all permissions to 777?
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
sunnyokanagan
Aha! This may be my problem. Cold Steel resides in
/store/includes/includes/languages/english/cold_steel
and neither the english.php nor login.php contains the definitions we are discussing.
Should I delete all Cold Steel files and folders and re-install fresh under /store/includes/languages/english/ ? Will I still be able to edit themes to my other two default templates?
What is your advice? Which is very much appreciated, by the way!
And should I CHMOD all permissions to 777?
The folder structure of the cold steel template package is the same as Zen Cart, you can therefore upload/FTP the entire includes folder to where you have Zen Cart installed on your server.
You shouldn't need to change and file permissions.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
the define statements are as follows
define('HEADING_SHOP_CONFIDENCE', 'Shop With Confidence');
define('SHOP_CONFIDENCE_TEXT', '<h4><strong>We value your privacy...</strong></h4><br />Your personal information is strictly confidential and only shared with shippers and payment processors as needed.<br />For more information read our <a href="' . zen_href_link(FILENAME_PRIVACY, '', 'SSL') . '">Privacy policy</a>.');
Thank you for that, sir... I have inserted this definition into the english.php and the login.php files and it works!
Could you please provide the define statements for these few others?
BILLING_INFO_TEXT
RETURN_CUSTOMER_TEXT
HEADING_RETURNING_INFO
HEADING_CUSTOMER_SERVICE
Nearly there... thank you! :clap: