Page 19 of 126 FirstFirst ... 917181920212969119 ... LastLast
Results 181 to 190 of 1251
  1. #181
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,690
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    When you say PayPal, you mean Payments Pro that does on-site credit card collection, right?
    Thanks for the update.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  2. #182
    Join Date
    Mar 2005
    Posts
    107
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Correct - I should have been more clearer.

  3. #183
    Join Date
    Jan 2019
    Location
    UK
    Posts
    101
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hey, just wanted to say how good this template is! I'm a complete novice when it comes to php and recently my server host moved us to a new server with php 7.1 breaking both of our websites in the process.

    I used bootstrap to replace the template on a showcase store as the previous template was generating far too many errors for a novice like to me address. This template was very easy to install and set up the way I wanted with the minimal of effort, congrats. I only seem to be getting one php error now in my admin logs, but I don't think the template is the problem.

    anaconda.thegluepeople.co.uk

  4. #184
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    I don't know if this has been updated but there are a few glitches with the mobile menu. You get dots on mobiles at the side of it. Also radio buttons seem to have circles to the left of where they display. And Dropdown Menus overflow on mobiles.

    Other than that, great template and I am using it on https://ventureengravings.uk if you want to take a look.

    Question though, how would I go about adding the lightbox effect to images on attributes?
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  5. #185
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,846
    Plugin Contributions
    25

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Nick1973 View Post
    I don't know if this has been updated but there are a few glitches with the mobile menu. You get dots on mobiles at the side of it. Also radio buttons seem to have circles to the left of where they display. And Dropdown Menus overflow on mobiles.

    Other than that, great template and I am using it on https://ventureengravings.uk if you want to take a look.

    Question though, how would I go about adding the lightbox effect to images on attributes?
    To get loose thew dots, I have added
    Code:
    .dropdown-menu ul {
        list-style-type: none;
    }
    to the stylesheet

  6. #186
    Join Date
    Jan 2010
    Posts
    48
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Nick1973 View Post
    I don't know if this has been updated but there are a few glitches with the mobile menu. You get dots on mobiles at the side of it. Also radio buttons seem to have circles to the left of where they display. And Dropdown Menus overflow on mobiles.

    Other than that, great template and I am using it on https://ventureengravings.uk if you want to take a look.

    Question though, how would I go about adding the lightbox effect to images on attributes?
    In my opinion, the Dropdown Menus overflow on mobiles is a major obstacle to proper operation by mobile customers. I noticed it this afternoon in my sandbox (XAMPP, PHP 7.1.23, ZC 1.5.6c with sample products, ZCA Bootstrap 2.0.0c). I searched this thread as well as github for solutions without success. The demo mentioned in post #1 as well as Nick1973's cart exhibit the behavior as well.

    To demonstrate on a desktop/laptop, reduce the width of your browser until the hamburger menu appears. Click on the hamburger, then click Categories. Notice that the list of categories run off the bottom of the screen. This list cannot be scrolled to expose the bottom items, rendering the items at the end of the list unreachable.

    One solution that I've come up with after quick looks at Bootstrap 4 tutorials and documentation is to remove 'fixed-top' from the navbar so that the navbar/hamburger scrolls with the rest of the page instead of staying at the top of the screen, thus exposing the bottom of the dropdown list. I'm hoping that other solutions exist that don't remove 'fixed-top'.

  7. #187
    Join Date
    Jan 2010
    Posts
    48
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    I've come up with a solution that doesn't remove the 'fixed-top' from the navbar. I added a CSS file (includes/templates/bootstrap/css/stylesheet_zca.css):
    Code:
    div.dropdown-menu {
      max-height:150px;
      overflow-y:auto;
    }
    The max-height value may need to be tuned to avoid having the bottom dropdown expand below the bottom of the screen when it's opened. The 150px is an eyeball guess from my iPhone 6S in landscape orientation.

  8. #188
    Join Date
    Jan 2010
    Posts
    48
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    I've come up with different contents for the includes/templates/bootstrap/css/stylesheet_zca.css file that will scroll the entire expanded hamburger menu instead of the individual dropdown items.
    Code:
    div#navbarSupportedContent {
      max-height:320px;
      overflow-y:auto;
    }

  9. #189
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    My Sitemap Page does not load, it is just blank and I am getting these errors.

    [06-Nov-2019 15:03:18 UTC] PHP Fatal error: Call to undefined method zen_SiteMapTree::setParentStartEndStrings() in /home/WEBSITENAME/public_html/includes/modules/pages/site_map/header_php_site_map_zca_bootstrap.php on line 6


    [06-Nov-2019 15:03:18 UTC] Request URI: /index.php?main_page=site_map, IP address: 00.00.000.000
    --> PHP Fatal error: Call to undefined method zen_SiteMapTree::setParentStartEndStrings() in /home/WEBSITENAME/public_html/includes/modules/pages/site_map/header_php_site_map_zca_bootstrap.php on line 6.
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  10. #190
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,690
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Nick1973 View Post
    My Sitemap Page does not load, it is just blank and I am getting these errors.

    [06-Nov-2019 15:03:18 UTC] PHP Fatal error: Call to undefined method zen_SiteMapTree::setParentStartEndStrings() in /home/WEBSITENAME/public_html/includes/modules/pages/site_map/header_php_site_map_zca_bootstrap.php on line 6


    [06-Nov-2019 15:03:18 UTC] Request URI: /index.php?main_page=site_map, IP address: 00.00.000.000
    --> PHP Fatal error: Call to undefined method zen_SiteMapTree::setParentStartEndStrings() in /home/WEBSITENAME/public_html/includes/modules/pages/site_map/header_php_site_map_zca_bootstrap.php on line 6.
    Check your copy of includes/classes/site_map.php vs a fresh download of the bootstrap template. It's in there.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

 

 

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 94
    Last Post: 16 Mar 2024, 04:13 PM
  2. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  3. v155 ZCA Bootstrap Template 1.0 (BETA)
    By rbarbour in forum Addon Templates
    Replies: 74
    Last Post: 25 Apr 2018, 07:05 PM
  4. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 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