-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
Yes, this is an old bug that has been documented and is on the list for a future update.
All the more reason to take some time to read through the thread. Even with the best of intentions to meet or exceed standard ZC programming, sometimes something like that gets missed. But good that the solution was/is available.
-
Re: Sheffield Blue Template Support Thread
Still doesnt work, i changed exactly what you said and now there is no information on that part of the screen. You can take a look in the same url
-
Re: Sheffield Blue Template Support Thread
Worked it out, as the file was already with <?php
Should start like this: $content .= HEADER_TITLE_CURRENCIES . zen_draw_pull_down_menu('currency',......
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Worked it out, as the file was already with <?php
Should start like this: $content .= HEADER_TITLE_CURRENCIES . zen_draw_pull_down_menu('currency',......
Yes, having your syntax correct is important in php.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hello Anne,
Thank you for all the support you give this community!
I searched this thread but could not figure out how to word my search exactly right to see if this issue has been addressed already. You almost need sub threads for this thread.
My issue - On the product review page, it is displaying some html code garbage just before the picture. Everything else displays correct.
You can see an example here (Since this is live site I don't want it indexed so I added *** please remove that for the link - http://www.orings-onlin***e.net/inde...r_of_uploads=0
I narrowed it down to this file I believe - \includes\modules\pages\product_reviews\header_php
More specifically in this section I think as this seems to be the junk code displaying as text on the review page
Code:
$review_query_raw = $db->bindVars($review_query_raw, ':productsID', $_GET['products_id'], 'integer');
$review_query_raw = $db->bindVars($review_query_raw, ':languagesID', $_SESSION['languages_id'], 'integer');
$review = $db->Execute($review_query_raw);
$products_price = zen_get_products_display_price($review->fields['products_id']);
if (zen_not_null($review->fields['products_model'])) {
$products_name = $review->fields['products_name'] . '<br /><span class="smallText">[' . $review->fields['products_model'] . ']</span>';
} else {
$products_name = $review->fields['products_name'];
}
If you have any ideas on how to fix this please let me know. Thanks a bunch
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
eric47905
Hello Anne,
Thank you for all the support you give this community!
I searched this thread but could not figure out how to word my search exactly right to see if this issue has been addressed already. You almost need sub threads for this thread.
My issue - On the product review page, it is displaying some html code garbage just before the picture. Everything else displays correct.
You can see an example here (Since this is live site I don't want it indexed so I added *** please remove that for the link -
http://www.orings-onlin***e.net/inde...r_of_uploads=0
I narrowed it down to this file I believe - \includes\modules\pages\product_reviews\header_php
More specifically in this section I think as this seems to be the junk code displaying as text on the review page
Code:
$review_query_raw = $db->bindVars($review_query_raw, ':productsID', $_GET['products_id'], 'integer');
$review_query_raw = $db->bindVars($review_query_raw, ':languagesID', $_SESSION['languages_id'], 'integer');
$review = $db->Execute($review_query_raw);
$products_price = zen_get_products_display_price($review->fields['products_id']);
if (zen_not_null($review->fields['products_model'])) {
$products_name = $review->fields['products_name'] . '<br /><span class="smallText">[' . $review->fields['products_model'] . ']</span>';
} else {
$products_name = $review->fields['products_name'];
}
If you have any ideas on how to fix this please let me know. Thanks a bunch
This is possibly an issue related to zen lightbox. Check that thread. There is an issue that appears when looking at the reviews page with that plugin installed.
-
Re: Sheffield Blue Template Support Thread
I don't know how you found my post, but bravo! That was the issue and the fix is already posted over there. Thanks a bunch - Zen light box brought out the error from the core code displaying the model poorly, but he has a fix posted for it.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
Yes, having your syntax correct is important in php.
Thanks,
Anne
Yes, giving the correct answers is important when helping too, as not everybody knows php.
Thanks,
David
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
eric47905
I don't know how you found my post, but bravo! That was the issue and the fix is already posted over there. Thanks a bunch - Zen light box brought out the error from the core code displaying the model poorly, but he has a fix posted for it.
I am happy that you figured it out and got everything working ;)
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Yes, giving the correct answers is important when helping too, as not everybody knows php.
Thanks,
David
Ouch! Sorry for making a mistake, but I am far from perfect. I will admit that I did not have time to test out the code.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
No problem Anne, you help a lot.
How could i create a new sidebox for testimonials of customers? I saw someone did one and its nice to have it. Sorry but im only 1 week into zen-cart.
Regards,
David
-
Re: Sheffield Blue Template Support Thread
I installed an add-on for testimonials and is working now.
I now have another problem. If you check my site again, in the main page the 3 way header for new, specials and featured. How can i translate that for spanish also, im trying in the tpl_xxxx.php but no success as you can see hehe
Kind regards,
David
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
mc12345678
This is possibly an issue related to zen lightbox. Check that thread. There is an issue that appears when looking at the reviews page with that plugin installed.
FYI..
NOT a Zen Lightbox issue.. Zen Lightbox merely illuminates an issue with a poorly coded core Zen Cart file.. This has been reported as a Zen Cart bug and is supposed to be included as a fix in v1.5.2....
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
I am far from perfect.
Thanks,
Anne
But you're not far off it I bet?? :hug:
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
I installed an add-on for testimonials and is working now.
I now have another problem. If you check my site again, in the main page the 3 way header for new, specials and featured. How can i translate that for spanish also, im trying in the tpl_xxxx.php but no success as you can see hehe
Kind regards,
David
Generally speaking language things are in the languages directory, not the templates directory. Suggest learning how to use the built in ZC tool of Developer's tool kit. Search for the text you want changed and find the file(s) in which it is defined. Then for the new language modify it there as well. I thought those particular things were part of the "core" language file. Have you installed a language pack yet for your desired language? If this continues to be an issue, may I suggest. Beginning a new thread related to customizing a template with a new language.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
mc12345678
Generally speaking language things are in the languages directory, not the templates directory. Suggest learning how to use the built in ZC tool of Developer's tool kit. Search for the text you want changed and find the file(s) in which it is defined. Then for the new language modify it there as well. I thought those particular things were part of the "core" language file. Have you installed a language pack yet for your desired language? If this continues to be an issue, may I suggest. Beginning a new thread related to customizing a template with a new language.
Hi, ive located the file and its on the template folder not on the languages one. I have installed a language pack.
File is: includes/templates/sheffield_blue/templates/tpl_index_default.php
The line is like this:
case 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS':
echo '<span class="navThree moduleSpan"><a href="javascript:void(0)" rel="specialsDefault" class="navThree moduleBox">Specials</a></span>';
I have defined variables like this: define('HEADER_TITLE_SPECIAL1',''); in the includes/languages/spanish/extra_definitions/sheffield_blue/headermenu.php
and plan to sub it there, any ideas? dont know how to do it
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
I installed an add-on for testimonials and is working now.
I now have another problem. If you check my site again, in the main page the 3 way header for new, specials and featured. How can i translate that for spanish also, im trying in the tpl_xxxx.php but no success as you can see hehe
Kind regards,
David
If you want the template to work with languages other than english, you need to copy the template language files to your new language and make your translations.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
{QUOTE=pewe;1233874]But you're not far off it I bet?? :hug:[/QUOTE]
:blush: LOL! Thanks for the hug.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Hi, ive located the file and its on the template folder not on the languages one. I have installed a language pack.
File is: includes/templates/sheffield_blue/templates/tpl_index_default.php
The line is like this:
case 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS':
echo '<span class="navThree moduleSpan"><a href="javascript:void(0)" rel="specialsDefault" class="navThree moduleBox">Specials</a></span>';
I have defined variables like this: define('HEADER_TITLE_SPECIAL1',''); in the includes/languages/spanish/extra_definitions/sheffield_blue/headermenu.php
and plan to sub it there, any ideas? dont know how to do it
A lot going on here. This may already be addressed in this forum. I haven't looked. But to get PHP defined constants to appear they must be called by php code. Add to this, whatever php defined variable you use/reference, must exist in all languages that will be used or english will be used as the default. If the php defined variable doesn't exist in english at that point, then the variable name will be displayed. So recommendation is to find the english equivalent for what you are trying to get (specials in this example) and define the spanish version to have spanish text.
The code would look something like this:
Code:
'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS':
echo '<span class="navThree moduleSpan"><a href="javascript:void(0)" rel="specialsDefault" class="navThree moduleBox"><?php echo HEADER_TITLE_SPECIAL1; ?></a></span>';
But again, be sure HEADER_TITLE_SPECIAL1 is defined in english or use the english definition and modify the spanish one to reflect the spanish word(s) to be used.
-
Re: Sheffield Blue Template Support Thread
Hi ive done it but now the part where the text should appear its not there. I guess i have to define it in other location.
I have used now the BOX_HEADING_FEATURED_PRODUCTS variable but again it doesnt show anything. Any ideas?
My line:
echo '<span class="navOne moduleSpan"><a href="javascript:void(0)" rel="featuredProducts" class="navOne moduleBox"><?php echo BOX_HEADING_FEATURED_PRODUCTS; ?></a></span>';
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Hi ive done it but now the part where the text should appear its not there. I guess i have to define it in other location.
I have used now the BOX_HEADING_FEATURED_PRODUCTS variable but again it doesnt show anything. Any ideas?
My line:
echo '<span class="navOne moduleSpan"><a href="javascript:void(0)" rel="featuredProducts" class="navOne moduleBox"><?php echo BOX_HEADING_FEATURED_PRODUCTS; ?></a></span>';
Please read and follow the instructions in my reply to your post.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
mc12345678
A lot going on here. This may already be addressed in this forum. I haven't looked. But to get PHP defined constants to appear they must be called by php code. Add to this, whatever php defined variable you use/reference, must exist in all languages that will be used or english will be used as the default. If the php defined variable doesn't exist in english at that point, then the variable name will be displayed. So recommendation is to find the english equivalent for what you are trying to get (specials in this example) and define the spanish version to have spanish text.
The code would look something like this:
Code:
'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS':
echo '<span class="navThree moduleSpan"><a href="javascript:void(0)" rel="specialsDefault" class="navThree moduleBox"><?php echo HEADER_TITLE_SPECIAL1; ?></a></span>';
But again, be sure HEADER_TITLE_SPECIAL1 is defined in english or use the english definition and modify the spanish one to reflect the spanish word(s) to be used.
This is really the hard way to go about this. See my reply to the op here:
http://www.zen-cart.com/showthread.p...28#post1233928
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
I agree not an easy way to address, it seems though that the individual has found in the templates directory where a word to be displayed is not language/defined variable dependent. That said, it looks like in my effort to help, I have fallen short. Our posts had crossed paths (saw yours after I had finished typing and posted mine).
In retrospect, I thought there was a ZC function that would help sort out from which language file(s) to pull a defined variable.
-
Re: Sheffield Blue Template Support Thread
thanks anne but its nor working.
the text is in the sheffield_blue/template folder under the tpl_index.php file. Its not in the language folder. Sorry if im being a pain but im new to this and need a bit more clear instructions, maybe i misundertood something.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
thanks anne but its nor working.
the text is in the sheffield_blue/template folder under the tpl_index.php file. Its not in the language folder. Sorry if im being a pain but im new to this and need a bit more clear instructions, maybe i misundertood something.
Yes, the text in that file that is used in the template is defined in includes/languages/english/extra_definitions/responsive_sheffield_blue/module_tabs.php
If you follow my instructions in my previous post about how to use the template with the other languages, you can translate the text.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hi Anne,
sorry but the text is not in the folder you said, it is in the includes / templates / sheffield_blue / templates / tpl_index_default.php
So i dont know how to make it work. If it were in the languages folder i would know how to translate it as i have already translated other sections of the website.
Thanks for your help,
David
-
Re: Sheffield Blue Template Support Thread
The file and folder you said doesnt exist as this is the sheffield blue and not the responsive template
thanks
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
The file and folder you said doesnt exist as this is the sheffield blue and not the responsive template
thanks
Copy the files from the responsive sheffield blue template to your template:
includes/templates/responsive_sheffield_blue/templates/tpl_index_default.php
includes/languages/english/extra_definintions/responsive_sheffield_blue/module_tabe.php
This update has not yet been made to the sheffield blue template package.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Thanks, it worked!
I am happy that you figured it out ;)
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hello Anne!
I love this template but I'be been having some problems where my site is loading blank pages. I looked at the debug log and it says:
PHP Warning: Cannot modify header information - headers already sent by (output started at /home2/dabbersd/public_html/includes/languages/english/extra_definitions/sheffield_blue/headermenu.php:2) in /home2/dabbersd/public_html/includes/functions/functions_general.php on line 45
This is whats in my functions_general.php:
// clean up URL before executing it
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
// header locates should not have the & in the address it breaks things
while (strstr($url, '&')) $url = str_replace('&', '&', $url);
if ($httpResponseCode == '') {
header('Location: ' . $url); [<- line 45]
session_write_close();
} else {
header('Location: ' . $url, TRUE, (int)$httpResponseCode);
session_write_close();
}
exit();
}
I don't really know anything about PHP so I don't know how to even approach fixing the problem. Any suggestions would be greatly appreciated.
Also here's some extra information in case it will help. My site is using both the Sheffield Blue template and the Ceon URI Mapping module. The blank pages only appear when using this specific template and URI mapping module at the same time, and only in subcategories that have only one product. Here is a link to the page that is having problems http://www.dabbersdoodle.com/shop when you click on "original" it only displays a blank page http://www.dabbersdoodle.com/shop/originals.
Thanks again,
Hadley
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
dabbers
Hello Anne!
I love this template but I'be been having some problems where my site is loading blank pages. I looked at the debug log and it says:
PHP Warning: Cannot modify header information - headers already sent by (output started at /home2/dabbersd/public_html/includes/languages/english/extra_definitions/sheffield_blue/headermenu.php:2) in /home2/dabbersd/public_html/includes/functions/functions_general.php on line 45
This is whats in my functions_general.php:
// clean up URL before executing it
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
// header locates should not have the & in the address it breaks things
while (strstr($url, '&')) $url = str_replace('&', '&', $url);
if ($httpResponseCode == '') {
header('Location: ' . $url); [<- line 45]
session_write_close();
} else {
header('Location: ' . $url, TRUE, (int)$httpResponseCode);
session_write_close();
}
exit();
}
I don't really know anything about PHP so I don't know how to even approach fixing the problem. Any suggestions would be greatly appreciated.
Also here's some extra information in case it will help. My site is using both the Sheffield Blue template and the Ceon URI Mapping module. The blank pages only appear when using this specific template and URI mapping module at the same time, and only in subcategories that have only one product. Here is a link to the page that is having problems
http://www.dabbersdoodle.com/shop when you click on "original" it only displays a blank page
http://www.dabbersdoodle.com/shop/originals.
Thanks again,
Hadley
If you install a new template, then you need to copy any override files for modules that you have installed on your old template to the new template override directory.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hi,
my site is starting to look good. I made some changes in includes / templates / sheffield_blue / css / stylesheet.css
If you look at the site www.kite-addic***tion.es/tienda (REMOVE THE ***)
you can see the prices look bigger now, which its something i like. The problem comes when a product hasnt got a special discount the price still figures in small size. Cannot figure out which style is, or if it even has any, i dont think it has.
You can see products without discount here: http://kite-addiction.es/tienda/inde...ex&cPath=10_28
Any help?
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Hi,
my site is starting to look good. I made some changes in includes / templates / sheffield_blue / css / stylesheet.css
If you look at the site
www.kite-addic***tion.es/tienda (REMOVE THE ***)
you can see the prices look bigger now, which its something i like. The problem comes when a product hasnt got a special discount the price still figures in small size. Cannot figure out which style is, or if it even has any, i dont think it has.
You can see products without discount here:
http://kite-addiction.es/tienda/inde...ex&cPath=10_28
Any help?
There is no class on the price. You can add one in includes/modules/override/product_listing.php
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
There is no class on the price. You can add one in includes/modules/override/product_listing.php
Thanks,
Anne
thanks but i cannot figure out how to modify that file. I want to include something like this: .normalprice {font-size:180%;}
but dont know how or where, if you could help me.
thanks
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
thanks but i cannot figure out how to modify that file. I want to include something like this: .normalprice {font-size:180%;}
but dont know how or where, if you could help me.
thanks
What she is/was saying, is that currently there is no CSS "tag" to attach your desired setting. The suggestion offered, was to modify the product_listing.php file that is located in the modules directory under the template directory name being used/accessed. (Override directory) if that folder (includes/modules/YOUR_TEMPLATE) does not contain the product_listing.php file, then it is suggested to copy it from the /includes/modules directory. Then, once in that file, you will need to add CSS related code around the base price so that in your CSS file(s) you can use the above assignment.
That help out a little? Sorry don't have an exact line number or anything as to where to add the additional code.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
thanks but i cannot figure out how to modify that file. I want to include something like this: .normalprice {font-size:180%;}
but dont know how or where, if you could help me.
thanks
Take a look at the SNAF module. I believe that it includes separate classes for the various elements on the product listing page.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
Take a look at the SNAF module. I believe that it includes separate classes for the various elements on the product listing page.
Thanks,
Anne
SNAF? what is that? :)
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
SNAF? what is that? :)
Go to plugins, search for SNAF: http://www.zen-cart.com/downloads.php?do=file&id=1358
Tada!
-
Re: Sheffield Blue Template Support Thread
Thank you for this template. When viewing our test site from a PC the header has the language icon properly displayed. When viewing with a mobile application (HTC Butterfly/Sony Xperia) the language icon is missing. Please advise.
ZenCart 1.3.9h
Test Site www.uskgj.com/zc3
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
cjcraven
Thank you for this template. When viewing our test site from a PC the header has the language icon properly displayed. When viewing with a mobile application (HTC Butterfly/Sony Xperia) the language icon is missing. Please advise.
ZenCart 1.3.9h
Test Site
www.uskgj.com/zc3
This is not the responsive version of the template. If you want to use this template on hand held devices, install the Responsive Sheffield Blue template.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hi Anne,
I looked at your demostration http://zenlyzen.com/responsive/index.php? in both a PC and mobile unit. I still don't see the language icon in the header when viewing with a mobile unit. This is a pretty common android phone here.
-
Re: Sheffield Blue Template Support Thread
With the PC if I make the browser small, to the point the side boxes disappear, the language icon too will disappear too.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
cjcraven
With the PC if I make the browser small, to the point the side boxes disappear, the language icon too will disappear too.
I'll say it again, this is not the responsive version of this template. If you want a responsive template, use the Responsive Sheffield Blue.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hi Anne,
I am looking at your demonstration site http://zenlyzen.com/responsive/, not my test site. I think this is the template for mobile applications. Please point me to the correct location for the mobile demo site if I am wrong.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
cjcraven
Hi Anne,
I am looking at your demonstration site
http://zenlyzen.com/responsive/, not my test site. I think this is the template for mobile applications. Please point me to the correct location for the mobile demo site if I am wrong.
Right demo site, wrong thread to talk about it. Responsive-Sheffield-Blue
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
mc12345678
Got it, thanks
-
Re: Sheffield Blue Template Support Thread
Hi Picaflor,
I have modified the main menu as you can see in www.kite-addic***tion.es/tienda (remove the ***)
I would like a drop menu coming to each of the products category, but have no idea how to do it. I guess it is simple but dont know how.
Right now the menus links work, which is good, but it would be nice to be able to have that drop menu for the categories.
Kind regards,
David
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Hi Picaflor,
I have modified the main menu as you can see in
www.kite-addic***tion.es/tienda (remove the ***)
I would like a drop menu coming to each of the products category, but have no idea how to do it. I guess it is simple but dont know how.
Right now the menus links work, which is good, but it would be nice to be able to have that drop menu for the categories.
Kind regards,
David
DONE!!! its implemented now. I learned to pass variables to a class, and use the variable inside the class to start building the categories tree from there :)
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
DONE!!! its implemented now. I learned to pass variables to a class, and use the variable inside the class to start building the categories tree from there :)
It would be helpful if you posted your code so that others with the same question can search and find the answer ;)
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
It would be helpful if you posted your code so that others with the same question can search and find the answer ;)
Thanks,
Anne
In the tpl_mega_menu file:
<li class="escuela-li"><a href="index.php?main_page=index&cPath=12" class="drop"><?php echo HEADER_TITLE_NEOPRENOS; ?></a>
<div class="dropdown_1column">
<div class="col_1 firstcolumn">
<div class="levels">
<?php
// load the UL-generator class and produce the menu list dynamically from there
require_once (DIR_WS_CLASSES . 'categories_ul_generator.php');
$zen_CategoriesUL = new zen_categories_ul_generator;
$menulist = $zen_CategoriesUL->buildTree(true,12);
$menulist = str_replace('"level4"','"level5"',$menulist);
$menulist = str_replace('"level3"','"level4"',$menulist);
$menulist = str_replace('"level2"','"level3"',$menulist);
$menulist = str_replace('"level1"','"level2"',$menulist);
$menulist = str_replace('<li class="submenu">','<li class="submenu">',$menulist);
$menulist = str_replace("</li>\n</ul>\n</li>\n</ul>\n","</li>\n</ul>\n",$menulist);
echo $menulist;
?>
</div>
</div>
</div>
</li>
then in includes / classes / categories_ul_generator.php
function buildTree($submenu=false, $variable)
{
$this->root_category_id = $variable;
return $this->buildBranch($this->root_category_id, '', $submenu);
}
}
So what i do is in the mega menu to call this buildtree function passing a variable that tells the categories generator where to start, the variable has to be your category number...works like a charm
-
Re: Sheffield Blue Template Support Thread
I got now another problem, also posted in the multilanguage ezpages thread.
As you can see when you enter my site in the footer the useful links you can see a link in spanish called 'prueba' and 'test' in english. Its not appearing in the header menu under the info menu...ive reinstalled the multilanguage thread a couple of times but no success, its like its not reading the same ezpages database or something.
if i insert a new ezpage both languages appear.
Regards,
David
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
In the tpl_mega_menu file:
<li class="escuela-li"><a href="index.php?main_page=index&cPath=12" class="drop"><?php echo HEADER_TITLE_NEOPRENOS; ?></a>
<div class="dropdown_1column">
<div class="col_1 firstcolumn">
<div class="levels">
<?php
// load the UL-generator class and produce the menu list dynamically from there
require_once (DIR_WS_CLASSES . 'categories_ul_generator.php');
$zen_CategoriesUL = new zen_categories_ul_generator;
$menulist = $zen_CategoriesUL->buildTree(true,12);
$menulist = str_replace('"level4"','"level5"',$menulist);
$menulist = str_replace('"level3"','"level4"',$menulist);
$menulist = str_replace('"level2"','"level3"',$menulist);
$menulist = str_replace('"level1"','"level2"',$menulist);
$menulist = str_replace('<li class="submenu">','<li class="submenu">',$menulist);
$menulist = str_replace("</li>\n</ul>\n</li>\n</ul>\n","</li>\n</ul>\n",$menulist);
echo $menulist;
?>
</div>
</div>
</div>
</li>
then in includes / classes / categories_ul_generator.php
function buildTree($submenu=false, $variable)
{
$this->root_category_id = $variable;
return $this->buildBranch($this->root_category_id, '', $submenu);
}
}
So what i do is in the mega menu to call this buildtree function passing a variable that tells the categories generator where to start, the variable has to be your category number...works like a charm
That's great ;) I am sure that this will help others in the future.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Not bad for someone with just 2 weeks into zencart haha :D
-
Re: Sheffield Blue Template Support Thread
ezpages in header is set to 1
-
Re: Sheffield Blue Template Support Thread
Anne,
I have been beating my head against the wall all night and can't figure out what's going on. I can not get the social media links on my slider bar to go to my links. i have even reloaded the complete template and reloaded the social_define.php file. When I reloaded the file, I confirmed they were your links then changed them to mine and saved. Even went to another computer to load my site and social links loaded your links instead of mine. I searched the thread and found a couple of instances just like mine but all were either cut short or something else changed. My site is www.bearcreekleather.com and facebook link is www.facebook.com/bclleather any idea what could possibly be causing this!?! I'm literally at my wits end. There's not many problems I can't figure out but this is one for the record books. Thanks in advance for any help.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Stitcher
Anne,
I have been beating my head against the wall all night and can't figure out what's going on. I can not get the social media links on my slider bar to go to my links. i have even reloaded the complete template and reloaded the social_define.php file. When I reloaded the file, I confirmed they were your links then changed them to mine and saved. Even went to another computer to load my site and social links loaded your links instead of mine. I searched the thread and found a couple of instances just like mine but all were either cut short or something else changed. My site is
www.bearcreekleather.com and facebook link is
www.facebook.com/bclleather any idea what could possibly be causing this!?! I'm literally at my wits end. There's not many problems I can't figure out but this is one for the record books. Thanks in advance for any help.
It should be in this file tpl_main_page.php which you can use Developers Toolkit to search for it!
/public_html/includes/templates/your_template/common
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
uswebworx
It should be in this file tpl_main_page.php which you can use Developers Toolkit to search for it!
/public_html/includes/templates/your_template/common
I think that maybe I didn't ask the question correctly or there was a misunderstanding. All I want to do is change the links from your facebook page to mine, yet when I changed the links in the associated files according to the documentation, the links still go to your sites. You said in the link reply above, it should be in tpl_main_page.php yet I see nothing in there pertaining to the associated links?!? Could you please elaborate?
-
Re: Sheffield Blue Template Support Thread
I found the problem, although I'm not quite sure why it was happening. I used the developers tool kit (THANKS to USWEBORX!!:cool:) and found the link I needed to change in the includes/languages/english/extra_definitions/sheffield_blue/footer_menu_defines.php. Although the social icon I was clicking on was in the slider on the side, this link was the one that allowed it to take me to my page instead of the original.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Stitcher
I found the problem, although I'm not quite sure why it was happening. I used the developers tool kit (THANKS to USWEBORX!!:cool:) and found the link I needed to change in the includes/languages/english/extra_definitions/sheffield_blue/footer_menu_defines.php. Although the social icon I was clicking on was in the slider on the side, this link was the one that allowed it to take me to my page instead of the original.
I am happy that you figured out the problem. Thank you for posting your solution. This bug has already been fixed in the Responsive Sheffield Blue template package. It has many bug fixes and enhancements over this legacy package. I would recommend using the responsive package.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Actually Anne,
I tried the Responsive Sheffield Blue template and, at least on my website, it had issues that were not workable depending upon the width of the browser window. I understand that that's exactly what it's supposed to do depending upon the machine it's being viewed on (ipad, iphone, tablet, computer...). That said, when the window size was reduced on any browser, the description would be closed or the banners would be rearranged along with various other issues. Because of the clientele I deal with (not all of the them being computer savvy) I decided it would be best to use something more "stable" (not a derogatory statement towards the template please don't misunderstand) for lack of a better term. I would rather work through any issues I'm having with this one then deal with a responsive template. Thanks for all your work on all of these though. I have at least 4 of your templates that I'm using and looking at for production. The Bentley is another one of my favorites.
-
Re: Sheffield Blue Template Support Thread
That said, I am having one last problem. I can't seem to find the file needed to input the code to stop displaying the social media Icons. I don't know if I'm in the wrong file or using the wrong code. I'm using the social_defines.php file found in /includes/languages/english/extra_definitions/sheffield_blue and using .facebook{display:none;} along with the attributes below that .facebook-sh{display:none;} but to no avail. Could you point me in the right direction as to which file it should be in and if I'm I'm using the proper syntax. Thanks in advance.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Stitcher
That said, I am having one last problem. I can't seem to find the file needed to input the code to stop displaying the social media Icons. I don't know if I'm in the wrong file or using the wrong code. I'm using the social_defines.php file found in /includes/languages/english/extra_definitions/sheffield_blue and using .facebook{display:none;} along with the attributes below that .facebook-sh{display:none;} but to no avail. Could you point me in the right direction as to which file it should be in and if I'm I'm using the proper syntax. Thanks in advance.
I believe that this question has been asked and answered more than once already here. Use .sidebar{display:none;}
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
I have searched the support thread thoroughly and have found several answer none of which work or apply. If I'm not mistaken, the .sidebar syntax is used to remove the entire slider and I only want to remove a couple. That said, I still don't know which file it goes in.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Stitcher
Actually Anne,
I tried the Responsive Sheffield Blue template and, at least on my website, it had issues that were not workable depending upon the width of the browser window. I understand that that's exactly what it's supposed to do depending upon the machine it's being viewed on (ipad, iphone, tablet, computer...). That said, when the window size was reduced on any browser, the description would be closed or the banners would be rearranged along with various other issues. Because of the clientele I deal with (not all of the them being computer savvy) I decided it would be best to use something more "stable" (not a derogatory statement towards the template please don't misunderstand) for lack of a better term. I would rather work through any issues I'm having with this one then deal with a responsive template. Thanks for all your work on all of these though. I have at least 4 of your templates that I'm using and looking at for production. The Bentley is another one of my favorites.
So like all things, a correction is likely to be needed/a bug found, etc. Many of the things you describe as being a problem are corrected/addressed in the forum.
Just my thoughts on the situation.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Stitcher
I have searched the support thread thoroughly and have found several answer none of which work or apply. If I'm not mistaken, the .sidebar syntax is used to remove the entire slider and I only want to remove a couple. That said, I still don't know which file it goes in.
Typically a .css file, which shouldhave been identified as well in the seaarch/find of the solutions. I forget which one. Should look into getting firebug or similar.
-
Re: Sheffield Blue Template Support Thread
Not necessarily. That is the nature of a responsive template. Standard templates rely on the server to determine the device that the site is being viewed on. A responsive template does not get that information from the server, instead it determines the viewing device and adjusts the size accordingly. Because I can't use it doesn't mean there is a problem with it. It just doesn't do what I'm wanting to do. It's a great template, just not for me.
-
Re: Sheffield Blue Template Support Thread
Thanks for your help. It really doesn't matter what caused the issues or ways to correct them. There's a reason why the templates are called "Responsive" and they're just not for "everyone". I appreciate your input, however, they are just not conducive to my application.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Stitcher
I have searched the support thread thoroughly and have found several answer none of which work or apply. If I'm not mistaken, the .sidebar syntax is used to remove the entire slider and I only want to remove a couple. That said, I still don't know which file it goes in.
Yes, I gave you the code to hide the sidebar. If you just want to remove one icon, for now, you will need to edit the code in includes/templates/responsive_sheffield_blue/common/tpl_main_page.php.
I already have adding separate classes to the icons marked down for a future template update.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Thanks Anne,
I saw you had separate classes on your checklist from one of the other comments but wasn't sure how old the comment was. Thanks for your help. You have some beautiful templates!!
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Stitcher
I found the problem, although I'm not quite sure why it was happening. I used the developers tool kit (THANKS to USWEBORX!!:cool:) and found the link I needed to change in the includes/languages/english/extra_definitions/sheffield_blue/footer_menu_defines.php. Although the social icon I was clicking on was in the slider on the side, this link was the one that allowed it to take me to my page instead of the original.
Your welcome, Anne taught me about the Dev toolkit it has been a lifesaver!
-
1 Attachment(s)
Re: Sheffield Blue Template Support Thread
Hi Anne. How do you swap the location of the home/login/shopping cart and lang/currency displays? Thx.
Attachment 13766
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Anne. How do you swap the location of the home/login/shopping cart and lang/currency displays? Thx.
Attachment 13766
You will do this using css and xhtml, editing the stylesheet.css and tpl_header.php file. If you post a link to your site I can take a look.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
hey i wanted to add the Sheffield Blue social header to my site but on a different template as far as i know i put all the files for it but it doesnt show how can i fix this problem?
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
Pablo_escobar
hey i wanted to add the Sheffield Blue social header to my site but on a different template as far as i know i put all the files for it but it doesnt show how can i fix this problem?
You can download the Social Network Sidebar plugin separately in the plugins section. This is the module I used.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
picaflor-azul
If you install a new template, then you need to copy any override files for modules that you have installed on your old template to the new template override directory.
Thanks,
Anne
Thank you Anne,
The problem is fixed but it was actually unrelated to the other modules. I had accidentally mixed things up in the headermenu.php file.
-
1 Attachment(s)
Re: Sheffield Blue Template Support Thread
Hello Anne. I'm trying move my additional images to a pretty specific location. I would like them to be displayed to the right of my main image right under the box with the "add this to my cart" button. I also would want to remove the dotted line between the images and have them aligned to the left with very little padding between the images. Here is the actual product page.
Attachment 13789
I've already edited the tpl_product_info_display.php file a bit but I'm not sure what else to do. If you could point me in the direction what other files to edit or what to search for in the developers toolkit that would be great.
Thanks,
Hadley
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
dabbers
Hello Anne. I'm trying move my additional images to a pretty specific location. I would like them to be displayed to the right of my main image right under the box with the "add this to my cart" button. I also would want to remove the dotted line between the images and have them aligned to the left with very little padding between the images.
Here is the actual product page.
Attachment 13789
I've already edited the tpl_product_info_display.php file a bit but I'm not sure what else to do. If you could point me in the direction what other files to edit or what to search for in the developers toolkit that would be great.
Thanks,
Hadley
To remove the dotted lines add a .vDotLine{display:none;} to the bottom of your stylesheet.css file.
Add this to the bottom of your stylesheet.css file:
Code:
#productAdditionalImages{width:250px;float:right;margin-top:-200px;}
You will also need to set additional images image size smaller or at 2 images per row
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hello! Quick question. How I am supossed to change method of viewing of "new - featured - special" to the more elegant option of showing it one after another on main page?
[All new products]
[All featured products]
Regards
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
vojtechjan
Hello! Quick question. How I am supossed to change method of viewing of "new - featured - special" to the more elegant option of showing it one after another on main page?
[All new products]
[All featured products]
Regards
You need to remove the tabbed home page modules plugin. You can probably just delete the includes/templates/sheffield_blue/templates/tpl_index_home.php file, but I have not tested this so you might have to remove more files from the plugin package.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hi Anne,
i noticed today that the original sharing social buttons in the products display was missing (ie-> there are no facebook buttons when displaying products). It is at www.kite-addiction.es/index.php
thanks!
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
speedyrider
Hi Anne,
i noticed today that the original sharing social buttons in the products display was missing (ie-> there are no facebook buttons when displaying products). It is at
www.kite-addiction.es/index.php
thanks!
You can add the code back to the tpl_product_info_display.php file:
Code:
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4ff326d22d3b21a9"></script>
<!-- AddThis Button END -->
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
[QUOTE=picaflor-azul;1238085]You can add the code back to the tpl_product_info_display.php file:
Code:
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4ff326d22d3b21a9"></script>
<!-- AddThis Button END -->
thanks working now but i see that it doesnt work for everyone, some people tell me they dont see it, do you know the reason?
-
Re: Sheffield Blue Template Support Thread
[QUOTE=speedyrider;1238209]
Quote:
Originally Posted by
picaflor-azul
You can add the code back to the tpl_product_info_display.php file:
Code:
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4ff326d22d3b21a9"></script>
<!-- AddThis Button END -->
thanks working now but i see that it doesnt work for everyone, some people tell me they dont see it, do you know the reason?
Solved, it was something to do with the navigator config.
Another question: I know its somewhere along the CSSs but i cant find where, i need to change the font size for the categories name like in http://www.kite-addiction.es/index.p...index&cPath=14
i want the names board, boots etc to appear bigger, where?
-
Re: Sheffield Blue Template Support Thread
Does anyone here know how to move the play/pause buttons & slider bubbles for the slider?
By default the play/pause are left justified and the slider bubbles are right justified.
Thanks,
Tom
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
SavaTom
Does anyone here know how to move the play/pause buttons & slider bubbles for the slider?
By default the play/pause are left justified and the slider bubbles are right justified.
Thanks,
Tom
Look in the stylesheet_slides.css file
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Thank you, I will look there!
-
Re: Sheffield Blue Template Support Thread
Ok, from a 100% fresh default install of zen cart I installed the greek language pack and it works fine.
Then I installed the Sheffield Blue Responsive template and the greek language pack no longer works.
So then I figured I would upload the greek files to the includes/languages/responsive_sheffield_blue directory and that didn't work either.
What am I missing if it works with default template and doesn't carry over on Sheffield template?
Thanks,
Tom
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
SavaTom
Ok, from a 100% fresh default install of zen cart I installed the greek language pack and it works fine.
Then I installed the Sheffield Blue Responsive template and the greek language pack no longer works.
So then I figured I would upload the greek files to the includes/languages/responsive_sheffield_blue directory and that didn't work either.
What am I missing if it works with default template and doesn't carry over on Sheffield template?
Thanks,
Tom
As with any template, you will need to copy all language files in the templates english directories to your new language and then translate the files.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
So you are saying I have to manually translate English files to Greek files? What is the purpose of a language pack to begin with if that's the case?
-
Re: Sheffield Blue Template Support Thread
What I get from your answer is language packs are only good for the DEFAULT zen cart classic template and if you add a custom template you must manually CREATE your own language pack FROM SCRATCH for the custom template. Is this true?
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
SavaTom
What I get from your answer is language packs are only good for the DEFAULT zen cart classic template and if you add a custom template you must manually CREATE your own language pack FROM SCRATCH for the custom template. Is this true?
No, that is not true at all. Again, you need to copy the language files from the template package to your new language and then translate them.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Hi Anne,
When I turn Side box banner On and load site footer does not appear.
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
jsarwar
Hi Anne,
When I turn Side box banner On and load site footer does not appear.
Check your logs folder for errors and correct them. This is not a problem with the template package. Could be with modules that you have installed in your old template override directory that are not in the new template override directory.
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
I have this template from beginning on this site. I will check the log file. Thanks
-
Re: Sheffield Blue Template Support Thread
Hi Anne,
Log file shows
[Tue Mar 04 10:19:57 2014] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
[Tue Mar 04 10:19:57 2014] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
[Tue Mar 04 10:19:58 2014] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
[Tue Mar 04 10:19:58 2014] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
Any advice please?
-
Re: Sheffield Blue Template Support Thread
and .htaccess file have
##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:
Options +FollowSymLinks
RewriteEngine On
#RewriteBase /zc_admin/alt_nav.php
# From Ultimate SEO URLs
RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-ezp-([0-9]+).html$ index\.php?main_page=page&id=$2&%{QUERY_STRING} [L]
# For Open Operations Info Manager
RewriteRule ^(.*)-i-([0-9]+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING} [L]
# For dreamscape's News & Articles Manager
RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING} [L]
RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING} [L]
RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING} [L]
RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING} [L]
RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING} [L]
RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]
# All other pages
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING} [L]
#AddHandler application/x-httpd-php53 .php .php5 .php4 .php3
#AddHandler application/x-httpd-php52 .php .php5 .php4 .php3
I deleted it but it still not showing footer so I uploaded it back
-
Re: Sheffield Blue Template Support Thread
-
Re: Sheffield Blue Template Support Thread
Quote:
Originally Posted by
jsarwar
I got it.
What was the problem?
Thanks,
Anne
-
Re: Sheffield Blue Template Support Thread
Banner footer was causing issue. I turned it off and select different class for banner in sidebox and it displayed footer.
One more question for you. I increased width of this template and so far have done good job with everything except for
/images/sidebox-head-right.png
I have been working on css but the issue is still there. When I adjust its layout for homepage and all other pages of site so it looks nice and same size as box ,at same settings it appear as extended image on product detail page with its white background appearing next to side box on right side. If I change values on css to adjust it on product page, it messes sidebox-head-right.png on all other pages. Any idea? Appreciate.