Thread: Westminster New

Page 41 of 187 FirstFirst ... 3139404142435191141 ... LastLast
Results 401 to 410 of 1865
  1. #401
    Join Date
    Dec 2010
    Location
    Thailand
    Posts
    300
    Plugin Contributions
    2

    Default Re: Westminster New

    Quote Originally Posted by Thannaree View Post
    Note that all looks good when you add products.
    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.

  2. #402
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Westminster New

    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>
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  3. #403
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Westminster New

    Quote Originally Posted by RixStix View Post
    I do not know when it started.

    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>

    I DO know when it started.

    After looking at the December 2014 server log, I did find the errors began on Dec 27, coincidentally the same date that Restrict Digital Downloads was installed.

    RDD creates several *_ product_info folders within the template folder.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  4. #404
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by RixStix View Post

    I DO know when it started.

    After looking at the December 2014 server log, I did find the errors began on Dec 27, coincidentally the same date that Restrict Digital Downloads was installed.

    RDD creates several *_ product_info folders within the template folder.
    The problem is related to that module install. I am not familiar with that module so it would be best to ask for help on its support thread.

    Thanks,

    Anne

  5. #405
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Westminster New

    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>
    Code:
    <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>
    includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98
    Code:
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
    Code:
    <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>
    includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166
    Code:
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
    Code:
    <script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
    includes/templates/westminster_new/common/tpl_main_page.php LINE 366
    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>
    Code:
    <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>
    includes/templates/westminster_new/common/tpl_main_page.php LINE 372
    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' ?>',
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  6. #406
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by RixStix View Post
    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>
    Code:
    <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>
    includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98
    Code:
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
    Code:
    <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>
    includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166
    Code:
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
    Code:
    <script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
    includes/templates/westminster_new/common/tpl_main_page.php LINE 366
    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>
    Code:
    <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>
    includes/templates/westminster_new/common/tpl_main_page.php LINE 372
    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' ?>',

    Thanks for posting your solution. These edits are only necessary if using the Restrict Digital Downloads plugin.

    Thanks,

    Anne

  7. #407
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,346
    Plugin Contributions
    94

    Default Re: Westminster New

    Quote Originally Posted by picaflor-azul View Post
    Thanks for posting your solution. These edits are only necessary if using the Restrict Digital Downloads plugin.

    Thanks,

    Anne
    That's not quite true. The code corrections are needed to "play nice" with any plugin that uses the built-in Zen Cart override method that RDD uses.

  8. #408
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by lat9 View Post
    That's not quite true. The code corrections are needed to "play nice" with any plugin that uses the built-in Zen Cart override method that RDD uses.
    I see, thank you for posting ;) I'll make a note of these changes for a future template upgrade.

    Thanks,

    Anne

  9. #409
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Westminster New

    Quote Originally Posted by RixStix View Post
    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>
    Code:
    <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>
    includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php LINE 98
    Code:
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.slimmenu.min.js' ?>" type="text/javascript"></script>
    Code:
    <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>
    includes/templates/westminster_new/templates/tpl_product_info_display.php LINE 166
    Code:
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
    Code:
    <script src="<?php echo $template->get_template_dir('easyResponsiveTabs.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/easyResponsiveTabs.js' ?>" type="text/javascript"></script>
    includes/templates/westminster_new/common/tpl_main_page.php LINE 366
    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>
    Code:
    <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>
    includes/templates/westminster_new/common/tpl_main_page.php LINE 372
    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' ?>',
    Thanks for this..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #410
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Westminster New

    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????
    Last edited by DivaVocals; 6 Jan 2015 at 07:55 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 

Similar Threads

  1. v155 Getting ajax error in v155 with v154 Westminster template
    By godt in forum General Questions
    Replies: 3
    Last Post: 11 Jul 2016, 12:41 AM
  2. v155 Getting ajax error in v155 with v154 Westminster template
    By MCS_Computers in forum General Questions
    Replies: 10
    Last Post: 21 Mar 2016, 03:58 PM
  3. v154 Modifying Top Menu - Westminster New
    By chelseaneedshelp in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 27 Mar 2015, 04:28 PM
  4. Westminster New doesn't work on mobile phone
    By Pompidompie in forum Addon Templates
    Replies: 3
    Last Post: 26 Mar 2015, 10:34 PM
  5. v151 westminster new Share and Connect
    By Larry0652 in forum Addon Templates
    Replies: 8
    Last Post: 24 Oct 2014, 03:30 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR