Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
rdsbaker
great..many thanks!
No problem ;)
Thanks,
Anne
Re: Sheffield Blue Template Support Thread
Hi Anne
I am working with this template on our test site before we move to the live site http://zctest.dezertdezinez.com/inde...ain_page=index
I am looking to find out where to look for the colors and how to change them for the drop downs on the product page when viewing on the tablet .. right now the background of the drop downs are white with white font .. I would either like to change the background or the font colors ...
Thank you for any help ..
Debbie
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Debbie2014
Hi Anne
I am working with this template on our test site before we move to the live site
http://zctest.dezertdezinez.com/inde...ain_page=index
I am looking to find out where to look for the colors and how to change them for the drop downs on the product page when viewing on the tablet .. right now the background of the drop downs are white with white font .. I would either like to change the background or the font colors ...
Thank you for any help ..
Debbie
This is actually a question for the responsive sheffield blue thread. You can use firebug and make your edits to the responsive.css file.
Thanks,
Anne
Re: Sheffield Blue Template Support Thread
Sorry about that I thought I was in the right one and I got it fixed too than thank you
Quote:
Originally Posted by
picaflor-azul
This is actually a question for the responsive sheffield blue thread. You can use firebug and make your edits to the responsive.css file.
Thanks,
Anne
Re: Sheffield Blue Template Support Thread
Hi Anne,
Is there a way to have the Contact Us section of the mega menu to stay visible after you click on a field but without having to keep your mouse on it?
Here's the website: http://www.offroadrescuenetwork.com
The website is in frenche so the Contact Us section is "Nous joindre".
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
AlexThibo
Hi Anne,
Is there a way to have the Contact Us section of the mega menu to stay visible after you click on a field but without having to keep your mouse on it?
Here's the website:
http://www.offroadrescuenetwork.com
The website is in frenche so the Contact Us section is "Nous joindre".
Probably. Have you searched google for an answer? Since I don't know the answer off the top of my head, this is what I would do.
Thanks,
Anne
Re: Sheffield Blue Template Support Thread
Ok, thanks. I'll see if I can find something.
Re: Sheffield Blue Template Support Thread
Hi,
first of all thanks for an awesome template, im new to zen-cart but have read all your readme instructions (very clear, thanks) and the whole 50 pages of support in this template forum.
The result is this by now: www.kite-addi***ction.es/tienda please delete the *
As you can see i have two languages, english (template original) and spanish.
I want to be able to set different text in the currencies and languages in the header (i have located the file in includes / templates / sheffield_blue / sideboxes / tpl_languages_header.php and tpl_currencies_header.php).
The text there is in english, i want it to be able to be a different one when spanish language is selected. Usually i have translated everything with your wonderful instructions, but here the file is in the templates folder and not in the english or spanish folder under the languages folder, and im scared to move it.
Kind regards,
David
David
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Hi,
first of all thanks for an awesome template, im new to zen-cart but have read all your readme instructions (very clear, thanks) and the whole 50 pages of support in this template forum.
The result is this by now:
www.kite-addi***ction.es/tienda please delete the *
As you can see i have two languages, english (template original) and spanish.
I want to be able to set different text in the currencies and languages in the header (i have located the file in includes / templates / sheffield_blue / sideboxes / tpl_languages_header.php and tpl_currencies_header.php).
The text there is in english, i want it to be able to be a different one when spanish language is selected. Usually i have translated everything with your wonderful instructions, but here the file is in the templates folder and not in the english or spanish folder under the languages folder, and im scared to move it.
Kind regards,
David
David
So, in this situation, the two files described are where they are because of the purpose they serve, they are sidebox templates. What you may have discovered is that the template file has information that is written specifically in english inside the template. (I would find that unusual for Anne's templates, but it could happen.). If you have found in those files the exact text you are wanting to change is being displayed, printed, echo'd, between php closers, then it should be replaced with a constant and the constant defined in the languages directory (english as well as other desired language). So if the "text" seen in either of the two files is all capital letters, (and the on screen result is not) then the text is defined in one of the language files and needs to be defined in your chosen language.
I'm sure anne or someone that has ready access to the files could have summarized the steps better, but honestly so could I have if advised exactly what text was to be changed.
Are you wanting the word currencies changed, languages? Or the items in the languages list, etc?
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Hi,
first of all thanks for an awesome template, im new to zen-cart but have read all your readme instructions (very clear, thanks) and the whole 50 pages of support in this template forum.
The result is this by now:
www.kite-addi***ction.es/tienda please delete the *
As you can see i have two languages, english (template original) and spanish.
I want to be able to set different text in the currencies and languages in the header (i have located the file in includes / templates / sheffield_blue / sideboxes / tpl_languages_header.php and tpl_currencies_header.php).
The text there is in english, i want it to be able to be a different one when spanish language is selected. Usually i have translated everything with your wonderful instructions, but here the file is in the templates folder and not in the english or spanish folder under the languages folder, and im scared to move it.
Kind regards,
David
David
Yes, this is an old bug that has been documented and is on the list for a future update.
In the tpl_currencies_header.php file, you can change:
Code:
Currencies:
to
Code:
<?php echo HEADER_TITLE_CURRENCIES; ?>
and in the tpl_languages_header.php file, change:
Code:
Languages:
to:
Code:
<?php echo HEADER_TITLE_LANGUAGES; ?>
Then add the define statements for the constants in the includes/languages/english/extra_definitions/sheffield_blue/headermenu.php file:
Code:
define('HEADER_TITLE_CURRENCIES','Currencies');
define('HEADER_TITLE_LANGUAGES','Languages');
Thanks,
Anne