Page 94 of 134 FirstFirst ... 44849293949596104 ... LastLast
Results 931 to 940 of 1331
  1. #931
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,629
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by dbltoe View Post
    Setting the minimum to 1 makes it all better.
    Setting the minimum value to 1 is a work-around.

  2. #932
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,213
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap Template

    tru dat

    Still trying to find what overrides the initial database setting of 1.

  3. #933
    Join Date
    Nov 2006
    Posts
    108
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Bootstrap 3.5.1
    In shopping cart the checkboxes for deleting products are not well aligned.
    Click image for larger version. 

Name:	Screenshot from 2023-02-14 13-26-34.png 
Views:	68 
Size:	2.8 KB 
ID:	20209

    If
    Code:
    position:absolute;
    in class .form-check-input in file _forms.scss is deactivated, it looks correctly.
    This is a file loaded from bootstrap. So I am looking for a method to display the checkbox correctly and not messing up any other elements.

  4. #934
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,629
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by todoonada View Post
    Bootstrap 3.5.1
    In shopping cart the checkboxes for deleting products are not well aligned.
    Click image for larger version. 

Name:	Screenshot from 2023-02-14 13-26-34.png 
Views:	68 
Size:	2.8 KB 
ID:	20209

    If
    Code:
    position:absolute;
    in class .form-check-input in file _forms.scss is deactivated, it looks correctly.
    This is a file loaded from bootstrap. So I am looking for a method to display the checkbox correctly and not messing up any other elements.
    Darn it. I had an additional plugin installed when testing that expanded the height of the shopping-cart table's rows.

    GitHub tracking issue: https://github.com/lat9/ZCA-Bootstra...ate/issues/203

  5. #935
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,629
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Update's on GitHub, see this (https://github.com/lat9/ZCA-Bootstra...a71dca59dda5b0) link for changes required.

  6. #936
    Join Date
    Nov 2006
    Posts
    108
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    Update's on GitHub, see this (https://github.com/lat9/ZCA-Bootstra...a71dca59dda5b0) link for changes required.
    Thank you!
    Looks good now.

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

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by todoonada View Post
    Thank you!
    Looks good now.
    And thank you for the confirmation that the update corrected the issue!

  8. #938
    Join Date
    May 2006
    Location
    Orangeburg, SC
    Posts
    72
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Can't seem to remove the NOTIFICATIONS box on the product page. I've removed it everywhere else but there...ideas?

    Click image for larger version. 

Name:	Screenshot 2023-02-27 at 02.50.20.jpg 
Views:	23 
Size:	22.0 KB 
ID:	20219

    Fresh install: 1.5.8
    Latest ZCA Bootstrap Template
    Last edited by jtlswan; 27 Feb 2023 at 09:03 AM.

  9. #939
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,629
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by jtlswan View Post
    Can't seem to remove the NOTIFICATIONS box on the product page. I've removed it everywhere else but there...ideas?

    Click image for larger version. 

