Totally Zenned
- Join Date:
- Jan 2004
- Location:
- N of San Antonio TX
- Posts:
- 9,763
- Plugin Contributions:
- 9
Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
@enzo-ita
A link to this happening would also be welcome.
Views: 361,771
Totally Zenned
@enzo-ita
A link to this happening would also be welcome.
Zen Follower
dbltoe:
@enzo-ita
A link to this happening would also be welcome.
Hi, here we go http://zc155.acq uatua.it/index.php?main_page=page&id=1&chapter=10&zenid=572b94c14a99c6b285fe1b7e90fe90cf
Whtch this with chrome or firefox on a smartphone.
Ciao ciao
Totally Zenned
yep, I see the same thing with long ez page titles on my vanilla v155 install with the only changes being the items listed in the "known bugs" thread.
I can't even edit any of the demo ez pages text without either a 404 error
I did manage to edit a demo ezpages title to reproduce what you are describing.
Totally Zenned
The 403 error when attempting to add text to one of the demo ezpages titles triggered something on the server firewall and has blacklisted me from accessing any portion of my sandbox webserver so I am stuck until the host either whitelists my IP and/or figures out what triggered the block.
Totally Zenned
Depending on the stylesheet modifications you have made, look around line 178 of the original includes/templates/responsive_classic/css/stylesheet.css change#navEZPagesTOC ul li {white-space:nowrap;font-size:130%;line-height:150%;}to```
#navEZPagesTOC ul li {/white-space:nowrap;/font-size:130%;line-height:150%;}
I haven't seen where this will create any other problems but let us know if it does.
Totally Zenned
dbltoe:
Depending on the stylesheet modifications you have made, look around line 178 of the original includes/templates/responsive_classic/css/stylesheet.css change
#navEZPagesTOC ul li {white-space:nowrap;font-size:130%;line-height:150%;}to```
#navEZPagesTOC ul li {/white-space:nowrap;/font-size:130%;line-height:150%;}
> I haven't seen where this will create any other problems but let us know if it does.
TNX dbltoe,
That solves that issue for now.
Any idea why editing this page (This is a vanilla v155 install with only the bugfile edits made.
<http://srevaewniahcDOTinfo/155a/index.php?main_page=page&id=14&chapter=10>
causes a 403 error? Not a coder but I see some reference to 403 Forbidden in the viewsource
Right now, we're not sure if the 403 error is being generated by a server mod_security rule or zencart.
Totally Zenned
Not really the thread for it but I get no 403 when doing a simple edit of that ezpage.
Any editor loaded or plain ZC?
Can you be more specific as to what you changed?
Do you have another thread where we can discuss this?
Totally Zenned
dbltoe:
Do you have another thread where we can discuss this?
Sorry. Should have known better than to attempt discussion in more than one place. Thanks for reminding me.
https://www.zen-cart.com/showthread.php?220550-Edit-DEMO-EZpage-ID-14-causes-server-403-error
Totally Zenned
A catch?
Clean install, 1.5.5a
Creating an account using mobile device (Samsung Note) click in the Zip Code field, the phone numeric keypad opens, very handy, but some countries use alphanumeric codes, yet thekkeypad forces the numeric pad only.
Zen Follower
Great Template!!! Thanks,
I am having a display issue on my product_info page. When a product is selected the text is out of alignment and no shaded boxes or css button to Add to Cart. This occurs for all devices. The link to my site is: http://www.allmart.ca/store/.
Thanks in advance for your help.
Sensei
picandnix:
A catch?
Clean install, 1.5.5a
Creating an account using mobile device (Samsung Note) click in the Zip Code field, the phone numeric keypad opens, very handy, but some countries use alphanumeric codes, yet thekkeypad forces the numeric pad only.
See the notes I posted here: https://github.com/zencart/zencart/issues/993 ... for the filename and what line/s to edit.
Totally Zenned
DrByte:
See the notes I posted here: https://github.com/zencart/zencart/issues/993 ... for the filename and what line/s to edit.
The Doc, always ahead of the game.
New Zenner
I would like to change the size of the header and footer to match the content (75%). But when I change it in stylesheet, something is over-riding it....
http://www.faithsisters.com/store/
Thank you :)
New Zenner
I wonder what happened to my post about the menu... I put the menu under the header.... I manually added the log in / out and my account buttons using ez pages. Can I remove the upper red bar at the top? If we can at least get it to show smaller width that would work as well....
I also noticed some funky things.... if I hover over the product image, the background shows thru... http://www.faithsisters.com/store/
the product page also has the background showing thru behind the manufacturer image and the big gray box... http://www.faithsisters.com/store/index.php?main_page=product_info&cPath=32_119&products_id=1
I am not finding what these are called....
thanks
New Zenner
I did fix the issues on the product page - stylsheet_colors
Administrator
augie0041:
Thanks, this worked nicely!
I have another question now. How do I edit the items listed in the menu drop down when viewing the mobile version of the site? For example, I want to remove the 'Important Links' option and possibly display the a subcategory instead of the top-level category.
Thanks in advance!
DrByte:
/includes/templates/YOUR_CUSTOM_responsive_classic_FOLDERNAME/templates/tpl_modules_mobile_menu.php
Turns out that the "Important Links" section in the above module needs a little restructuring, since the label displays even if there aren't any EZ-pages to display.
Starting at line 125, currently:
<li><span><?php echo BOX_HEADING_EZPAGES; ?></span>
<ul>
<?php
include(DIR_WS_MODULES . zen_get_module_directory('ezpages_bar_header.php'));
if (sizeof($var_linksList) >= 1) {
for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) {
echo '<li><a href="' . $var_linksList[$i]['link'] . '">' . $var_linksList[$i]['name'] . '</a></li>' . "\n";
}
}
?>
</ul>
</li>
should be changed to the following so that the section displays only if there are items to follow (moving the heading <li> and associated <ul> "under" the if-statement):
<?php
include(DIR_WS_MODULES . zen_get_module_directory('ezpages_bar_header.php'));
if (sizeof($var_linksList) >= 1) {
[B]?>
<li><span><?php echo BOX_HEADING_EZPAGES; ?></span>
<ul>
<?php[/B]
for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) {
echo '<li><a href="' . $var_linksList[$i]['link'] . '">' . $var_linksList[$i]['name'] . '</a></li>' . "\n";
}
[B]?>
</ul>
</li>
<?php[/B]
}
?>
New Zenner
I have resolved the hover issue...
these 2 lines
input:focus, select:focus, textarea:focus, #mainWrapper, #sendSpendWrapper {background:#f4f4f4;background-image: url(../images/bg_fs.jpg);}
.specialsListBoxContents:hover, .centerBoxContentsSpecials:hover, .centerBoxContentsAlsoPurch:hover, .centerBoxContentsFeatured:hover, .centerBoxContentsNew:hover, .categoryListBoxContents:hover, .sideBoxContentItem:hover, .productListing-odd, {background:#f4f4f4;}
were on 1 line (19 of stylesheet). I separated the hover ones and "Odd" so they would only have color and not background. So that seems to fix the problem....
BUT - when I refresh the page http://www.faithsisters.com/store/ it is all wonky as it is reloading. I want to make sure I did not mess up something...
Thank you :)
Totally Zenned
You might want to take a look at https://www.zen-cart.com/downloads.php?do=file&id=2088. It is a method change colors without running into the problems of several things mixed in a stylesheet call.
As an aside, be sure to take a look at all your pages in mobile view. iPhone 6S is one of the larger portrait mobile screens. With the added images, http://www.faithsisters.com/store/index.php?main_page=index&cPath=32_119 does not show a product without some serious scrolling. http://www.faithsisters.com/store/index.php?main_page=index&cPath=32_121 is even more so.
New Zenner
Hi, I know Responsive Classic is part of 1.5.5. But want to know how to put this in 1.5.4 version. How many files need to move. Do i need any big code change.
I tried but getting error.
Regards
Mandeep
Sensei
Mandeep:
Hi, I know Responsive Classic is part of 1.5.5. But want to know how to put this in 1.5.4 version. How many files need to move. Do i need any big code change.
Two options:
RECOMMENDED: upgrade to v155 so that you get the benefit of the bugfixes over 154 and full capabilities of the new template
TEMPORARY ALTERNATE: use one of the many responsive plugin templates built for v154, as a temporary step until you upgrade to v155
Fields marked required must be completed.
Tell staff why this post should be reviewed.