Page 34 of 123 FirstFirst ... 2432333435364484 ... LastLast
Results 331 to 340 of 1223
  1. #331
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by Opal5 View Post
    Again, thank you so very much! That worked perfectly and I still got to keep my ez pages on the footer :) The 'Information' link at the top menu on the mobile site, where is that controlled? I have it turned off in Layout Boxes Controller because I'm using the information in the ez pages in the footer instead.
    That will currently require manual edits to /includes/templates/bootstrap/common/tpl_offcanvas_menu.php to remove those information sidebox links.

  2. #332
    Join Date
    Feb 2020
    Location
    England
    Posts
    22
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    That will currently require manual edits to /includes/templates/bootstrap/common/tpl_offcanvas_menu.php to remove those information sidebox links.
    Thank you, I've found the file but can't see what to edit without messing up, do I remove the chunk off text? or add something? I'm not too great at manually editing, only simple stuff lol

    I can see this chunk of code which I think refers to that information link in the mobile menu:
    Code:
    <li class="nav-item dropdown d-lg-none">
            <a class="nav-link dropdown-toggle" href="#" id="infoDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
              <?php echo BOX_HEADING_INFORMATION; ?>
            </a>
            <div class="dropdown-menu" aria-labelledby="infoDropdown">
    <?php
            echo '<ul class="m-0 p-0">';
    if (DEFINE_SHIPPINGINFO_STATUS <= 1) {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_SHIPPING) . '">'. BOX_INFORMATION_SHIPPING.'</a></li>';
    }
    if (DEFINE_PRIVACY_STATUS <= 1) {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_PRIVACY) . '">'. BOX_INFORMATION_PRIVACY.'</a></li>';
    }
    if (DEFINE_CONDITIONS_STATUS <= 1) {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_CONDITIONS) . '">'. BOX_INFORMATION_CONDITIONS.'</a></li>';
    }
    if (!empty($external_bb_url) && !empty($external_bb_text)) { // forum/bb link
            echo '<li><a class="dropdown-item" href="' . $external_bb_url . '" rel="noopener" target="_blank">' . $external_bb_text . '</a></li>';
    }
    if (DEFINE_SITE_MAP_STATUS <= 1) {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_SITE_MAP) . '">'. BOX_INFORMATION_SITE_MAP.'</a></li>';
    }
      if (defined('MODULE_ORDER_TOTAL_GV_STATUS') && MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_GV_FAQ) . '">'. BOX_INFORMATION_GV.'</a></li>';
    }
      if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && defined('MODULE_ORDER_TOTAL_COUPON_STATUS') && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_DISCOUNT_COUPON) . '">'. BOX_INFORMATION_DISCOUNT_COUPONS.'</a></li>';
    }
    if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true') {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_UNSUBSCRIBE) . '">'. BOX_INFORMATION_UNSUBSCRIBE.'</a></li>';
    }
    if (DEFINE_PAGE_2_STATUS <= 1) {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_PAGE_2) . '">'. BOX_INFORMATION_PAGE_2.'</a></li>';
    }
    if (DEFINE_PAGE_3_STATUS <= 1) {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_PAGE_3) . '">'. BOX_INFORMATION_PAGE_3.'</a></li>';
    }
    if (DEFINE_PAGE_4_STATUS <= 1) {
            echo '<li><a class="dropdown-item" href="'.zen_href_link(FILENAME_PAGE_4) . '">'. BOX_INFORMATION_PAGE_4.'</a></li>';
    }
            echo '</ul>';
    ?>
            </div>
          </li>

  3. #333
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    From the 'as-distributed' Bootstrap 4.0, v3.0.0 version of tpl_offcanvas_menu.php, you'll remove lines 69 through 112.

  4. #334
    Join Date
    Feb 2020
    Location
    England
    Posts
    22
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    From the 'as-distributed' Bootstrap 4.0, v3.0.0 version of tpl_offcanvas_menu.php, you'll remove lines 69 through 112.
    Perfect! Thank you so much for all your help! Very much appreciated

  5. #335
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I've just submitted v3.1.0 of the ZCA Bootstrap 4 template for the Zen Cart moderators' review; I'll post back here when it's available for download.

    This version has a bunch of bugfixes and other refinements and is a prerequisite for the forthcoming Bootstrap 4 integration with One-Page Checkout. See this (https://github.com/lat9/ZCA-Bootstra...stone%3Av3.1.0) link for details.

  6. #336
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,401
    Plugin Contributions
    87

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've just submitted v3.1.0 of the ZCA Bootstrap 4 template for the Zen Cart moderators' review; I'll post back here when it's available for download.

    This version has a bunch of bugfixes and other refinements and is a prerequisite for the forthcoming Bootstrap 4 integration with One-Page Checkout. See this (https://github.com/lat9/ZCA-Bootstra...stone%3Av3.1.0) link for details.
    Now available for download: https://www.zen-cart.com/downloads.php?do=file&id=2191

  7. #337
    Join Date
    Jan 2010
    Location
    France
    Posts
    279
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post

    Hello Lat, first of all thank you for all the work you do for all of us.

    On the common / tpl_header file at line 103
    <div id = "taglineWrapper" class = "col-sm-12 text-center">
    I think you have to change your class like this.
    <div id = "taglineWrapper" class = "col-sm-6 text-center">

    Thanks again.
    Giovanni,
    Zen Cart V1.5.8 + templates ZCA Bootstrap Template

  8. #338
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by diamond1 View Post
    Hello Lat, first of all thank you for all the work you do for all of us.

    On the common / tpl_header file at line 103
    <div id = "taglineWrapper" class = "col-sm-12 text-center">
    I think you have to change your class like this.
    <div id = "taglineWrapper" class = "col-sm-6 text-center">

    Thanks again.
    Why? What symptom are you encountering that brings you to that conclusion?

    Changing from 12 to 6 means it would only show across half the width of the screen. By default there are no other corresponding divs that would make up the other 6 in that row.

    The suggested change feels like it's unique to your implementation, but you haven't given details of what problem you think your suggestion fixes.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #339
    Join Date
    Jan 2010
    Location
    France
    Posts
    279
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hello, if we leave it at 12 the BANNERS GROUP_SET2 banners put in the center as well as BANNERS_GROUP_SET2.

    Click image for larger version. 

Name:	Capture d’écran .jpg 
Views:	28 
Size:	18.2 KB 
ID:	19406
    Click image for larger version. 

Name:	Capture d’écran 2021-02-04 à 19.18.jpg 
Views:	20 
Size:	19.8 KB 
ID:	19407
    Giovanni,
    Zen Cart V1.5.8 + templates ZCA Bootstrap Template

  10. #340
    Join Date
    Jan 2010
    Location
    France
    Posts
    279
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hello, if we leave it at 12 the BANNERS GROUP_SET2 banners put in the center as well as BANNERS_GROUP_SET2.

    Attachment 19408Attachment 19409
    Giovanni,
    Zen Cart V1.5.8 + templates ZCA Bootstrap Template

 

 
Page 34 of 123 FirstFirst ... 2432333435364484 ... 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