Page 1 of 2 12 LastLast
Results 1 to 10 of 1673

Hybrid View

  1. #1
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,873
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by charmlt View Post
    I want to turn off the "Write Review" below the Product Description, /index.php?main_page=product_info&cPath=2&products_id=2
    That's a "base" Zen Cart configuration setting in the site's admin: Catalog :: Product Types, then click the Layout Settings button for the products' type and set Show Product Reviews Button to "False/0".

  2. #2
    Join Date
    Jun 2012
    Posts
    481
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    I would like to add a tooltip to the font awesome bars icon in the header. I was successful by changing the code in tpl_header.php line 29 to the following:
    Code:
    <i class="fas fa-bars" data-toggle="tooltip" title="my tooltip text"></i>
    But the tooltip also appears when hovering over the bars on the offcanvas menu. I do not want to show the tooltip there or change the tooltip text. So how and where can I accomplish this?
    Thank you in advance.
    Dave
    zc158a, ZCA bootstrap 3.6.1

  3. #3
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,873
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Dave224 View Post
    I would like to add a tooltip to the font awesome bars icon in the header. I was successful by changing the code in tpl_header.php line 29 to the following:
    Code:
    <i class="fas fa-bars" data-toggle="tooltip" title="my tooltip text"></i>
    But the tooltip also appears when hovering over the bars on the offcanvas menu. I do not want to show the tooltip there or change the tooltip text. So how and where can I accomplish this?
    Thank you in advance.
    Dave
    zc158a, ZCA bootstrap 3.6.1
    That feels like a "job" for some jQuery/javascript: https://www.w3schools.com/bootstrap4...js_tooltip.asp

  4. #4
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,873
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    v3.6.2 of the ZCA Bootstrap Template is now available for download: https://www.zen-cart.com/downloads.php?do=file&id=2191

    This release contains changes associated with the following GitHub issues:

    #274: Changed rating stars' default color/background-color.
    #290: New notifications (from zc200) for the account_history_info page's template.
    #296: UI improvements to the admin's ZCA Bootstrap Colors tool; default color now included in exported .csv.
    #297: product_reviews_write page's template, variable name changed for zc200.
    #298: Remove unwanted HTML tags from zca_bootstrap log for breadcrumbs' separator.
    #299: id= attribute wasn't being added to the "Submit" button on the checkout_one_confirmation page.

  5. #5
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    829
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Hi All,

    Server Host: xxxxx.prod.phx3.secureserver.net (68.178.132.xxx)
    Database: xxxxx_live158Store
    Home: /home/xxxxx/public_html/Server
    OS: Linux 4.18.0-477.27.2.lve.el8.x86_64
    Server Date: 24/11/2023 22:50:21
    Server Up Time: Disabled/UnavailableHTTP
    Server: ApachePHP Version: 8.0.30 (Zend: 4.0.30)PHP
    File Uploads: OnUpload Max Size: 1024M
    PHP Memory Limit: -1POST Max Size: 1024M
    Database Engine: MySQL 10.6.14-MariaDB-cll-lve
    Database Host: localhost (127.0.0.1)
    Database Date: 24/11/2023 22:50:21
    Database Data Size: 280,607 kB
    Database Index Size: 40,767 kB
    MySQL Slow Query Log Status: Off
    MySQL Slow Query Log File: xxxxx-slow.log
    MySQL Mode: NO_ENGINE_SUBSTITUTIONView the database configuration variables

    I need help on how I move the search from the top right to the right side where the logo is below the contact number.

    We are using the latest version of the bootstrap template version 3.6.3. This is the site outdoorking.com.au

    Any assistance with code and where to put it would be appreciated, as I am consistently getting people not knowing where they can search on the website.

    I would like to have a box saying enter part number or description so they can at lest see it.
    Outdoorking
    Live Site www.outdoorking.com.au

  6. #6
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,873
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    Go to Configuration :: Bootstrap Template Settings and set Enable AJAX Search to false. That'll cause a full search button/input field to be displayed instead of the search-icon.

    Note, too, that v3.6.3 is not the latest; v3.6.4 was released a couple of days ago!

  7. #7
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    829
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    Go to Configuration :: Bootstrap Template Settings and set Enable AJAX Search to false. That'll cause a full search button/input field to be displayed instead of the search-icon.

    Note, too, that v3.6.3 is not the latest; v3.6.4 was released a couple of days ago!
    That worked but now the display below does not show the products. So how do you fix that issue. The box used to pop up on the screen and a drop down would show products image etc.
    Outdoorking
    Live Site www.outdoorking.com.au

  8. #8
    Join Date
    Jun 2012
    Posts
    481
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    That feels like a "job" for some jQuery/javascript: https://www.w3schools.com/bootstrap4...js_tooltip.asp
    Thank you Lat9! Reading the link got me to initialize the tooltip correctly which made a nicer looking tooltip. For those interested, some more googling and experiments resulted in adding the following code to jscript_zca_bootstrap.js inside the ready function to also toggle the tooltip text:
    Code:
        $('[data-toggle="tooltip"]').tooltip(); // edit to initialize tooltips
        $('.navbar-toggler').on('click', function() { // edit to toggle tooltip text
          toggleToolTipTitle.call(this, "my oncanvas tooltip text", "my offcanvas tooltip text");
        });
    
        function toggleToolTipTitle(titleOne, titleTwo) {
          var lastTitle = $(".navbar-toggler i").attr("data-original-title");
          $(".navbar-toggler i").attr('data-original-title',lastTitle === titleOne ? titleTwo : titleOne);
          $(".navbar-toggler i").tooltip("show");
        }
    The code might be simplified but it works for me. Thanks again!
    Dave
    zc158a, zca-bootstrap-template 3.6.1

  9. #9
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    932
    Plugin Contributions
    9

    Default Re: ZCA Bootstrap Template

    Does anyone know why the right column isn't visible on my install?

    There are definitely sideboxes enabled and with the "Right" column as the target. The columns are balanced at 3, 6, and 3 for a total of 12. And even using the "Reset Layout" function doesn't seem to be working.

    I'm using ZC 1.5.8a with version 3.6.2 of Boostrap.

    EDIT: Scratch the above.

    Setting I was looking for was ZenCart's Global Configuration to enable the Right Column.
    Last edited by retched; 14 Jan 2024 at 02:44 AM.

  10. #10
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,511
    Plugin Contributions
    126

    Default Re: ZCA Bootstrap Template

    > Setting I was looking for was ZenCart's Global Configuration to enable the Right Column.

    Look at Configuration > Layout Settings:

    Column Width - Left Boxes
    Column Left Status - Global
    Column Width - Left
    That Software Guy. My Store: Zen Cart Support
    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.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 107
    Last Post: 11 Nov 2024, 08:28 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

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