Zen Cart Logo
Forums / Addon Templates / Westminster New

Westminster New

Views: 494,276

Results 1,121 to 1,140 of 1,865
12 Aug 2015, 7:24 PM
#1121
chrissyann avatar

chrissyann

New Zenner

Join Date:
Oct 2014
Location:
United Kingdom
Posts:
24
Plugin Contributions:
0

Westminster New

oh thank you Anne, that would be great :-) I pretty much got everything done now, just need to rectify the shop links in the footer and the text "Responsive Zencart Template" in the header but cannot find where it is. Oh and the text for the custom slider dont seem to be able to find it.

http://www.pixelsandartdesign.com/store/

12 Aug 2015, 8:04 PM
#1122
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

chrissyann:

oh thank you Anne, that would be great :-) I pretty much got everything done now, just need to rectify the shop links in the footer and the text "Responsive Zencart Template" in the header but cannot find where it is. Oh and the text for the custom slider dont seem to be able to find it.

http://www.pixelsandartdesign.com/store/

I checked the footer links and they are all going to the correct pages. You have some errors. You need to check your logs folder and correct them. My guess is that you have plugins installed and you did not copy the override files to the new template override folder.

If you look at the readme.html file it gives instructions for how to customize the slide out text. If you do a search of the forum you will find a tutorial on this site about how to change the site title.

Thanks,

Anne

12 Aug 2015, 8:07 PM
#1123
chrissyann avatar

chrissyann

New Zenner

Join Date:
Oct 2014
Location:
United Kingdom
Posts:
24
Plugin Contributions:
0

Re: Westminster New

ah okay Anne I did wonder if it was something like that, but just wasn't to sure, thank you for having a look for me, I appreciate that.

12 Aug 2015, 8:11 PM
#1124
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

chrissyann:

ah okay Anne I did wonder if it was something like that, but just wasn't to sure, thank you for having a look for me, I appreciate that.

No problem ;)

Thanks,

Anne

14 Aug 2015, 2:37 PM
#1125
chrissyann avatar

chrissyann

New Zenner

Join Date:
Oct 2014
Location:
United Kingdom
Posts:
24
Plugin Contributions:
0

Re: Westminster New

Hi Anne,

Just thought I would show you I got all those little text things sorted, thought you might want to have a look. So thanks for your guidance, I am feeling quite chuffed with myself seen as I am a beginner with all this stuff.

Just have to fix those links now but I am struggling with that one a bit :)

I do have a question for you though, where it says blog forum etc I would like to centralise those can I assume that this is done in a CSS file.

http://www.pixelsandartdesign.com/store/

14 Aug 2015, 2:42 PM
#1126
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

chrissyann:

Hi Anne,

Just thought I would show you I got all those little text things sorted, thought you might want to have a look. So thanks for your guidance, I am feeling quite chuffed with myself seen as I am a beginner with all this stuff.

Just have to fix those links now but I am struggling with that one a bit :)

I do have a question for you though, where it says blog forum etc I would like to centralise those can I assume that this is done in a CSS file.

http://www.pixelsandartdesign.com/store/

The template is not designed to use the top categories tabs menu. If you want to use it, you need to style it to match the template. You can add a text-align:center to the links to make them align to the center of the page.

Thanks,

Anne

14 Aug 2015, 2:48 PM
#1127
chrissyann avatar

chrissyann

New Zenner

Join Date:
Oct 2014
Location:
United Kingdom
Posts:
24
Plugin Contributions:
0

Re: Westminster New

oh okay thank you

16 Aug 2015, 5:37 AM
#1128
frank18 avatar

frank18

Deceased

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

Re: Westminster New

Thannaree:

There seems to be 2 little bugs:

  • When there is no product on the Featured page, there is a TEXT_NO_PRODUCTS but not the actual text.
  • When there is no product on the Specials page, there is nothing at all on the page (No title, Sort-by box etc).

Please advise

The issue where product listing pages (eg new products) display TEXT_NO_PRODUCTS instead of something like "More new products will be added soon. Please check back later" (TEXT_NO_NEW_PRODUCTS) is caused by the file

/includes/templates/westminster_new/templates/tpl_products_new_default.php

To fix that bug open that file and change line 19 from:

require($template->get_template_dir('tpl_modules_product_listing.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_product_listing.php');

to:

require($template->get_template_dir('tpl_modules_product[B]s_new[/B]_listing.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_product[B]s_new[/B]_listing.php');

I have only tackled the new products but not specials nor featured products listings.

Anne might have a solution along similar lines.

Cheers / Frank

16 Aug 2015, 10:24 AM
#1129
frank18 avatar

frank18

Deceased

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

Re: Westminster New

Sorry folks, the 'solution' posted above has ramifications on the listing of 'All Products'. :oops:

The better solution is to copy

includes/languages/english/featured_products.php

to

includes/languages/english/westminster_new/featured_products.php

and add to the latter

define('TEXT_NO_PRODUCTS', 'There are currently no featured products. Please check back later.');

Same for includes/languages/english/products_new.php

copy that file to

includes/languages/english/westminster_new/products_new.php

and add to the latter

define('TEXT_NO_PRODUCTS', 'More new products will be added soon. Please check back later.');

My apologies for post #1131 .....

16 Aug 2015, 2:47 PM
#1130
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

frank18:

Sorry folks, the 'solution' posted above has ramifications on the listing of 'All Products'. :oops:

The better solution is to copy

includes/languages/english/featured_products.php

to

includes/languages/english/westminster_new/featured_products.php

and add to the latter

define('TEXT_NO_PRODUCTS', 'There are currently no featured products. Please check back later.');

> 
> Same for **includes/languages/english/products_new.php**
> 
> copy that file to
> 
> **includes/languages/english/westminster_new/products_new.php**
> 
> and add to the latter
>  
> ```php
define('TEXT_NO_PRODUCTS', 'More new products will be added soon. Please check back later.');

My apologies for post #1131 .....

Thanks for posting ;) I will add this to a list for the next package update.

Thanks,

Anne

17 Aug 2015, 1:03 AM
#1131
frank18 avatar

frank18

Deceased

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

Re: Westminster New

picaflor-azul:

Thanks for posting ;) I will add this to a list for the next package update.

Thanks,

Anne

Thanks Anne,

Same needs to be done for

includes/languages/english/products_all.php copy to includes/languages/english/westminster_new/products_all.php

and

includes/languages/english/specials.php copy to includes/languages/english/westminster_new/specials.php

then add the relevant definitions for TEXT_NO_PRODUCTS to the copied files.

17 Aug 2015, 8:43 AM
#1132
thannaree avatar

thannaree

Zen Follower

Join Date:
Dec 2010
Location:
Thailand
Posts:
304
Plugin Contributions:
1

Re: Westminster New

frank18:

Thanks Anne,

Same needs to be done for

includes/languages/english/products_all.php copy to includes/languages/english/westminster_new/products_all.php

and

includes/languages/english/specials.php copy to includes/languages/english/westminster_new/specials.php

then add the relevant definitions for TEXT_NO_PRODUCTS to the copied files.

Better late than never :-) Thanks much!!

22 Aug 2015, 9:55 PM
#1133
daba_do avatar

daba_do

New Zenner

Join Date:
Feb 2015
Location:
Netherlands
Posts:
15
Plugin Contributions:
0

Re: Westminster New

What would be the best way to go about adding an additional checkbox to step 2 of the checkout process?
(I want to add a checkbox that says they understand the return policy)

Would simply copying and pasting the logic and html from the "i have read and agreed" checkbox be sufficient?

Any info on best practices would be marvelous.

Regards,

23 Aug 2015, 12:11 AM
#1134
lruskauff avatar

lruskauff

Totally Zenned

Join Date:
Sep 2008
Location:
WA
Posts:
559
Plugin Contributions:
0

Re: Westminster New

I'm not sure what you are selling but that would be a real turn off to me. Are you sure?

23 Aug 2015, 3:01 AM
#1135
daba_do avatar

daba_do

New Zenner

Join Date:
Feb 2015
Location:
Netherlands
Posts:
15
Plugin Contributions:
0

Re: Westminster New

Iruskauff, you bring up a very valid point.

Lets assume I am not making these business decisions.
But rather trying to figure out how to do it!

:cool:

23 Aug 2015, 4:06 AM
#1136
lruskauff avatar

lruskauff

Totally Zenned

Join Date:
Sep 2008
Location:
WA
Posts:
559
Plugin Contributions:
0

Re: Westminster New

Well, I would start by copying the logic from the "i have read" as you suggested. But you might need to add something to the database if they actually save that information with the customers order, or if you want to save it. Other than that I have to leave the advice up to someone more experienced.

24 Aug 2015, 2:48 PM
#1137
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

Daba_do:

What would be the best way to go about adding an additional checkbox to step 2 of the checkout process?
(I want to add a checkbox that says they understand the return policy)

Would simply copying and pasting the logic and html from the "i have read and agreed" checkbox be sufficient?

Any info on best practices would be marvelous.

Regards,

I believe that this question has been asked many times on the forum so if you do a search you will find the related posts ;)

Thanks,

Anne

25 Aug 2015, 12:28 AM
#1138
rozdesignz avatar

rozdesignz

Zencart Website Owner

Join Date:
Aug 2011
Location:
Tampa Bay, Florida USA
Posts:
17
Plugin Contributions:
0

Re: Westminster New

Did you find the patch link? I have the same issue on my android LG phone

30 Aug 2015, 9:37 PM
#1139
zinctwentyone avatar

zinctwentyone

New Zenner

Join Date:
Aug 2015
Location:
Indianapolis
Posts:
21
Plugin Contributions:
0

Re: Westminster New

I recently changed from Dover to this theme. This theme seems to work much better for what we were looking for, I really like the slider, categories and footer on this awesome theme.

How can you add small emblems next to the category names in the side category box?

30 Aug 2015, 11:04 PM
#1140
zinctwentyone avatar

zinctwentyone

New Zenner

Join Date:
Aug 2015
Location:
Indianapolis
Posts:
21
Plugin Contributions:
0

Re: Westminster New

Also wanted to know how to change from the British flag on the top of the screen to an American flag.