Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

Sticky

Views: 361,744

Results 361 to 380 of 1,084
03 Apr 2017, 11:24
#361
torvista avatar

torvista

Totally Zenned

Join Date:
Aug 2007
Location:
Gijón, Asturias, Spain
Posts:
2,866
Plugin Contributions:
7

Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

at 360+ posts since this template was included in the core, is anyone maintaining a version that has all the anomalies/errors/improvements etc. that have been flagged up since then...to avoid people late to the party having to trawl the entire thread for those nuggests?

03 Apr 2017, 12:00
#362
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

torvista:

at 360+ posts since this template was included in the core, is anyone maintaining a version that has all the anomalies/errors/improvements etc. that have been flagged up since then...to avoid people late to the party having to trawl the entire thread for those nuggests?
Kind of, sort of ... not exactly.:blink:

Seriously, I've got the template portions broken out so that I could pre-stage the template in some older Zen Cart installations, but haven't really been keeping up. I'll get a GitHub repository started (using 1.5.5e-3 as the change-basis), then with the community's help on identifying the changes we can get this template up-to-date.

03 Apr 2017, 19:06
#363
amayze avatar

amayze

New Zenner

Join Date:
Feb 2012
Posts:
8
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

Podgeminster:

Anyone else experiencing this issue?
Yes. And I think I've found the problem(s).

The first issue is that the width of fieldset div is set to 80% or 90% in repsonsive_mobile.css. This shouldn't be a problem, but it is done with !important, so it's not possible to override it. It forces both the totalBox and the lineTitle to be very wide, and therefore they won't fit on the same line. So first comment out or delete part of responsive_mobile.css:

fieldset input[type=tel], fieldset input[type=date], fieldset textarea, /* fieldset div */, fieldset .inputLabel, fieldset input[type=text], fieldset input[type=email]{width:85% !important;margin:0  0 0 20px !important;}

This appears in two places, once for landscape and the other for portrait mobiles.

