Zen Cart Logo
Forums / Addon Templates / Winchester Responsive

Winchester Responsive

Views: 443,039

Results 321 to 340 of 953
21 Mar 2015, 12:23 AM
#321
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Winchester Responsive

Draxwyn:

Hi Anne,

I have found a problem that I have been able to locate to part of this template, and I suspect this file; tpl_modules_product_listing.php. I get no products displayed when clicking the all products, specials, featured products and new products pages. I managed to get the specials, new products to work by using the zencart default (not ideal as some formatting is out) but the others do not. Here is the error message I am getting from the log file;

PHP Fatal error: 1109:Unknown table 'p' in field list :: select count(p.products_id) as total ==> (as called by) /includes/classes/split_page_results.php on line 86 <== in /includes/classes/db/mysql/query_factory.php on line 155

although this error says split_page_results I have managed to trace it back to tpl_modules_product_listing.php at which point I am lost as to the problem, so suspect that it is further in another file somewhere.

The error displayed to customers is 'WARNING: An Error occurred, please refresh the page and try again.' obviously doing so does not work. Just wondering if you could shed any light on this as it is definitely a template issue as the default works fine.

~R

This is not an inherent problem with the template package. My guess is that you have a plugin installed that has files in the old override folder that you have not copied to the new template override folder.

Thanks,

Anne

21 Mar 2015, 12:34 AM
#322
draxwyn avatar

draxwyn

New Zenner

Join Date:
Aug 2005
Posts:
30
Plugin Contributions:
0

Re: Winchester Responsive

picaflor-azul:

This is not an inherent problem with the template package. My guess is that you have a plugin installed that has files in the old override folder that you have not copied to the new template override folder.

Thanks,

Anne

Hi Anne,

This is the only template that I have setup and used on this site, and the template was setup first. There are a few mods installed but none have template files that conflict with this template, the only one with template files is the about us page mod.

The only thing that has changed recently has been updating to 1.5.4, all files that required merging have been, so maybe it doesn't gel as well with the newer required default template files that haven't been over ridden?

~R

21 Mar 2015, 2:21 PM
#323
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

Draxwyn:

Hi Anne,

This is the only template that I have setup and used on this site, and the template was setup first. There are a few mods installed but none have template files that conflict with this template, the only one with template files is the about us page mod.

The only thing that has changed recently has been updating to 1.5.4, all files that required merging have been, so maybe it doesn't gel as well with the newer required default template files that haven't been over ridden?

~R

Since you did not provide this info in your other post, I was only guessing.

If you upgraded and did not check the core overwrite files in the template package, this is the problem. The template overwrites the includes/classes/split_pages_result.php file.

Thanks,

Anne

27 Mar 2015, 8:12 AM
#324
chelseaneedshelp avatar

chelseaneedshelp

New Zenner

Join Date:
Mar 2015
Location:
Texas
Posts:
12
Plugin Contributions:
0

Re: Winchester Responsive

Hi! I loooooove this template and this thread has basically been like my bible the past week while I modify my site! But I haven't found anything on what I need...

For starters, I am really not very familiar with php (I'll be honest, not well-versed in anything more advanced than html) but have been able to figure out most things so far.

On my site (http://thevegansexshop.co/shop/ --homepage is SFW, though there is a banner that reads "The Vegan S3x Shop"), I have the Westminster New template installed, and on the top menu bar I want to remove the "Categories" and "Contact" links and replace with an autopopulating list of my categories. I know how to remove "Categories" and "Contacts," BUT I don't understand php enough to figure out how to put my categories list there (especially automatically). I would prefer to be able to have them auto fill (like how the drop down menu for Products autofills), BUT if that's not possible, I don't mind manually adding them and changing as necessary.

Here is an image of what I have now:
Attachment #15092
(I removed my banner from the image so as not to offend anyone. This is completely SFW)

Here is an example of what I want:
Attachment #15093
(also SFW)

I'm pretttttty sure the file I need to modify is includes/templates/override/templates/tpl_modules_mobile_categories_tabs.php (at least, that is what I used to remove a link that was in the menu by default and it worked...) Here is the code for that file:

<?php
/**
 * Module Template - categories_tabs
 *
 * Template stub used to display categories-tabs output
 *
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: tpl_modules_categories_tabs.php 3395 2006-04-08 21:13:00Z ajeh $
 */


?>



<div id="menu">
<ul class="slimmenu">

    <li class="test"><a href="<?php HTTP_SERVER . DIR_WS_CATALOG;?>" class="mshop"><?php echo HEADER_TITLE_CATEGORIES; ?></a>
<?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);
$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>','<li>',$menulist);
$menulist = str_replace("</li>\n</ul>\n</li>\n</ul>\n","</li>\n</ul>\n",$menulist);
echo $menulist;
?>                        
</li>


    <li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>" class="mcontact"><?php echo BOX_INFORMATION_CONTACT; ?></a></li>

</ul>

</div>

<script src="<?php echo $template->get_template_dir('jquery.slimmenu.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script> 

	<?php if ($detect->isMobile() && !$detect->isTablet() or $detect->isMobile() && !$detect->isTablet() && $_SESSION['display_mode']=='isMobile' or $detect->isTablet() && $_SESSION['display_mode']=='isMobile' or $_SESSION['display_mode']=='isMobile') { ?>

<script type="text/javascript">
    $('ul.slimmenu').slimmenu(
			      {
			      resizeWidth: '800',
				  collapserTitle: '',
				  animSpeed: 'medium',
				  easingEffect: null,
				  indentChildren: false,
				  childrenIndenter: ' '
				  });
</script>

<?php } else if ($detect->isTablet() or $detect->isMobile() && $_SESSION['display_mode']=='isTablet' or $detect->isTablet() && $_SESSION['display_mode']=='isTablet' or $_SESSION['display_mode']=='isTablet'){ ?>

<script type="text/javascript">
    $('ul.slimmenu').slimmenu(
			      {
			      resizeWidth: '800',
				  collapserTitle: '',
				  animSpeed: 'medium',
				  easingEffect: null,
				  indentChildren: false,
				  childrenIndenter: ' '
				  });
</script>

<?php } else if ($detect->isMobile() && !$detect->isTablet() && $_SESSION['display_mode']=='isDesktop' or $detect->isTablet() && $_SESSION['display_mode']=='isDesktop' or $_SESSION['display_mode']=='isNonResponsive'){ ?>

<script type="text/javascript">
    $('ul.slimmenu').slimmenu(
			      {
			      resizeWidth: '0',
				  collapserTitle: '',
				  animSpeed: 'medium',
				  easingEffect: null,
				  indentChildren: false,
				  childrenIndenter: ' '
				  });
</script>

<?php } else { ?>

<script type="text/javascript">
    $('ul.slimmenu').slimmenu(
			      {
			      resizeWidth: '800',
				  collapserTitle: '',
				  animSpeed: 'medium',
				  easingEffect: null,
				  indentChildren: false,
				  childrenIndenter: ' '
				  });
</script>

  <?php } ?>

Can someone help me? Even if you can offer an example code and let me know how to modify it or point me to a tutorial on something like this.

Thanks in advance! :) I apologoize if the nature of the site offends anyone, but you know, there is a market segment out there...

27 Mar 2015, 3:28 PM
#325
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

chelseaneedshelp:

Hi! I loooooove this template and this thread has basically been like my bible the past week while I modify my site! But I haven't found anything on what I need...

