Zen Cart Logo
Forums / Addon Templates / Westminster New

Westminster New

Views: 494,220

Results 861 to 880 of 1,865
1 Apr 2015, 5:14 AM
#861
nesum18 avatar

nesum18

New Zenner

Join Date:
Jun 2012
Posts:
50
Plugin Contributions:
0

Westminster New

Sorry Ann,
I had another question, how do I make it zoom in when I hover over the image?

1 Apr 2015, 1:39 PM
#862
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

chelseaneedshelp:

Thanks, Anne! Just to be sure, is this the correct one i need to install?:

http://www.zen-cart.com/downloads.php?do=file&id=1957

thanks!

No, but you can install that one if you will be using more than one language.

Thanks,

Anne

1 Apr 2015, 1:40 PM
#863
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

nesum18:

Hi Ann, I actually just replaced all files from 'classes > zen_lightbox' from the newly downloaded version of the template and it worked like a charm! :D yipppeee!

Thank you for all your help and your handwork to provide us with this amazing template :) Lots of love and blessings to you! <3

I am happy that you figured it out ;)

Thanks,

Anne

1 Apr 2015, 1:40 PM
#864
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

nesum18:

Sorry Ann,
I had another question, how do I make it zoom in when I hover over the image?

You need to install another plugin for this.

Thanks,

Anne

1 Apr 2015, 2:58 PM
#865
denison avatar

denison

New Zenner

Join Date:
Sep 2011
Posts:
20
Plugin Contributions:
0

Re: Westminster New

not having any luck searching - perhaps a hint on what I should search for? "top menu" doesn't return any results. Please forgive any lack of terminology mistakes on my part.

Cheers

picaflor-azul:

The easiest way to find out which files you need to edit is to use the admin--tools--developers toolkit ;)

Thanks,

Anne

1 Apr 2015, 3:10 PM
#866
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

denison:

not having any luck searching - perhaps a hint on what I should search for? "top menu" doesn't return any results. Please forgive any lack of terminology mistakes on my part.

Cheers

You want to search for text that is actually in the area that you want to edit.

Please see the tutorial about how to use the developers toolkit in the plugins section of this site for more information.

Thanks,

Anne

1 Apr 2015, 4:58 PM
#867
denison avatar

denison

New Zenner

Join Date:
Sep 2011
Posts:
20
Plugin Contributions:
0

Re: Westminster New

picaflor-azul:

You want to search for text that is actually in the area that you want to edit.

Please see the tutorial about how to use the developers toolkit in the plugins section of this site for more information.

Thanks,

Anne

I have already done both of these things but I realize I should have stated such before asking my question. Anyway no worries.

1 Apr 2015, 8:14 PM
#868
erwinsk8 avatar

erwinsk8

New Zenner

Join Date:
Aug 2014
Location:
South Africa
Posts:
27
Plugin Contributions:
0

Re: Westminster New

Hi Anne or anybody else that help me

I am trying to put a "search by brand" dropdown menu under my "product search" field in the header
and then remove the big home top banner to the left of the site and replace that with a simple categories list in its place.

my sites url is https://www.marshallmusicdirect.com i would really appreciate any assistance.

Thank you all in advance

Regards

Erwin

4 Apr 2015, 12:06 PM
#869
frank18 avatar

frank18

Deceased

Join Date:
Nov 2007
Location:
Sunny Coast, Australia
Posts:
3,427
Plugin Contributions:
2

Re: Westminster New

nesum18:

Sorry Ann,
I had another question, how do I make it zoom in when I hover over the image?

Take a look at this plugin: http://www.zen-cart.com/downloads.php?do=file&id=1380

4 Apr 2015, 7:09 PM
#870
bobc avatar

bobc

New Zenner

Join Date:
Jun 2013
Location:
UK
Posts:
49
Plugin Contributions:
0

Re: Westminster New

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

4 Apr 2015, 9:37 PM
#871
redspinnaker avatar

redspinnaker

New Zenner

Join Date:
Oct 2010
Posts:
50
Plugin Contributions:
0

Re: Westminster New

Change slide animation from "slide" to "fade"

Can someone please advise how to make this change?

Thanks a lot
Terry

5 Apr 2015, 1:08 AM
#872
frank18 avatar

frank18

Deceased

Join Date:
Nov 2007
Location:
Sunny Coast, Australia
Posts:
3,427
Plugin Contributions:
2

Re: Westminster New

bobc:

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

6 Apr 2015, 6:33 PM
#873
rongin avatar

rongin

Zen Follower

Join Date:
Feb 2009
Posts:
112
Plugin Contributions:
0

Re: Westminster New

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

7 Apr 2015, 12:07 AM
#874
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

RonGin:

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

7 Apr 2015, 4:45 AM
#875
chelseaneedshelp avatar

chelseaneedshelp

New Zenner

Join Date:
Mar 2015
Location:
Texas
Posts:
12
Plugin Contributions:
0

Re: Westminster New

picaflor-azul:

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...

7 Apr 2015, 1:20 PM
#876
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

chelseaneedshelp:

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 Apr 2015, 2:38 PM
#877
rongin avatar

rongin

Zen Follower

Join Date:
Feb 2009
Posts:
112
Plugin Contributions:
0

Re: Westminster New

thank you I did it and I downloaded the readme
Ron

7 Apr 2015, 3:13 PM
#878
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

RonGin:

thank you I did it and I downloaded the readme
Ron

I am happy that you figured it out ;)

Thanks,

Anne

7 Apr 2015, 5:10 PM
#879
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Westminster New

bobc:

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:

<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:

<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:".

8 Apr 2015, 5:42 AM
#880
chelseaneedshelp avatar

chelseaneedshelp

New Zenner

Join Date:
Mar 2015
Location:
Texas
Posts:
12
Plugin Contributions:
0

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!