Secondly there is another line which sets the .forward tags to be too wide and removes the float:right from them as well. So comment out this line too:```
/* #checkoutPayment .forward, #checkoutShipping .forward{float:none; width:95%;} */

Again it is in two places.

Now you'll probably find that the margins allowed are too big to let all the titles fit so you might want to add something like the following below the above line(s) in responsive_mobile.css:

fieldset div {margin-left:2px;}
.totalBox {width:25%;}
.lineTitle {width:60%;}
#checkoutOrderTotals div {margin-right:10px;}

In this case you might want different values for the portrait and landscape sections as the space available is obviously different.

Hope this helps - I realise it doesn't answer your actual question, but it does fix the behaviour to be the same as on a desktop.
N.B. Similar changes may be requires in responsive_tablet.css, but I've only just sussed this out for responsive_mobile.css and haven't had a chance to check yet.

To swap the order of the lines you need to swap the order of lines 18 and 19 in /includes/templates/YOUR_TEMPLATE/templates/tpl_modules_order_totals.php. But don't do this if you make the above changes.

Yours,

Andrew
15 Apr 2017, 06:44
#364
gunni avatar

gunni

Zen Follower

Join Date:
Aug 2010
Location:
Israel
Posts:
287
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

gunni:

Hi
I found something strange with href link.
I put the Featured products on the main page and the "hand" pointer is shown when the mouse is over the
gray box of the featured product. When pressed on the price number for example or under, no page is being redirected to.
Please try: My site

found the solution: in file Stylesheet.css around line 269:

specialsListBoxContents, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew{font-size:1.6em;cursor:pointer;padding:20px 0;}

I deleted "cursor: pointer;" so the "fake" icon of the link will not be shown where there is no real link.
Do not worry, when hover on a real link, the hand pointer apears.

Do not understand why to make a link pointer without a real link...

18 Apr 2017, 17:07
#365
techietom911 avatar

techietom911

New Zenner

Join Date:
Mar 2017
Location:
Idaho
Posts:
13
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

Hello, I upgraded from 1.5.1 to 1.5.5e and the test site is still non responsive. I looked at the source and the HTML still points to the "classic" files. Where do I go to change this to point to the "responsive"?

Thank you for your direction.

18 Apr 2017, 17:39
#366
dbltoe avatar

dbltoe

Totally Zenned

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

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

techietom911:

Hello, I upgraded from 1.5.1 to 1.5.5e and the test site is still non responsive. I looked at the source and the HTML still points to the "classic" files. Where do I go to change this to point to the "responsive"?

Thank you for your direction.One wonders how the upgrade was done. If you used something other than https://www.zen-cart.com/entry.php?3-How-do-I-rebuild-my-site-on-the-new-version-instead-of-upgrading, that may be part of the problem. Auto intalls/upgrades from hosts can be a problem.
If you DID follow the above instructions, there may be a file missing with the upload.
Template selection in a properly setup Zen Cart can be done in the Admin >> Tools >> Template Selection.
Once you get all working, I would suggest using lat9's clone a template mod to copy your template changes to one that will survive update.

18 Apr 2017, 17:52
#367
marton_1 avatar

marton_1

Totally Zenned

Join Date:
Apr 2013
Location:
eglisau switzerland
Posts:
568
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

techietom911:

Hello, I upgraded from 1.5.1 to 1.5.5e and the test site is still non responsive. I looked at the source and the HTML still points to the "classic" files. Where do I go to change this to point to the "responsive"?

Thank you for your direction.

Admin/Tools/Template

18 Apr 2017, 19:31
#368
techietom911 avatar

techietom911

New Zenner

Join Date:
Mar 2017
Location:
Idaho
Posts:
13
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

dbltoe:

One wonders how the upgrade was done. If you used something other than https://www.zen-cart.com/entry.php?3-How-do-I-rebuild-my-site-on-the-new-version-instead-of-upgrading, that may be part of the problem. Auto intalls/upgrades from hosts can be a problem.
If you DID follow the above instructions, there may be a file missing with the upload.
Template selection in a properly setup Zen Cart can be done in the Admin >> Tools >> Template Selection.
Once you get all working, I would suggest using lat9's clone a template mod to copy your template changes to one that will survive update.

At the end of the upgrade article (How do I do an upgrade and still keep my live store running in the meantime?) in steps 1-9, I miss understood #3 and copied 1.5.5e on top of every existing folder. I should have removed the old folders and replaced them with the new ones instead, then deleted files that don't belong anymore.

I think I got it now. Thank you

21 Apr 2017, 09:08
#369
nick1973 avatar

nick1973

Totally Zenned

Join Date:
Sep 2008
Location:
Cleethorpes
Posts:
1,230
Plugin Contributions:
3

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

Responsive Classic on 1.5.5e - Any idea why I when clicking on a product it is only showing the product image and not the rest of the content of the page when on a mobile phone?

24 Apr 2017, 20:49
#370
dbltoe avatar

dbltoe

Totally Zenned

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

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

04 May 2017, 18:15
#371
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

lat9:

Kind of, sort of ... not exactly.:blink:

Seriously, I've got the template portions broken out so that I could pre-stage the template in some older Zen Cart installations, but haven't really been keeping up. I'll get a GitHub repository started (using 1.5.5e-3 as the change-basis), then with the community's help on identifying the changes we can get this template up-to-date.
OK, I've got the responsive_classic files (and support functions) pulled out from the Zen Cart 1.5.5e distribution and available on GitHub here: https://github.com/lat9/zen_responsive_classic

I haven't been keeping a change-list for the plugin's files thus far, so any changes needed will need to be (re-)identified, either here in the support thread or via a GitHub issue on the template's repository.

04 May 2017, 22:40
#372
shags38 avatar

shags38

Totally Zenned

Join Date:
Jan 2011
Location:
Adelaide, Australia
Posts:
1,684
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

lat9:

OK, I've got the responsive_classic files (and support functions) pulled out from the Zen Cart 1.5.5e distribution and available on GitHub here: https://github.com/lat9/zen_responsive_classic

I haven't been keeping a change-list for the plugin's files thus far, so any changes needed will need to be (re-)identified, either here in the support thread or via a GitHub issue on the template's repository.

Thanks for that lat9 - much appreciated.

cheers, Mike

04 May 2017, 23:40
#373
shags38 avatar

shags38

Totally Zenned

Join Date:
Jan 2011
Location:
Adelaide, Australia
Posts:
1,684
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

lat9:

OK, I've got the responsive_classic files (and support functions) pulled out from the Zen Cart 1.5.5e distribution and available on GitHub here: https://github.com/lat9/zen_responsive_classic

I haven't been keeping a change-list for the plugin's files thus far, so any changes needed will need to be (re-)identified, either here in the support thread or via a GitHub issue on the template's repository.

So Cindy - dumb question - I have held off upgrading my sites (from 1.5.1) due to lack of confidence in template(s) performance/suitability - now with your post above I am now going to give the upgrading a shot - so after upgrading do I then upload your includes files into /includes folder and overwrite as necessary?

thanks for your help.
cheers, Mike

05 May 2017, 11:40
#374
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

shags38:

So Cindy - dumb question - I have held off upgrading my sites (from 1.5.1) due to lack of confidence in template(s) performance/suitability - now with your post above I am now going to give the upgrading a shot - so after upgrading do I then upload your includes files into /includes folder and overwrite as necessary?

thanks for your help.
cheers, Mike
Mike, *not *a dumb question. The GitHub repository represents the files (and associated file-structure) for this template, as shipped within the Zen Cart 1.5.5 distributions and can be used in a couple of ways:

  1. You're running ZC 1.5.4 (I wouldn't suggest installing the template on an earlier ZC version) and want to "kick the tires" before upgrading.
  2. You're running a variant of ZC 1.5.5 and want to capture all the currently-known changes to the template.
    In either case, you'd just "drop" the template changes in (there's a .SQL install script for the pre-1.5.5 installations) and then either clone that template or merge the template's current changes into your customized version.

Please note that at this point in time, the GitHub repository represents the v1.5.5e version of the template files.

05 May 2017, 22:08
#375
shags38 avatar

shags38

Totally Zenned

Join Date:
Jan 2011
Location:
Adelaide, Australia
Posts:
1,684
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

lat9:

Mike, *not *a dumb question. The GitHub repository represents the files (and associated file-structure) for this template, as shipped within the Zen Cart 1.5.5 distributions and can be used in a couple of ways:

  1. You're running ZC 1.5.4 (I wouldn't suggest installing the template on an earlier ZC version) and want to "kick the tires" before upgrading.
  1. You're running a variant of ZC 1.5.5 and want to capture all the currently-known changes to the template.

In either case, you'd just "drop" the template changes in (there's a .SQL install script for the pre-1.5.5 installations) and then either clone that template or merge the template's current changes into your customized version.

Please note that at this point in time, the GitHub repository represents the v1.5.5e version of the template files.

Hello Cindy - many thanks for your detailed response, I appreciate it. I'm not a developer so sometimes I struggle with terminologies/processes etc - had no idea what GitHub or a repository was about prior to your explanation - in layman's terms I assume what you have created is in essence a 'plug in' version of the template?

Again many thanks,
cheers, Mike

06 May 2017, 12:07
#376
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

shags38:

Hello Cindy - many thanks for your detailed response, I appreciate it. I'm not a developer so sometimes I struggle with terminologies/processes etc - had no idea what GitHub or a repository was about prior to your explanation - in layman's terms ***I assume what you have created is in essence a 'plug in' version of the template?


Again many thanks,
cheers, Mike
Mike, your assumption is correct.:smile:

09 May 2017, 01:12
#377
idtags avatar

idtags

Zen Follower

Join Date:
Aug 2005
Posts:
315
Plugin Contributions:
0

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

Classic look [Attachment no longer available] Responsive template [Attachment no longer available]

Hello, I just discovered responsive template and tried it.
It looks good and is passing Google mobile requirements.
I used before custom version of Classic template and it took me years to tweak to the look shown on first attachment.
Second Image shows current "out of box" look.
Is there anywhere description of Step by Step customization?
Where to start to customize Responsive template?
Is it actually customize able, like classic with custom folder for each section?
Can be anything done on admin Panel?

Any link pointing to begining of the process will be greatly appreciated.

Than you.

09 May 2017, 19:12
#378
dbltoe avatar

dbltoe

Totally Zenned

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

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

No particular laid out steps. It is a golden opportunity to learn using web developer extensions for your browser to experiment with your stylesheet(s).
A couple of things I would do first before diving in. Get the mod that better facilitates color changes for responsive_classic and install it. https://www.zen-cart.com/downloads.php?do=file&id=2088.
After it's installed and before you make any other changes, use the clone template mod to clone it to a new name for your store. Try to pick a clone name without the underscore. https://www.zen-cart.com/downloads.php?do=file&id=2087
Now, any changes to the new template can easily be found/removed/repaired using the old template and its clone.

For those of you wondering about underscores in URLs, Google, WooRank, and StackOverFlow all suggest dashes versus underscores.

10 May 2017, 01:48
#379
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

dbltoe:

use the clone template mod to clone it to a new name for your store. Try to pick a clone name without the underscore.

For those of you wondering about underscores in URLs, Google, WooRank, and StackOverFlow all suggest dashes versus underscores.
Um ... the name of the template directory never appears in the URL for SEO purposes. So using an underscore in the name of your template folder is unrelated to SEO.

10 May 2017, 19:29
#380
dbltoe avatar

dbltoe

Totally Zenned

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

Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

My original thought as well. Still woorank and a few others are commenting on not only the "main_page" but items in the page source as well. Every day is another humbling experience.:lookaroun

Reasoning seems to be that links are confusing when underlined.