Thread: Westminster New

Page 88 of 187 FirstFirst ... 3878868788899098138 ... LastLast
Results 871 to 880 of 1865
  1. #871
    Join Date
    Oct 2010
    Posts
    50
    Plugin Contributions
    0

    Default Re: Westminster New

    Change slide animation from "slide" to "fade"

    Can someone please advise how to make this change?

    Thanks a lot
    Terry

  2. #872
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Westminster New

    Quote Originally Posted by bobc View Post
    Not sure if this has been posted before but recenetly I had major with sites that use the Westminster New and Winchester Responsive when using SSL certificates I kept getting a broken padlock. ..........
    I hope this will help some folks.

    Bob
    Thanks Bob, much appreciated

  3. #873
    Join Date
    Feb 2009
    Posts
    112
    Plugin Contributions
    0

    Default Re: Westminster New trying to edit banner in the middle of the index page

    Hello,
    I have installed the Westiminister template and really love it.
    I want to edit the path and the image which is shown when the display image is gone over with cursor. Ie. Pearl necklace then goes to "LOREM IPSUM" SHOP NOW.

    I don't seem to find the shop now in the banner pictures or able to edit it the banner tool. I am using 1.5.3 zen cart

    Thank you,
    Ron Gin
    Stuffwholesale

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

    Default Re: Westminster New trying to edit banner in the middle of the index page

    Quote Originally Posted by RonGin View Post
    Hello,
    I have installed the Westiminister template and really love it.
    I want to edit the path and the image which is shown when the display image is gone over with cursor. Ie. Pearl necklace then goes to "LOREM IPSUM" SHOP NOW.

    I don't seem to find the shop now in the banner pictures or able to edit it the banner tool. I am using 1.5.3 zen cart

    Thank you,
    Ron Gin
    Stuffwholesale
    There are instructions for how to make these changes in the readme.html file included in the template package.

    Thanks,

    Anne

  5. #875
    Join Date
    Mar 2015
    Location
    Texas
    Posts
    12
    Plugin Contributions
    0

    Default Re: Westminster New

    Quote Originally Posted by picaflor-azul View Post
    No, but you can install that one if you will be using more than one language.

    Thanks,

    Anne
    I tried installing that one and i tried installing this one: http://www.zen-cart.com/downloads.php?do=file&id=1726 (which has an upload date preceding that of this template, so it doesn't look like there is a "new" version of it, right?) and neither helped the situation. Can you let me know which footer menu i need to update to or what it is in the code i need to fix?

    i can't be the only one that's dealt with this, right? how has everyone else solved it? im going so insane...

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

    Default Re: Westminster New

    Quote Originally Posted by chelseaneedshelp View Post
    I tried installing that one and i tried installing this one: http://www.zen-cart.com/downloads.php?do=file&id=1726 (which has an upload date preceding that of this template, so it doesn't look like there is a "new" version of it, right?) and neither helped the situation. Can you let me know which footer menu i need to update to or what it is in the code i need to fix?

    i can't be the only one that's dealt with this, right? how has everyone else solved it? im going so insane...
    I would install the multi language version of the plugin as it is the most recently updated.

    Thanks,

    Anne

  7. #877
    Join Date
    Feb 2009
    Posts
    112
    Plugin Contributions
    0

    Default Re: Westminster New trying to edit banner in the middle of the index page

    thank you I did it and I downloaded the readme
    Ron

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

    Default Re: Westminster New trying to edit banner in the middle of the index page

    Quote Originally Posted by RonGin View Post
    thank you I did it and I downloaded the readme
    Ron
    I am happy that you figured it out ;)

    Thanks,

    Anne

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

    Default Re: Westminster New

    Quote Originally Posted by bobc View Post
    Not sure if this has been posted before but recenetly I had major with sites that use the Westminster New and Winchester Responsive when using SSL certificates I kept getting a broken padlock. After hours of searching I located it to two JavaScript files. Namely the files are:

    tpl_modules_mobile_categories_tabs.php which call the jquery.slimmenu.min.js This still gets pulled from your original http site so you need to change this to https: as follows...

    <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="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>

    NOTE: The above ONLY applies if you are using cloudflare to speed up the loading of the site to your users.

    Also the file tpl_index_default.php which calls jscript/jquery.carouFredSel-6.0.2.js needs to be changed to call the file from the HTTPS_Server rather than the HTTP_SERVER as follows...

    <script type="text/javascript" src="<?php echo HTTPS_SERVER . DIR_WS_CATALOG . DIR_WS_TEMPLATE; ?>jscript/jquery.carouFredSel-6.0.2.js"></script>

    And finally tpl_categories_index.php which calls jscript/jquery.carouFredSel-6.0.2.js needs to be pulled from HTTPS_SERVER and not from HTTP_SERVER as follows...

    <script type="text/javascript" src="<?php echo HTTPS_SERVER . DIR_WS_CATALOG . DIR_WS_TEMPLATE; ?>jscript/jquery.carouFredSel-6.0.2.js"></script>

    I hope this will help some folks.

    Bob
    Correction..
    This:
    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>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>

    Should be this:
    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>
    <script src="//cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>
    Note the removal of the "https:".
    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. #880
    Join Date
    Mar 2015
    Location
    Texas
    Posts
    12
    Plugin Contributions
    0

    Default Re: Westminster New

    Hey Anne,

    I need help again. One of my titles disapeared in the Information Side bar. When I use firefox's developer's took kit, I can add it back in. But, I can't find which actual file I need to modify. I have used the developer's tool kit and have still come up short in finding the right files. Do you know which file lists the content in the information sidebox?

    I'm trying to find specifically where the <li> are defined (i think).

    Thanks so much for all your help!

 

 

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