For starters, I am really not very familiar with php (I'll be honest, not well-versed in anything more advanced than html) but have been able to figure out most things so far.

On my site (http://thevegansexshop.co/shop/ --homepage is SFW, though there is a banner that reads "The Vegan S3x Shop"), I have the Westminster New template installed, and on the top menu bar I want to remove the "Categories" and "Contact" links and replace with an autopopulating list of my categories. I know how to remove "Categories" and "Contacts," BUT I don't understand php enough to figure out how to put my categories list there (especially automatically). I would prefer to be able to have them auto fill (like how the drop down menu for Products autofills), BUT if that's not possible, I don't mind manually adding them and changing as necessary.

Here is an image of what I have now:
Attachment #15092
(I removed my banner from the image so as not to offend anyone. This is completely SFW)

Here is an example of what I want:
Attachment #15093
(also SFW)

I'm pretttttty sure the file I need to modify is includes/templates/override/templates/tpl_modules_mobile_categories_tabs.php (at least, that is what I used to remove a link that was in the menu by default and it worked...) Here is the code for that file:

<?php /** * Module Template - categories_tabs * * Template stub used to display categories-tabs output * * @package templateSystem * @copyright Copyright 2003-2005 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: tpl_modules_categories_tabs.php 3395 2006-04-08 21:13:00Z ajeh $ */ ?> <div id="menu"> <ul class="slimmenu">
<li class="test"><a href="<?php HTTP_SERVER . DIR_WS_CATALOG;?>" class="mshop"><?php echo HEADER_TITLE_CATEGORIES; ?></a>
<?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); $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>','<li>',$menulist); $menulist = str_replace("</li>\n</ul>\n</li>\n</ul>\n","</li>\n</ul>\n",$menulist); echo $menulist; ?> </li>
<li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>" class="mcontact"><?php echo BOX_INFORMATION_CONTACT; ?></a></li>
</ul> </div> <script src="<?php echo $template->get_template_dir('jquery.slimmenu.min.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>
<?php if ($detect->isMobile() && !$detect->isTablet() or $detect->isMobile() && !$detect->isTablet() && $_SESSION['display_mode']=='isMobile' or $detect->isTablet() && $_SESSION['display_mode']=='isMobile' or $_SESSION['display_mode']=='isMobile') { ?>
<script type="text/javascript"> $('ul.slimmenu').slimmenu( { resizeWidth: '800', collapserTitle: '', animSpeed: 'medium', easingEffect: null, indentChildren: false, childrenIndenter: ' ' }); </script> <?php } else if ($detect->isTablet() or $detect->isMobile() && $_SESSION['display_mode']=='isTablet' or $detect->isTablet() && $_SESSION['display_mode']=='isTablet' or $_SESSION['display_mode']=='isTablet'){ ?> <script type="text/javascript"> $('ul.slimmenu').slimmenu( { resizeWidth: '800', collapserTitle: '', animSpeed: 'medium', easingEffect: null, indentChildren: false, childrenIndenter: ' ' }); </script> <?php } else if ($detect->isMobile() && !$detect->isTablet() && $_SESSION['display_mode']=='isDesktop' or $detect->isTablet() && $_SESSION['display_mode']=='isDesktop' or $_SESSION['display_mode']=='isNonResponsive'){ ?> <script type="text/javascript"> $('ul.slimmenu').slimmenu( { resizeWidth: '0', collapserTitle: '', animSpeed: 'medium', easingEffect: null, indentChildren: false, childrenIndenter: ' ' }); </script> <?php } else { ?> <script type="text/javascript"> $('ul.slimmenu').slimmenu( { resizeWidth: '800', collapserTitle: '', animSpeed: 'medium', easingEffect: null, indentChildren: false, childrenIndenter: ' ' }); </script> <?php } ?>
> 
> Can someone help me? Even if you can offer an example code and let me know how to modify it or point me to a tutorial on something like this. 
> 
> Thanks in advance! :) I apologoize if the nature of the site offends anyone, but you know, there is a market segment out there...

no need to double post

Thanks,

anne
30 Mar 2015, 6:38 AM
#326
choochoo avatar

choochoo

New Zenner

Join Date:
Oct 2014
Location:
Essex, England, UK.
Posts:
22
Plugin Contributions:
0

Re: Winchester Responsive

Good morning,

