Page 54 of 108 FirstFirst ... 444525354555664104 ... LastLast
Results 531 to 540 of 1072
  1. #531
    Join Date
    Aug 2010
    Location
    Israel
    Posts
    285
    Plugin Contributions
    0

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

    Quote Originally Posted by shayne View Post
    Oh and I dont suppose anybody has a useful answer to my query ?

    I have it all fixed by code but find it strange that I just cant "turn it off" simply.
    Generally speaking, not all is controlled through Admin.
    Sometimes some codes need to be put...

  2. #532
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

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

    Quote Originally Posted by shayne View Post
    Oh and I dont suppose anybody has a useful answer to my query ?!
    BAR CUSTOMER ACCESS TO "MY ACCOUNT"
    Create a observer to catch and redirect away from account edit pages. You may need a message to explain why the links are not working for them.
    Dave
    Always forward thinking... Lost my mind!

  3. #533
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,152
    Plugin Contributions
    11

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

    Okay, I'll add blunt and un-experienced to the resume.

    You've got to admit, though, that what you are doing goes against goal #2 of Zen Cart. #1 being to sell and, #2, allowing customers to keep their data up to date. We have one site that allows users 75 addresses in their address book and allows them to ship to multiple addresses. The opposite end of the spectrum, I guess.

    Whether using ODBC or LDAP, the customer and their data is tied to so many tables in the database that it's not just a simple "turn off." This looks like special programming versus help in the forum. Perhaps someone will PM you to further the discussion.

    <bluntAlert>This would have also been better discussed outside of the template discussion as a lot of folks don't use the template and, therefore, don't visit this thread. Perhaps https://www.zen-cart.com/forumdispla...ers-and-Orders would have gotten you a quicker/better answer or a PM.</bluntAlert>

    Hope you get it going.

  4. #534
    Join Date
    Mar 2018
    Location
    Cornwall
    Posts
    26
    Plugin Contributions
    0

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

    Thank you all.

    I HAVE the solution I wanted already - but it took so many changed and additional lines of code (with the inherent update maintenance issues) - that I assumed I was being stupid and missing something simple!

    Thank you dbltoe - you are of course right - there is a better forum I shall have a prod there
    Last edited by shayne; 2 Jun 2018 at 08:53 AM.

  5. #535
    Join Date
    Apr 2018
    Location
    Oregon
    Posts
    13
    Plugin Contributions
    0

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

    So I'm running pretty much stock 1.5.5e and I'm getting complaints from customers who've been unable to sign up because it's not allowing their birth date. I can turn birth date off but would like to leave it on to help verify the customer is of legal age. In testing I find it all works fine with the normal interface, but if you try it from a mobile device the birth date field is terribly hard to use. Any click into the field brings up the GUI calendar with today selected and the user is required to click the back month arrow about a bazillion times to get to a reasonable date, then when they go to complete their registration it fails with 'are you sure your birth date is correct?" message. How can I fix this, or should I be using a different template than the stock one for mobile?

  6. #536
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

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

    Quote Originally Posted by billsey5 View Post
    So I'm running pretty much stock 1.5.5e and I'm getting complaints from customers who've been unable to sign up because it's not allowing their birth date. I can turn birth date off but would like to leave it on to help verify the customer is of legal age. In testing I find it all works fine with the normal interface, but if you try it from a mobile device the birth date field is terribly hard to use. Any click into the field brings up the GUI calendar with today selected and the user is required to click the back month arrow about a bazillion times to get to a reasonable date, then when they go to complete their registration it fails with 'are you sure your birth date is correct?" message. How can I fix this, or should I be using a different template than the stock one for mobile?
    Open:

    /includes/templates/responsive_classic/jscript/jscript_responsive_framework.php

    Find:

    Code:
    $('input#dob').clone().attr('type','date').insertAfter('input#dob').prev().remove();
    Change to:

    Code:
    $('input#dob').clone().attr('type','text').insertAfter('input#dob').prev().remove();
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  7. #537
    Join Date
    Apr 2018
    Location
    Oregon
    Posts
    13
    Plugin Contributions
    0

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

    Thanks, that worked great. Has that been rolled into new versions or will I have to do it again with my next update?

  8. #538
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

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

    Quote Originally Posted by billsey5 View Post
    Thanks, that worked great. Has that been rolled into new versions or will I have to do it again with my next update?
    This is unique to the responsive_classic, pica-flor, DIY templates. Perhaps a configuration should be added for the option to use html5 input types or not.
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  9. #539
    Join Date
    Apr 2009
    Posts
    60
    Plugin Contributions
    0

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

    My mobile menu looses the css style when I get to product info page? Help Please!

    Spent hours on here not finding anything close.
    I have 1.5.5f , using responsive_classic.
    Installed mega menu and use this
    @media (min-width:0px) and (max-width:480px){ #mega-wrapper { display:none;visibility:hidden; }
    in responsive.css and responsive_mobile.css to hide it.

    Installed colorbox, Twitch's grid layout, FedEx Webservice. Also had one page check out installed.

    https://uesakausa.com

    On a phone when going through my site, I can get to category>subcat > then when I select the individual product info page, my mobile menu looses the css formating and messes up my page layout.

    Can't figure it out. Thanking you in advance for any input!

    Max

  10. #540
    Join Date
    Apr 2013
    Location
    eglisau switzerland
    Posts
    567
    Plugin Contributions
    0

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

    Quote Originally Posted by MaxBodine View Post
    My mobile menu looses the css style when I get to product info page? Help Please!

    Spent hours on here not finding anything close.
    I have 1.5.5f , using responsive_classic.
    Installed mega menu and use this
    @media (min-width:0px) and (max-width:480px){ #mega-wrapper { display:none;visibility:hidden; }
    in responsive.css and responsive_mobile.css to hide it.

    Installed colorbox, Twitch's grid layout, FedEx Webservice. Also had one page check out installed.

    https://uesakausa.com

    On a phone when going through my site, I can get to category>subcat > then when I select the individual product info page, my mobile menu looses the css formating and messes up my page layout.

    Can't figure it out. Thanking you in advance for any input!

    Max
    Your pictures are very large and so take a long time to load up, also you are using .png picture format not .jpg which is also much larger. Consequently your site takes a very long time to load up.

    I suggest you fix the picture sizes first then it might be easier to see what is happening.

    For example WG-755.png is 229KB, change it to a slightly lower quality jpg then it is 31KB so loads in about one tenth of the time!

 

 

Similar Threads

  1. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  2. v151 Tableau Responsive Theme - Support Thread
    By numinix in forum Addon Templates
    Replies: 622
    Last Post: 19 Apr 2020, 11:11 PM
  3. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  4. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM
  5. Bentley Classic Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 173
    Last Post: 17 Sep 2013, 08:25 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR