Zen Cart Logo
Forums / Addon Templates / Winchester Responsive

Winchester Responsive

Views: 443,040

Results 381 to 400 of 953
7 May 2015, 2:42 PM
#381
corbe23 avatar

corbe23

New Zenner

Join Date:
May 2015
Location:
United States
Posts:
7
Plugin Contributions:
0

Winchester Responsive

I got everything working on my website just fine. But now I'm having issues with it on tablet devices. It works fine on mobiles, just not tablets. On the tablet vertically the header menu completely disappears. Horizontally, it looks like it should be there b/c the drop down arrows are visible but the words aren't. The menu titles do not exist, but in the drop down menu the font is just white so it can't be seen. It should be black.

Thanks in advance for any help.
Corinne

7 May 2015, 2:56 PM
#382
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

corbe23:

I got everything working on my website just fine. But now I'm having issues with it on tablet devices. It works fine on mobiles, just not tablets. On the tablet vertically the header menu completely disappears. Horizontally, it looks like it should be there b/c the drop down arrows are visible but the words aren't. The menu titles do not exist, but in the drop down menu the font is just white so it can't be seen. It should be black.

Thanks in advance for any help.
Corinne

If you post a link to your site I can take a look.

Thanks,

Anne

7 May 2015, 3:16 PM
#383
corbe23 avatar

corbe23

New Zenner

Join Date:
May 2015
Location:
United States
Posts:
7
Plugin Contributions:
0

Re: Winchester Responsive

8 May 2015, 5:31 PM
#384
chattunnel avatar

chattunnel

New Zenner

Join Date:
Aug 2012
Posts:
45
Plugin Contributions:
0

Re: Winchester Responsive

picaflor-azul:

From the readme.html file:

Thanks,

Anne


this is a screen shot after I followed your directions, there is no current social links where you said for me to go and edit

8 May 2015, 6:05 PM
#385
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

chattunnel:


this is a screen shot after I followed your directions, there is no current social links where you said for me to go and edit

You need to click on the line after that one that has no title.

Thanks,

Anne

9 May 2015, 1:28 AM
#386
chattunnel avatar

chattunnel

New Zenner

Join Date:
Aug 2012
Posts:
45
Plugin Contributions:
0

Re: Winchester Responsive

picaflor-azul:

You need to click on the line after that one that has no title.

Thanks,

Anne

Thank you that finally did the trick!

9 May 2015, 2:43 PM
#387
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

chattunnel:

Thank you that finally did the trick!

I am happy that you figured it out ;)

Thanks,

Anne

14 May 2015, 6:27 PM
#388
kwright avatar

kwright

Zen Follower

Join Date:
Nov 2004
Posts:
355
Plugin Contributions:
0

Re: Winchester Responsive

Greetings All,

I've made one fix and one upgrade to the Home Page Banner Slider that I wanted to share. :smile:

The Fix - Banners not displayed in the order set in the banner manager:
Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

Find

$banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide'");

Add order by banners_sort_order to end of query

$banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide' order by banners_sort_order");

The Upgrade - Added the ability to NOT show Banner Title on the Banner image selectively by Banner:
Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

Find - There are 3 instances

<span class="banner"><span>' . $banner->fields['banners_title'] . '</span></span>

Replace With

<span class="banner">'.( strtolower($banner->fields['banners_title']) != 'none' ? '<span>' . $banner->fields['banners_title'] . '</span>' : '' ).'</span>

To disable the display of the Banner Title, just enter the work none or NONE for the title. It's not case sensitive!

Hope this helps! :D

14 May 2015, 7:39 PM
#389
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

kwright:

Greetings All,

I've made one fix and one upgrade to the Home Page Banner Slider that I wanted to share. :smile:

The Fix - Banners not displayed in the order set in the banner manager:
Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

Find

$banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide'");

> 
> Add order by banners_sort_order to end of query
> ```
$banner = $db->Execute("SELECT banners_id, banners_title, banners_image, banners_html_text, banners_open_new_windows, banners_url FROM " . TABLE_BANNERS . " WHERE status = 1 AND banners_group = 'homepageslide' order by banners_sort_order");

The Upgrade - Added the ability to NOT show Banner Title on the Banner image selectively by Banner:
Look in: includes\templates\winchester_responsive\common\tpl_home_slider.php

Find - There are 3 instances

<span class="banner"><span>' . $banner->fields['banners_title'] . '</span></span>

> 
> Replace With
> ```
<span class="banner">'.( strtolower($banner->fields['banners_title']) != 'none' ? '<span>' . $banner->fields['banners_title'] . '</span>' : '' ).'</span>

To disable the display of the Banner Title, just enter the work none or NONE for the title. It's not case sensitive!

Hope this helps! :D

Thank you for posting. The fix for the banner sort order is included in the newest package update.

Thank you for posting your code.

Thanks,

Anne

14 May 2015, 9:20 PM
#390
kwright avatar

kwright

Zen Follower

Join Date:
Nov 2004
Posts:
355
Plugin Contributions:
0

Re: Winchester Responsive

picaflor-azul:

Thank you for posting. The fix for the banner sort order is included in the newest package update.

Thank you for posting your code.

Thanks,

Anne

You're welcome Anne. I'm using v1.3, so it doesn't have the fix. Just downloaded 1.4 to see what else has been updated!

Thanks again for sharing and supporting such a great responsive template! :clap:

17 May 2015, 5:42 PM
#391
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

kwright:

You're welcome Anne. I'm using v1.3, so it doesn't have the fix. Just downloaded 1.4 to see what else has been updated!

Thanks again for sharing and supporting such a great responsive template! :clap:

Thank you for using it for your site ;)

Thanks,

Anne

20 May 2015, 4:17 AM
#392
parafanaylya avatar

parafanaylya

Totally Zenned

Join Date:
Jul 2005
Location:
Hoedspruit
Posts:
470
Plugin Contributions:
1

Re: Winchester Responsive

ZC 1.5.4 Winchester Responsive

http://joburgonline.com

I have searched through the thread, and looked for the toggle for *Discount Coupons *and Gift Certificates. The Admin>Modules>Order Totals have been turned off.

Near the footer, these links still appear:

Attachment 15308

20 May 2015, 4:37 AM
#393
parafanaylya avatar

parafanaylya

Totally Zenned

Join Date:
Jul 2005
Location:
Hoedspruit
Posts:
470
Plugin Contributions:
1

Re: Winchester Responsive

Parafanaylya:

ZC 1.5.4 Winchester Responsive

http://joburgonline.com

I have searched through the thread, and looked for the toggle for *Discount Coupons *and Gift Certificates. The Admin>Modules>Order Totals have been turned off.

Near the footer, these links still appear:

Attachment 15308

Found it :Flush:

20 May 2015, 1:49 PM
#394
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

Parafanaylya:

Found it :Flush:

I am happy that you figured it out ;)

Thanks,

Anne

21 May 2015, 4:31 AM
#395
ericbel avatar

ericbel

New Zenner

Join Date:
Feb 2011
Posts:
16
Plugin Contributions:
0

Re: Winchester Responsive

Try to figure 2-3 things....

1 - How can I hide the "top specials bar" ?
2 - How can I hide the menu (categories, information, contact) in the header ?
3 - Where can I find a comprehensive tutorial about how the "layout boxes controller" work ? I turn thing ON/OFF and don't see change. Ex : language selection. Do I have to turn thing ON and go somewhere else to see it on my page ?

For the last, it's a beautiful template ! Thanks Anne !

21 May 2015, 6:12 AM
#396
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,771
Plugin Contributions:
9

Re: Winchester Responsive

Can this be changed from this
$list_box_contents[0][] = array('params' => 'class="productListing-data"',
'text' => TEXT_NO_PRODUCTS);