I'm having a problem with the handheld menu display. When viewing a product page on my 10" android tablet, the menu stops working. The icon disappears altogether and leaves what would be listed scattered across the logo area. When viewing on my laptop, the icon is there (though i'm sure it shouldn't be) but it doesn't function at all.

Any insight would be great.

Website: https://www.thepersonalisedgifthub.co.uk

30 Mar 2015, 1:28 PM
#327
soxophoneplayer avatar

soxophoneplayer

Totally Zenned

Join Date:
Feb 2008
Posts:
534
Plugin Contributions:
0

Re: Winchester Responsive

Ben Hewett:

Is there a conflict between this template and Image Handler? I did a fresh install of Zen Cart, then I installed Image Handler. So far so good all looks good. I have the option for Image Handler in the tool menu under Admin. You click on it and page opens up titled Image Handler. Then I added the template troubles start. Now when you go to tools menu Image Handler is there and a new option as well "Flexible Footer". Now when you click on Image Handler the page opens but it is titled "Flexible Footer". It still looks like Image Handler. When you click on "Flexible Footer" that menu opens and its options. But when I use Image Handler to add multiple images of a product I am not sure it is working correctly? Can someone help? thanks

I am having same problem. Were you able to resolve? thx

30 Mar 2015, 2:50 PM
#328
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

choochoo:

Good morning,

I'm having a problem with the handheld menu display. When viewing a product page on my 10" android tablet, the menu stops working. The icon disappears altogether and leaves what would be listed scattered across the logo area. When viewing on my laptop, the icon is there (though i'm sure it shouldn't be) but it doesn't function at all.

Any insight would be great.

Website: https://www.thepersonalisedgifthub.co.uk

This problem is not present in the template out of the box. I would recommend back tracking through your changes until you find the point where the problem started. This template needs the patch for the slimmenu that is posted in the Westminster New thread:

http://www.zen-cart.com/showthread.php?213334-Westminster-New&p=1272508#post1272508

Thanks,

Anne

30 Mar 2015, 2:51 PM
#329
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

soxophoneplayer:

I am having same problem. Were you able to resolve? thx

No, there is no conflict. In the older version of flexible footer menu (the version installed in this template) it overwrites the title of the image handler page. If you want this fixed you can install the newest version of the flexible footer menu to this template.

Thanks,

Anne

3 Apr 2015, 5:02 AM
#330
choochoo avatar

choochoo

New Zenner

Join Date:
Oct 2014
Location:
Essex, England, UK.
Posts:
22
Plugin Contributions:
0

Re: Winchester Responsive

picaflor-azul:

This problem is not present in the template out of the box. I would recommend back tracking through your changes until you find the point where the problem started. This template needs the patch for the slimmenu that is posted in the Westminster New thread:

http://www.zen-cart.com/showthread.php?213334-Westminster-New&p=1272508#post1272508

Thanks,

Anne

Hi Anne,

Thank you for your reply.

It appears to happen when Zen LightBox is installed.

Has anyone else experienced this and come across a solution. I'm currently searching for a fix.

Many thanks

Kerry

3 Apr 2015, 5:34 AM
#331
choochoo avatar

choochoo

New Zenner

Join Date:
Oct 2014
Location:
Essex, England, UK.
Posts:
22
Plugin Contributions:
0

Re: Winchester Responsive

choochoo:

Hi Anne,

Thank you for your reply.

It appears to happen when Zen LightBox is installed.

Has anyone else experienced this and come across a solution. I'm currently searching for a fix.

Many thanks

Kerry

I have found my fix. I have uninstalled Zen LightBox and installed Zen ColorBox instead.

3 Apr 2015, 1:50 PM
#332
bobc avatar

bobc

New Zenner

Join Date:
Jun 2013
Location:
UK
Posts:
49
Plugin Contributions:
0

Re: Winchester Responsive

Hi Anne,

