Re: Winchester Responsive
Hello Anne I am using the Winchester Responsive template a week ago I updated my site from zen 1.5.5b or c to 1.5.6c ever since the update all I get is my logo and the very top of the page no images and in zen cart there are no templates listed I have tried reloading them but to no avail my site is www.g-linehobbies.com if you could point me in the right direction it would be greatly appreciated I have tried everything I could think of. :(
Re: Winchester Responsive
I'm currently using this template with Zen cart version 1.5.5d and PHP 5.6, hosting company switched to PHP 7.2 and the site crashed. Reverted back to PHP 5.6 and it works. Looking to upgrade to ZC 1.5.6 and was wondering if this template will work with it as it was designed for ZC 1.5.4?
Thank you
1 Attachment(s)
Re: Winchester Responsive
Hi
I have a website using version 1.5.5e and I am trying to installing the Winchester Responsive template, but when I try to log into the front end, I get the attached message:
Attachment 18689
i was reading on one of the other template pages that it could be a possible conflict with the jscript_framework.php but nothing is lear where I can get an older copy of this file.
Please could anyone advise?
Thanks in advance.
Re: Winchester Responsive
Use the copy of jscript_framework.php from a fresh download of 1.5.5.
Re: Winchester Responsive
Re: Winchester Responsive
Thanks answer=42 and swguy that worked. :cool:
Re: Winchester Responsive
Layout spacing issue on products list page. On products list page, for "sold out" items, there is a link to product labeled "details" but the cart button overlaps it and it is hard to click. You can see the issue on the Winchester Responsive Demo page here (sold out product):
http://www.zenlyzen.com/responsive-zen-cart-templates/index.php?main_page=index&cPath=23
And a screenshot from my dev site here:
https://imgur.com/SIf4Jgk
Can this be fixed? If so, how?
Re: Winchester Responsive
Hi
I am just about to upgrade to Zencart 1.5.6c. Please could I just check with you that this template is compatible with the new build?
Kind regards
Re: Winchester Responsive
Hi
I took a chance and this template works great on one of my sites. However I am in the middle of running a fresh install for another site and the page is broken. In the logs I get this error message:
Quote:
Fatal error: 1054:Unknown column 'pages_title' in 'order clause' :: select * from ezpages where status_header = 1 order by header_sort_order, pages_title ==> (as called by) MyPath\includes\modules\sideboxes\winchester_responsive\ezpages_drop_menu.php on line 23 <== in MyPath\includes\classes\db\mysql\query_factory.php on line 171.
I haven't got to the upgrade stage yet, but this only happens when I activate the winchester responsive template.
Please help
Re: Winchester Responsive
You have to refactor that query to reflect how the ezpages tables were split up. Edit
/includes/modules/sideboxes/winchester_responsive/ezpages_drop_menu.php
and change
$page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by header_sort_order, pages_title");
to
$page_query = $db->Execute("select * from " . TABLE_EZPAGES . " e, " . TABLE_EZPAGES_CONTENT . " ec WHERE e.pages_id = ec.pages_id AND status_header = 1 order by header_sort_order, pages_title");