Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
I downloaded v155 responsive classic. I have everything working well (https://gybproducts.com/almacenar/) except getting the Language icon buttons to show on my mobile site. They work find on the desk top both English and Spanish. Can someone help me or point me to information on how to fix this. Thank You, larry
Thank You
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
I found it and fixed it.
I removed display:none on line 58 of jscript_responsive_framework.php
https://github.com/zencart/zencart/b...mework.php#L58
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
dbltoe
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.
1. You wrote:
Quote:
Try to pick a clone name without the underscore.
When we try it there is an error:
! The Target Template must contain only alphanumeric (a-z, A-Z, 0-9) characters or underscores (_); please re-enter.
Attachment 17073
Is your suggestion misunderstood?
Also, your links suggest to use hyphen in all URLs.
2. Is it possible to configure Zen Cart with responsive template to do it? Now all URLs are like this:
//www.website.com/store/index.php?main_page=product_info&cPath=21&products_id=276
Thank you for your comment in advance
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
idtags
1. You wrote:
When we try it there is an error:
! The Target Template must contain only alphanumeric (a-z, A-Z, 0-9) characters or underscores (_); please re-enter.
Attachment 17073
Is your suggestion misunderstood?
Also, your links suggest to use hyphen in all URLs.
2. Is it possible to configure Zen Cart with responsive template to do it? Now all URLs are like this:
//www.website.com/store/index.php?main_page=product_info&cPath=21&products_id=276
Thank you for your comment in advance
I am not sure what you mean for point #2, but for the first one, you should not use a space in your template folder name.
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
To understand my question, please read previous page (38) post #378 by dbltoe.
Person suggests for SEO purposes instead of URLs like this:
//www.website.com/store/index.php?main_page=product_info&cPath=21&products_id=276
to use like this:
//www.website.com/store/books/books-about-aviation
It looks all modern e-shops generate URLs with hyphen and combine name of category and name of product.
Is there configuration in admin for it in new responsive templates?
Or I misunderstood the point completely?
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
picaflor-azul
Yes, natively, the grid layout does not come with zen cart v1.x. You will need to add a plugin like snaf or column layout grid for the grid layout. There may be versions of those plugins on github that are responsive.
Thanks,
Anne
On the home page, though, the Featured and Specials are gridded (at least to the point of being 3x3) - is it not possible to have the subcategory pictures (for example, here) grid themselves the same way? If not, can you recommend a plugin or module that will do that - I want to say it was working before we moved over to 1.5.5 (from 1.3.8a), but I can't confirm that for sure.
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
idtags
To understand my question, please read previous page (38) post #378 by dbltoe.
Person suggests for SEO purposes instead of URLs like this:
//www.website.com/store/index.php?main_page=product_info&cPath=21&products_id=276
to use like this:
//www.website.com/store/books/books-about-aviation
It looks all modern e-shops generate URLs with hyphen and combine name of category and name of product.
Is there configuration in admin for it in new responsive templates?
Or I misunderstood the point completely?
idtags,
Did you see my post following the one you chose to act on?
Here it is again:
Quote:
Originally Posted by
DrByte
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.
Also, the format of the URLs your site generates has *nothing* to do with using a "responsive template". That's a completely separate discussion, best had in the "Search Engines" section of the forum. And again, it has nothing to do with configuration settings of the responsive classic template.
Additionally, no, (by default) there are admin settings for controlling the URL format. You can add a plugin to do that if you wish. Discuss it in the Search Engines section.
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Hello
I am uploading photos to a new site. I noticed that there are no scroll bars in the photos making it very difficult to view a larger image. I read the tut on images but it was referring to ZC 1.2.1. None the less I did what it said (create a jscript_main.php file). I placed it in a new directory includes/modules/classic responsive/pages/product_info. Refreshed the website and no change.
Any ideas? No scroll bars means trouble viewing the image unless you have a very large monitor.
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
pixelpadre
Hello
I am uploading photos to a new site. I noticed that there are no scroll bars in the photos making it very difficult to view a larger image. I read the tut on images but it was referring to ZC 1.2.1. None the less I did what it said (create a jscript_main.php file). I placed it in a new directory includes/modules/classic responsive/pages/product_info. Refreshed the website and no change.
Any ideas? No scroll bars means trouble viewing the image unless you have a very large monitor.
I use colorbox for images along with wheelzoom.. the resizing is done to match screen width, zooming in with the mouse wheel... but to answer your question, in the modules/pages/product_info/jscript_main.php find or add this function within the script tags, Change the no to yes for scrollbars...
Code:
function popupWindow(url) {
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
I don't think you can use the template system for pages!! '/modules/classic responsive/pages/' should be '/modules/pages/'
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
davewest
I use colorbox for images along with wheelzoom.. the resizing is done to match screen width, zooming in with the mouse wheel... but to answer your question, in the modules/pages/product_info/jscript_main.php find or add this function within the script tags, Change the no to yes for scrollbars...
Code:
function popupWindow(url) {
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
I don't think you can use the template system for pages!! '
/modules/classic responsive/pages/' should be '
/modules/pages/'
The ZC tutorial that I read indicated that this change should be made using overides as I described above.