I think I may have stumbled across an SSL problem which seems to be linked to href="http://link-for-non-js-users.html" which is in the <div class="slide-out-div"> for the left-slide-out. Firstly on the SSL site it seems to throw up an error "Only Secure Content is displayed", if you choose to ignore this warning, the left slide box displays as expected, if you ignore it the left side box displays at the very bottom of the page as a static item. Also, when choosing to ignore the warning, you are directed to the http:// site rather than remainig on the https:// site.

The website I refer too is https://www.blackfishcampus.com

I have attached images of the URL Bar in IE9 (but it also occurs in Chrome, Firefox and Opera) and the warning I refer too.

Please can you offer any advice as to how to overcome this problem?

Many thanks in advance,

Bob

3 Apr 2015, 4:24 PM
#333
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

choochoo:

Hi Anne,

Thank you for your reply.

It appears to happen when Zen LightBox is installed.

Has anyone else experienced this and come across a solution. I'm currently searching for a fix.

Many thanks

Kerry

If you want to install any plugin that uses jquery you need to double check that the main library is not being loaded twice.

Thanks,

Anne

3 Apr 2015, 4:24 PM
#334
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

choochoo:

I have found my fix. I have uninstalled Zen LightBox and installed Zen ColorBox instead.

I am happy that you figured it out ;)

Thanks,

Anne

3 Apr 2015, 4:26 PM
#335
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

bobc:

Hi Anne,

I think I may have stumbled across an SSL problem which seems to be linked to href="http://link-for-non-js-users.html" which is in the <div class="slide-out-div"> for the left-slide-out. Firstly on the SSL site it seems to throw up an error "Only Secure Content is displayed", if you choose to ignore this warning, the left slide box displays as expected, if you ignore it the left side box displays at the very bottom of the page as a static item. Also, when choosing to ignore the warning, you are directed to the http:// site rather than remainig on the https:// site.

The website I refer too is https://www.blackfishcampus.com

I have attached images of the URL Bar in IE9 (but it also occurs in Chrome, Firefox and Opera) and the warning I refer too.

Please can you offer any advice as to how to overcome this problem?

Many thanks in advance,

Bob

Just change the http:// https:// in includes/templates/override/common/tpl_main_page.php

Thanks,

Anne

3 Apr 2015, 5:26 PM
#336
bobc avatar

bobc

New Zenner

Join Date:
Jun 2013
Location:
UK
Posts:
49
Plugin Contributions:
0

Re: Winchester Responsive

picaflor-azul:

Just change the http:// https:// in includes/templates/override/common/tpl_main_page.php

Thanks,

Anne

Hi Anne,

Thanks for the input, but now I am little confused. I made the changes in admin/includes/configure.php and /includes/configure.php but I can't for the life of me see where to make the changes in the /includes/templates/westminster/common/html_header.php!

This is the code at the top of that file, in my site.

I already have the Base href set to SSL should I be changing something else?

  • load the module for generating page meta-tags
    /
    require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));
    /
    *
  • output main page HEAD tag and related headers/meta-tags, etc
    */
    ?>
<?php // (BOF - 2.1) Responsive DIY Template Default for 1.5.x (65) if (!class_exists('Mobile_Detect')) { include_once(DIR_WS_CLASSES . 'Mobile_Detect.php'); $detect = new Mobile_Detect; } // (EOF - 2.1) Responsive DIY Template Default for 1.5.x (65) ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?>> <head> <title><?php echo META_TAG_TITLE; ?></title> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" /> <meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" /> <meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" /> <meta http-equiv="imagetoolbar" content="no" /> <meta name="author" content="The Zen Cart® Team. Responsive zen cart design by Picaflor Azul. " /> <meta name="generator" content="shopping cart program by Zen Cart®, <http://www.zen-cart.com> eCommerce" /> <?php // (BOF - 2.1) Responsive DIY Template Default for 1.5.x (65) ?> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" /> <?php // (EOF - 2.1) Responsive DIY Template Default for 1.5.x (65) ?> <?php if (defined('ROBOTS_PAGES_TO_SKIP') && in_array($current_page_base,explode(",",constant('ROBOTS_PAGES_TO_SKIP'))) || $current_page_base=='down_for_maintenance' || $robotsNoIndex === true) { ?> <meta name="robots" content="noindex, nofollow" /> <?php } ?> <?php if (defined('FAVICON')) { ?> <link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" /> <link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" /> <?php } //endif FAVICON ?> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" /> <?php if (isset($canonicalLink) && $canonicalLink != '') { ?> <link rel="canonical" href="<?php echo $canonicalLink; ?>" /> <?php } ?> <?php
3 Apr 2015, 5:43 PM
#337
bobc avatar

