I did a fresh install with 1.5.3 and the empty section of the Special page seems to be a normal feature.
On the other hand I can't find out what's the issue with the TEXT_NO_PRODUCTS appearing of the New Products and Featured Products pages.
Printable View
I've looked as much as I know how to find the source of these which is causing problems. I have compared default template files with my edited template files and have not seen anything obvioius.
Anne, can you help? These are excerpts from a "view source" of any product page.
The template doesn't include any /product_info folder
I'm assuming that the doubleslash between the product_info and file name is most likely the culprit, but where to find those 4 edits?
Server error logs has 4 lines of filedoesnotexist error for each product view.
I do not know when it started.
It could be due to an edit made by me.
Code:<script src="includes/templates/westminster_new/product_info//css_browser_selector.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//jquery.slimmenu.min.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//easyResponsiveTabs.js" type="text/javascript"></script>
<script src="includes/templates/westminster_new/product_info//jquery.tabSlideOut.v1.3.js" type="text/javascript"></script>
In case someone else has this in the future.....
5 edits to template files
/includes/templates/westminster_new/common/html_header.php LINE 207
Code:<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98Code:<script src="<?php echo $template->get_template_dir('css_browser_selector.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/css_browser_selector.js' ?>" type="text/javascript"></script>
Code:<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166Code:<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>
Code:<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 366Code:<script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
Code:<script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
includes/templates/westminster_new/common/tpl_main_page.php LINE 372Code:<script src="<?php echo $template->get_template_dir('jquery.tabSlideOut.v1.3.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script>
Code:pathToTabImage: '<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
Code:pathToTabImage: '<?php echo $template->get_template_dir('tab.png',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>',
I'm replacing the easyResponsiveTabs bundled with this template with SNAF, and I need to make sure I remove all the code related to the easyResponsiveTabs.. So far this is the list of affected files I found:
westminster_new\jscript\easyResponsiveTabs.js
westminster_new\css\stylesheet_responsive_tabs.css
westminster_new\templates\tpl_dgReview.php
westminster_new\templates\tpl_product_info_display.php
YOUR_ADMIN_FOLDER\includes\installers\westminster_new\1_0.php
My question is this: Are there more files I might have missed that contain code related to the tabs????