Name:	Screenshot 2023-02-27 at 02.50.20.jpg 
Views:	23 
Size:	22.0 KB 
ID:	20219

    Fresh install: 1.5.8
    Latest ZCA Bootstrap Template
    That setting's in Configuration :: Bootstrap Template Settings :: Display the Notifications Box on Product Pages; set it to 0.

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

    Default Re: ZCA Bootstrap Template

    Hi Lat, I think tpl_header.php is missing a <br> on line 165?

    <?php
    /**
    * Common Template - tpl_header.php
    *
    * BOOTSTRAP v3.5.1
    *
    *
    * @copyright Copyright 2003-2020 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: DrByte 2020 May 19 Modified in v1.5.7 $
    */
    ?>
    <!--bof-header logo and navigation display-->
    <?php
    // -----
    // Quick return if the header's been disabled.
    //
    if (!empty($flag_disable_header)) {
    return;
    }
    ?>
    <div id="headerWrapper" class="mt-5">
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <nav class="navbar fixed-top mx-3 navbar-expand-lg rounded-bottom" aria-label="<?php echo TEXT_HEADER_ARIA_LABEL_NAVBAR; ?>">
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
    <i class="fas fa-bars"></i>
    </button>

    <div class="collapse navbar-collapse" id="navbarSupportedContent">
    <ul class="navbar-nav mr-auto">
    <?php
    if (!$this_is_home_page) {
    ?>
    <li class="nav-item">
    <a class="nav-link" href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>">
    <i class="fas fa-home"></i> <?php echo HEADER_TITLE_CATALOG; ?>
    </a>
    </li>
    <?php
    }

    if (zen_is_logged_in() && !zen_in_guest_checkout()) {
    ?>
    <li class="nav-item">
    <a class="nav-link" href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a>
    </li>
    <li class="nav-item">
    <a class="nav-link" href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a>
    </li>
    <?php
    } else {
    if (STORE_STATUS === '0') {
    ?>
    <li class="nav-item">
    <a class="nav-link" href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>">
    <i class="fas fa-sign-in-alt"></i> <?php echo HEADER_TITLE_LOGIN; ?>
    </a>
    </li>
    <?php
    }
    }

    if ($_SESSION['cart']->count_contents() > 0) {
    ?>
    <li class="nav-item">
    <!--<a class="nav-link" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
    <!--aggiunge icona carrello su header con quantita-->
    <a class="nav-link" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo '<i class="fas fa-shopping-cart"></i> ' ?><?php echo $_SESSION['cart']->count_contents(); ?>&nbsp;<?php echo HEADER_TITLE_CART_CONTENTS; ?></a>

    </li>
    <li class="nav-item">
    <a class="nav-link" href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a>
    </li>
    <?php
    }

    require $template->get_template_dir('tpl_offcanvas_menu.php', DIR_WS_TEMPLATE, $current_page_base, 'common') . '/tpl_offcanvas_menu.php';
    ?>
    </ul>
    <?php
    require DIR_WS_MODULES . zen_get_module_sidebox_directory('search_header.php');
    ?>
    </div>
    </nav>
    </div>
    </div>
    <!--eof-navigation display-->
    <?php
    // -----
    // Output the div that provides spacing under the navbar. It's set by
    // tpl_main_page.php and might be an empty string if it's already been
    // output in an active 'Header Position 1' banner.
    //
    echo $navbar_spacer;
    ?>
    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id="logo" class="row align-items-center px-3 pb-3">
    <?php
    $sales_text_class = (HEADER_SALES_TEXT !== '') ? 'col-sm-4' : 'col-sm-12';
    ?>
    <div class="<?php echo $sales_text_class; ?>">
    <a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>" aria-label="<?php echo TEXT_HEADER_ARIA_LABEL_LOGO; ?>">
    <?php echo zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base, 'images') . '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT); ?>
    </a><br>
    </div>
    <?php
    if ((SHOW_BANNERS_GROUP_SET2 !== '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) || HEADER_SALES_TEXT !== '') {
    ?>
    <div id="taglineWrapper" class="col-sm-6 text-center"> <!--col-sm-6 invece di col-sm-12-->
    <?php
    if (HEADER_SALES_TEXT !== '') {
    ?>
    <div id="tagline" class="text-center"><?php echo HEADER_SALES_TEXT;?></div>
    <?php
    }

    if (SHOW_BANNERS_GROUP_SET2 !== '' && $banner !== false) {
    // -----
    // Set variables used by the banner-carousel.
    //
    $find_banners = zen_build_banners_group(SHOW_BANNERS_GROUP_SET2);
    $banner_group = 2;
    ?>
    <div class="zca-banner bannerTwo rounded">
    <?php
    if (ZCA_ACTIVATE_BANNER_TWO_CAROUSEL === 'true') {
    require $template->get_template_dir('tpl_zca_banner_carousel.php', DIR_WS_TEMPLATE, $current_page_base, 'common') . '/tpl_zca_banner_carousel.php';
    } else {
    echo zen_display_banner('static', $banner);
    }
    ?>
    </div>
    <?php
    }
    ?>
    </div>
    <?php
    }
    // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2
    ?>
    </div>
    </div>
    <!--eof-branding display-->
    <?php
    // Display all header alerts via messageStack:
    if ($messageStack->size('header') > 0) {
    echo $messageStack->output('header');
    }
    if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
    echo zen_output_string_protected(urldecode($_GET['error_message']));
    }
    if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
    echo zen_output_string_protected($_GET['info_message']);
    }
    ?>
    <!--eof-header logo and navigation display-->

    <!--bof-optional categories tabs navigation display-->
    <?php require $template->get_template_dir('tpl_modules_categories_tabs.php', DIR_WS_TEMPLATE, $current_page_base, 'templates') . '/tpl_modules_categories_tabs.php'; ?>
    <!--eof-optional categories tabs navigation display-->
    <br>

    <!--bof-header ezpage links-->
    <?php
    if (EZPAGES_STATUS_HEADER === '1' || (EZPAGES_STATUS_HEADER === '2' && zen_is_whitelisted_admin_ip())) {
    require $template->get_template_dir('tpl_ezpages_bar_header.php', DIR_WS_TEMPLATE, $current_page_base, 'templates') . '/tpl_ezpages_bar_header.php';
    }
    ?>
    <!--eof-header ezpage links-->
    </div>
    Giovanni,
    Zen Cart V1.5.8 + templates ZCA Bootstrap Template

 

 
Page 94 of 134 FirstFirst ... 44849293949596104 ... 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