bobc

New Zenner

Join Date:
Jun 2013
Location:
UK
Posts:
49
Plugin Contributions:
0

Re: Winchester Responsive

Hi Anne,

Disregard my last, I was looking at the wrong file, should have been tpl_main_page - READ THE DAMN MESSAGE BOB!!! DOH!
:blush:
Will give it a try and see what happens.

Bob

3 Apr 2015, 7:38 PM
#338
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

I just submitted an updated version of the template package. Thank you to everyone who posted about bugs and a big thank you to Steve (torvista) who pointed out a list of improvements :smile:

04/02/2015-------new readme file
04/02/2015-------updated php mobile detect to version 2.8.12
04/02/2015-------remove #menu code from reponsive_tablet.css
04/02/2015-------remove margin-top from #navMainWrapper{margin-top:-100px;width:42%;} from responsive_tablet.css
04/02/2015-------http://www.zen-cart.com/showthread.php?216242-Winchester-Black-Responsive-Template&p=1274723#post1274723
04/02/2015-------corrected set_function in installer file
04/02/2015-------cleaned up includes/languages/english/winchester_responsive/button_names.php
04/02/2015-------cleaned up includes/languages/english/winchester_responsive/header.php
04/02/2015-------updated includes/languages/english/winchester_responsive/checkout_shipping.php
04/02/2015-------updated includes/languages/english/winchester_responsive/meta_tags.php
04/02/2015-------updated includes/languages/english/winchester_responsive/product_info.php
04/02/2015-------updated includes/modules/sideboxes/winchester_responsive/information.php
04/02/2015-------updated includes/templates/winchester_responsive/common/html_header.php
04/02/2015-------updated YOUR_ADMIN_FOLDER/layout_controller.php
04/02/2015-------added template screen shot
04/02/2015-------fixed validation error in includes/templates/winchester_responsive/sideboxes/tpl_new_products.php
04/02/2015-------fixed validation error in includes/languages/english/extra_definitions/winchester_responsive/winchester_responsive_defines.php
04/02/2015-------fixed validation error in includes/templates/winchester_responsive/templates/tpl_dgReview.php
04/02/2015-------updated includes/languages/winchester_responsive/english.php
04/02/2015-------installed zen colorbox

As always if you find any bugs or have suggestions for improvements, please post them here so I can include them in the next update.

Thanks,

Anne

6 Apr 2015, 5:48 PM
#339
darkmen avatar

darkmen

New Zenner

Join Date:
Jan 2013
Posts:
45
Plugin Contributions:
0

Re: Winchester Responsive

Great template, but I have a problem with multilanguage web. English without problem. But I offer website in German, Czech and French language and if I edit for ex. ABOUT US , website show me "O n�s". I use 1.5.4 version with UTF8, what is it possible to change? Old items, like "Conditions of use",... are without problems with accents...

THX

7 Apr 2015, 12:06 AM
#340
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Winchester Responsive

DarkMen:

Great template, but I have a problem with multilanguage web. English without problem. But I offer website in German, Czech and French language and if I edit for ex. ABOUT US , website show me "O n�s". I use 1.5.4 version with UTF8, what is it possible to change? Old items, like "Conditions of use",... are without problems with accents...

THX

This is not a template related problem, it is a character set problem. If you do a forum search for this problem you will find many threads with the answer to how to fix it.

Thanks,

Anne