To this?
$list_box_contents[0][] = array('params' => 'class="productListing-data"',
'text' => More new products will be added soon. Please check back later.);> picaflor-azul:

It is better to do a devlopers tool kit search for the constant TEXT_NO_PRODUCTS and then add your definition to the language file where it is located.

Thanks,

Anne
I'm thinking that the reason this question was asked is that the cart will show TEXT_NO_PRODUCTS when selecting Featured Products and there are none.
The correction that I have found for this is in the file includes/modules/winchester_responsive/product_listing.php.
There seems to be an errant line return in the file that causes the php to break. What that portion of the file is trying to do is to NOT show a Featured Products if there are none.
I have found that changing php $list_box_contents[0][] = array('params' => 'class="productListing-data"', 'text' => TEXT_NO_PRODUCTS); to ```php
$list_box_contents[0][] = array('params' => 'class="productListing-data"','text' => TEXT_NO_PRODUCTS);

I haven't look to see if this problem is a carry over from the Column Layout mod.
21 May 2015, 6:51 AM
#397
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,771
Plugin Contributions:
9

Re: Winchester Responsive

dbltoe:

I'm thinking that the reason this question was asked is that the cart will show TEXT_NO_PRODUCTS when selecting Featured Products and there are none.
The correction that I have found for this is in the file includes/modules/winchester_responsive/product_listing.php.
There seems to be an errant line return in the file that causes the php to break. What that portion of the file is trying to do is to NOT show a Featured Products if there are none.
I have found that changing php $list_box_contents[0][] = array('params' => 'class="productListing-data"', 'text' => TEXT_NO_PRODUCTS); to ```php
$list_box_contents[0][] = array('params' => 'class="productListing-data"','text' => TEXT_NO_PRODUCTS);

> I haven't look to see if this problem is a carry over from the Column Layout mod.While this did fix part of the problem, if the flexible footer menu still lists Featured, you get the dreaded TEXT_NO_PRODUCTS.
More research to be done....
21 May 2015, 2:00 PM
#398
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

dbltoe:

I'm thinking that the reason this question was asked is that the cart will show TEXT_NO_PRODUCTS when selecting Featured Products and there are none.
The correction that I have found for this is in the file includes/modules/winchester_responsive/product_listing.php.
There seems to be an errant line return in the file that causes the php to break. What that portion of the file is trying to do is to NOT show a Featured Products if there are none.
I have found that changing php $list_box_contents[0][] = array('params' => 'class="productListing-data"', 'text' => TEXT_NO_PRODUCTS); to ```php
$list_box_contents[0][] = array('params' => 'class="productListing-data"','text' => TEXT_NO_PRODUCTS);

> I haven't look to see if this problem is a carry over from the Column Layout mod.

Thank you so much for posting ;)  I will look into this and add this to a future update.

Thanks,

Anne
21 May 2015, 2:03 PM
#399
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

dbltoe:

While this did fix part of the problem, if the flexible footer menu still lists Featured, you get the dreaded TEXT_NO_PRODUCTS.
More research to be done....

That's really strange. Please let me know if you figure anything out about this.

Thanks,

Anne

21 May 2015, 2:04 PM
#400
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Winchester Responsive

EricBel:

Try to figure 2-3 things....

1 - How can I hide the "top specials bar" ?
2 - How can I hide the menu (categories, information, contact) in the header ?
3 - Where can I find a comprehensive tutorial about how the "layout boxes controller" work ? I turn thing ON/OFF and don't see change. Ex : language selection. Do I have to turn thing ON and go somewhere else to see it on my page ?

For the last, it's a beautiful template ! Thanks Anne !

1 and 2. If you are going to make css changes to the template I recommend using chrome and its web developer tools. They will tell you the exact line of the file that needs to be edited.

  1. If you do a search on the FAQs on this site you will find a tutorial about the layout boxes controller

Thanks,

Anne