I would like to remove the shopping cart from appearing at the top of this template. It shows a 0 for items and $0.00 for the total, but I do not want it to appear there (0 - $0.00). How can I turn this off? Thanks! :-)
I would like to remove the shopping cart from appearing at the top of this template. It shows a 0 for items and $0.00 for the total, but I do not want it to appear there (0 - $0.00). How can I turn this off? Thanks! :-)
I would also like to remove the "Register / Log-in" option in the header that is up by the cart. ???
Hi,
I have installed this template on the Italian version of Zen Cart. It work greatly except for the ezpages_drop_menu.php. If I leave the SINGLE COLUM status to ON it will generate this error:
Actually I have found that this error appear when there are Multilanguage Ezpage and the template doesn't support it. Is there a way to fix this? I like my EzpagesPHP Code:
[18-Mar-2015 19:34:30 Europe/Paris] PHP 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) C:\wamp\www\negozio154\includes\modules\sideboxes\winchester_black\ezpages_drop_menu.php on line 23 <== in C:\wamp\www\negozio154\includes\classes\db\mysql\query_factory.php on line 155
[18-Mar-2015 19:34:30 Europe/Paris] PHP Stack trace:
[18-Mar-2015 19:34:30 Europe/Paris] PHP 1. {main}() C:\wamp\www\negozio154\index.php:0
[18-Mar-2015 19:34:30 Europe/Paris] PHP 2. require() C:\wamp\www\negozio154\index.php:97
[18-Mar-2015 19:34:30 Europe/Paris] PHP 3. require() C:\wamp\www\negozio154\includes\templates\winchester_black\common\tpl_main_page.php:181
[18-Mar-2015 19:34:30 Europe/Paris] PHP 4. require() C:\wamp\www\negozio154\includes\templates\winchester_black\common\tpl_header.php:102
[18-Mar-2015 19:34:30 Europe/Paris] PHP 5. require() C:\wamp\www\negozio154\includes\templates\winchester_black\templates\tpl_modules_mobile_categories_tabs.php:85
[18-Mar-2015 19:34:30 Europe/Paris] PHP 6. queryFactory->Execute() C:\wamp\www\negozio154\includes\modules\sideboxes\winchester_black\ezpages_drop_menu.php:23
[18-Mar-2015 19:34:30 Europe/Paris] PHP 7. queryFactory->set_error() C:\wamp\www\negozio154\includes\classes\db\mysql\query_factory.php:262
[18-Mar-2015 19:34:30 Europe/Paris] PHP 8. queryFactory->show_error() C:\wamp\www\negozio154\includes\classes\db\mysql\query_factory.php:132
[18-Mar-2015 19:34:30 Europe/Paris] PHP 9. trigger_error() C:\wamp\www\negozio154\includes\classes\db\mysql\query_factory.php:155
.
Zencart version 1.5.4 (test server)
Ok i found the solution...
Simply find ezpages_drop_menu.php and edit, find:
replace with:PHP Code:
$page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by header_sort_order, pages_title");
DonePHP Code:
$page_query = $db->Execute("select e.pages_id, e.page_open_new_window, e.page_is_ssl, e.alt_url, e.alt_url_external, e.toc_chapter, et.pages_title
from " . TABLE_EZPAGES . " e, " . TABLE_EZPAGES_TEXT . " et
where e.pages_id = et.pages_id
and et.languages_id = '" . (int)$_SESSION['languages_id'] . "'
and status_footer = 1 and footer_sort_order > 0 order by footer_sort_order, pages_title");
![]()
http://cloud10shop.com
thank you
Thanks! I found what I needed to edit there.
Bookmarks