Page 30 of 126 FirstFirst ... 2028293031324080 ... LastLast
Results 291 to 300 of 1253
  1. #291
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,696
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap Template

    After updating to 1.5.7 and Bootstrap 4.3.1, I noticed that the checkboxes and radio buttons were doubled - see image below.

    To disable this behavior I added

    .custom-control-label::before {
    display: none;
    }

    to my stylesheet.
    Attached Images Attached Images  
    Last edited by swguy; 30 Dec 2020 at 11:54 AM.
    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. #292
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by swguy View Post
    After updating to 1.5.7 and Bootstrap 4.3.1, I noticed that the checkboxes and radio buttons were doubled - see image below.

    To disable this behavior I added

    .custom-control-label::before {
    display: none;
    }

    to my stylesheet.
    Er, the current Bootstrap template version is 3.0.0 (with 3.1.0 currently in development).

  3. #293
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    Er, the current Bootstrap template version is 3.0.0 (with 3.1.0 currently in development).
    Did you mean, perhaps, that you're using the Bootstrap template with Bootstrap v4.3.1? I'll note that the Bootstrap v3.0.0+ was designed using Bootstrap v4.3.5 as its base.

  4. #294
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,696
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap Template

    Yes - Bootstrap template with Bootstrap 4.3.1.
    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.

  5. #295
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,696
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap Template

    This issue appears to be fixed in the *new* Bootstrap template (v3) - I was based off V2.
    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.

  6. #296
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,696
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    Did you mean, perhaps, that you're using the Bootstrap template with Bootstrap v4.3.1? I'll note that the Bootstrap v3.0.0+ was designed using Bootstrap v4.3.5 as its base.
    Your V3 template was designed using Bootstrap 4.5.3 as a base; there is no 4.3.5.
    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.

  7. #297
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by swguy View Post
    Your V3 template was designed using Bootstrap 4.5.3 as a base; there is no 4.3.5.
    Ah, numeric dyslexia!

  8. #298
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,696
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap Template

    The whole thing was quite confusing! But the good news is, your improvements solve this problem, so I'll get cracking on upgrading my template right away. Thanks for your hard work on making this great template even better.
    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.

  9. #299
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,696
    Plugin Contributions
    123

    Default Re: ZCA Bootstrap Template

    In includes/modules/bootstrap/centerboxes/also_purchased_products.php

    if $productsInCategory is not set, a PHP notice is issued. Easily fixed by adding


    if (!isset($productsInCategory)) $productsInCategory = array();

    around line 15.
    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.

  10. #300
    Join Date
    Jun 2012
    Posts
    412
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    I'm working on adding responsive multilevel dropdown menus on the navigation bar to the ZCA Bootstrap template. I've added a dropdown button to the bar that when clicked, opens the first level dropdown. An item in this dropdown opens up a second level dropdown, but an item in the second dropdown will not open to the third level. The html follows the pattern for multilevel dropdown menu examples I can find for bootstrap 4. I'm a Bootstrap novice and would appreciate any suggestions. A sample of the relevant code follows.
    Code:
    <!--bof-navigation display-->
    	   <div id="navMainWrapper">
    	      <div id="navMain">
    		 <nav class="navbar fixed-top mx-3 navbar-expand-lg rounded-bottom">
    	            <div class="collapse navbar-collapse" id="navbarSupportedContent">
    		       <ul class="navbar-nav ml-auto">
    			  <li class="nav-item dropdown">
    			     <a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown">Button</a>
    			     <ul class="dropdown-menu">
    				 <li>
    				    <a class="dropdown-item" href="https://blah...blah"><i class="fas fa-caret-left"></i> Level 1 Item 1</a>
    				    <ul class="submenu dropdown-menu">
    			               <li>
    				          <a class="dropdown-item" href="https://blah...blah"><i class="fas fa-caret-left"></i>Level 2 Item 1" </a>
                                              <ul class="submenu dropdown-menu">
    					     <li>
    					        <a class="dropdown-item" href="https://blah...blah">Level 3 Item 1</a>
                                                 </li>
                                              </ul>
                                           </li>
                                        </ul>
                                     </li>
                                 </ul>
                              </li>
                           </ul>
                        </div>
                     </nav>
                  </div>
               </div>

 

 
Page 30 of 126 FirstFirst ... 2028293031324080 ... LastLast

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