Zen Cart Logo
Forums / Addon Templates / Responsive Sheffield Blue v2.0

Responsive Sheffield Blue v2.0

Views: 309,739

Results 521 to 540 of 1,514
24 Dec 2015, 5:11 PM
#521
tlc avatar

tlc

New Zenner

Join Date:
Dec 2005
Posts:
53
Plugin Contributions:
0

Responsive Sheffield Blue v2.0

TLC:

I have the same problem here... this is what I get when I add something to the shopping cart using Chrome and IE;

An unknown response null: :text/html;
charset=utf-8: :SyntaxError: Unexpected end of input was received while processing an ajax call. The action you requested could not be completed.

This is what I get when I use Firefox;

An unknown response null: :text/html; charset=utf-8: :SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data was received while processing an ajax call. The action you requested could not be completed.

I checked for the file includes/classes/split_page_results.php
The file was already there, but I uploaded it again to be sure... still getting same thing.:dontgetit

Ok, I figured it out! But just in case someone else has this problem, I found out it's the ajax.php file... Zen Cart has an updated ajax.php file. Took care of the problem! :D

27 Dec 2015, 3:59 PM
#522
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

gunni:

You are genious :clap:
Changed in stylesheet.css
left:14px instead of -25px

.ribbon1 {font-size: 16px !important;width: 110.8%;position: relative;background: #24629f;color: #fff; text-align: center;left:14px;}

I am happy that you figured it out ;)

Thanks,

Anne

27 Dec 2015, 4:00 PM
#523
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

EmmaThePoly:

Hello! I was wondering how I would go about adding another tab to the main page box, where the Newest, Featured and Specials tabs are. I am wanting to add a tab for upcoming products- I realise I can add this section below the tabs box but I need it to be more noticable, so an extra tab would be ideal. Please dumb-down instructions as much as you can, as my PHP knowledge is limited :lookaroun Thanks!

There is no easy way to do this. Take a look at one of the tabs that is currently there and then apply the changes to the upcoming products. I would recommend looking at featured products and the related files.

Thanks,

Anne

27 Dec 2015, 4:01 PM
#524
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

TLC:

I have the same problem here... this is what I get when I add something to the shopping cart using Chrome and IE;

An unknown response null: :text/html;
charset=utf-8: :SyntaxError: Unexpected end of input was received while processing an ajax call. The action you requested could not be completed.

This is what I get when I use Firefox;

An unknown response null: :text/html; charset=utf-8: :SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data was received while processing an ajax call. The action you requested could not be completed.

I checked for the file includes/classes/split_page_results.php
The file was already there, but I uploaded it again to be sure... still getting same thing.:dontgetit

Try removing the includes/templates/responsive_sheffield_blue/jscript/jscript_framework.php file

Thanks,

Anne

29 Dec 2015, 2:17 AM
#525
spminis avatar

spminis

Zen Follower

Join Date:
Feb 2015
Location:
USA
Posts:
194
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

I have set up a test site for this template http://testing.spminiatures.com/
I've run into a problem that I can't seem to fix. On the main page I have the categories with images shown and on the category pages I have sub-categories with images. I have it set for 3 per column but the images are not aligning properly. The first two rows are ok and after that, there are 2 images on a row, 1 image on a row, then 3 images on a row, etc.
Before I toll out this template as unworkable for me, could someone please give me a clue as to what it wrong and an idea of how it can be fixed.
Thanks
Carol

29 Dec 2015, 1:12 PM
#526
brittainmark avatar

brittainmark

Totally Zenned

Join Date:
Apr 2009
Posts:
507
Plugin Contributions:
1

Re: Responsive Sheffield Blue v2.0

spminis:

I have set up a test site for this template http://testing.spminiatures.com/
I've run into a problem that I can't seem to fix. On the main page I have the categories with images shown and on the category pages I have sub-categories with images. I have it set for 3 per column but the images are not aligning properly. The first two rows are ok and after that, there are 2 images on a row, 1 image on a row, then 3 images on a row, etc.
Before I toll out this template as unworkable for me, could someone please give me a clue as to what it wrong and an idea of how it can be fixed.
Thanks
Carol

I think this is the issue mentioned here https://www.zen-cart.com/showthread.php?217203-Responsive-Sheffield-Blue-v2-0&p=1293107#post1293107 an other alternative is to us css Flex property on the containing div (however this will only work for certain browsers). You will also need to do a bit of work on the template to get the layout 100%.```
#indexCategories,#alsoPurchased,#whatsNew,#specialsDefault,#productListing
{
display: -webkit-flex;
display: -ms-flexbox;
display: flex;

-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;

}

29 Dec 2015, 5:23 PM
#527
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

spminis:

I have set up a test site for this template http://testing.spminiatures.com/
I've run into a problem that I can't seem to fix. On the main page I have the categories with images shown and on the category pages I have sub-categories with images. I have it set for 3 per column but the images are not aligning properly. The first two rows are ok and after that, there are 2 images on a row, 1 image on a row, then 3 images on a row, etc.
Before I toll out this template as unworkable for me, could someone please give me a clue as to what it wrong and an idea of how it can be fixed.
Thanks
Carol

The url is not working. My guess is that you have different heights for product names or different size images. You can add a javascript to make the heights the same, or add a min-height to make them the same. If you post a working link I can take a link.

Thanks,

Anne

30 Dec 2015, 4:48 PM
#528
fjbern1943 avatar

fjbern1943

Zen Follower

Join Date:
Apr 2015
Location:
United States
Posts:
144
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

I am having the same problem on all my category pages. I looked at your demo site http://zenlyzen.com/mobile-friendly-zen-cart/ and it looks like the demo also has this problem???????????? So why do you keep talking about min-height and or javascript to make the heights the same. Did you or did you not make the image heights the same in the demo?

I am thinking that a template mod or upgrade is required to fix this problem.

30 Dec 2015, 5:36 PM
#529
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

fjbern1943:

I am having the same problem on all my category pages. I looked at your demo site http://zenlyzen.com/mobile-friendly-zen-cart/ and it looks like the demo also has this problem???????????? So why do you keep talking about min-height and or javascript to make the heights the same. Did you or did you not make the image heights the same in the demo?

I am thinking that a template mod or upgrade is required to fix this problem.

If you can post a working link to a page with the problem on your site I can take a look. I already have on the list for a future template update adding a javascript to fix this in any situation.

Thanks,

Anne

30 Dec 2015, 5:53 PM
#530
fjbern1943 avatar

fjbern1943

Zen Follower

Join Date:
Apr 2015
Location:
United States
Posts:
144
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Hi Anne,

goto http://religious-shop.com . I have the home page setup to open with categories. Or goto http://religious-shop.com/jewelry. This situation happens on all category pages.

Thanks, Frank

30 Dec 2015, 6:05 PM
#531
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

fjbern1943:

Hi Anne,

goto http://religious-shop.com . I have the home page setup to open with categories. Or goto http://religious-shop.com/jewelry. This situation happens on all category pages.

Thanks, Frank

If you want to use pure css you need to set a min-height for the containing div. On the home page it would be something like this:

.categoryListBoxContents{min-height:200px;}

the number can be whatever is optimal for your products.

You can also use javascript to do this automatically. I have been using this one:

http://brm.io/jquery-match-height/

Thanks,

Anne

31 Dec 2015, 4:42 PM
#532
fjbern1943 avatar

fjbern1943

Zen Follower

Join Date:
Apr 2015
Location:
United States
Posts:
144
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

picaflor-azul:

If you want to use pure css you need to set a min-height for the containing div. On the home page it would be something like this:

.categoryListBoxContents{min-height:200px;}

> 
> the number can be whatever is optimal for your products.
> 
> You can also use javascript to do this automatically.  I have been using this one:
> 
> <http://brm.io/jquery-match-height/>
> 
> Thanks,
> 
> Anne

Hi Anne,

I used the css min-height for the container in the stylesheet and it works perfectly now.

Thanks, Frank
1 Jan 2016, 2:57 PM
#533
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

fjbern1943:

Hi Anne,

I used the css min-height for the container in the stylesheet and it works perfectly now.

Thanks, Frank

I am happy that you figured it out ;)

Thanks,

Anne

1 Jan 2016, 6:06 PM
#534
fjbern1943 avatar

fjbern1943

Zen Follower

Join Date:
Apr 2015
Location:
United States
Posts:
144
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

picaflor-azul:

I am happy that you figured it out ;)

Thanks,

Anne

You figured it out not me and I thank you for it.

I have another problem. I can not get the tagline to appear under the Store Logo. To see goto: http://religious-shop.com

Thanks

1 Jan 2016, 9:45 PM
#535
germerican avatar

germerican

New Zenner

Join Date:
May 2010
Posts:
27
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

picaflor-azul:

If you want to change the information drop down then you have to edit the tpl_modules_mobile_categories_tabs.php file. If you remove an item be sure to remove the <li> and the matching </li>

Thanks,

Anne

THIS was what I needed :-)

2 Jan 2016, 12:29 AM
#536
germerican avatar

germerican

New Zenner

Join Date:
May 2010
Posts:
27
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

picaflor-azul:

You can use:

ul.slimmenu li.info-li{display:none;}

> 
> Thanks,
> 
> Anne
I see that 3 or 4 times in that file. Which one is the right one? Or all of them?
2 Jan 2016, 1:02 AM
#537
germerican avatar

germerican

New Zenner

Join Date:
May 2010
Posts:
27
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Another problem I have, I removed the picture under the About Us top menu but still have the symbol there that a pic is supposed to be there. I forgot where I removed the pic and want to remove any links pointing to a picture because I do not need a pic here.

2 Jan 2016, 3:25 PM
#538
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

fjbern1943:

You figured it out not me and I thank you for it.

I have another problem. I can not get the tagline to appear under the Store Logo. To see goto: http://religious-shop.com

Thanks

Try adding a bottom margin to the #tagline.

Thanks,

Anne

2 Jan 2016, 3:26 PM
#539
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Responsive Sheffield Blue v2.0

germerican:

Another problem I have, I removed the picture under the About Us top menu but still have the symbol there that a pic is supposed to be there. I forgot where I removed the pic and want to remove any links pointing to a picture because I do not need a pic here.

You can remove the code for the image in the includes/templates/responsive_sheffield_blue/templates/tpl_modules_mobile_categories_tabs.php file.

Thanks,

Anne

3 Jan 2016, 2:02 AM
#540
germerican avatar

germerican

New Zenner

Join Date:
May 2010
Posts:
27
Plugin Contributions:
0

Re: Responsive Sheffield Blue v2.0

Thx, that helped.
When I click Information/General Info it brings me to the site map which I had turned off in the footer menu. How do I turn this function off. I have played around with some of the lines in the same PHP that I thought would be responsible but apparantly are not