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

Hybrid View

  1. #1
    Join Date
    Mar 2005
    Posts
    142
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Just an update, it looks like I have a product listed in the products table that does not have a record in the products_description table. I believe this is causing the issue.

    I may have to find a way to create a SQL Statement to identify any other orphan records.

    Thanks for the feedback.

  2. #2
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,532
    Plugin Contributions
    127

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by n8pbm View Post
    Just an update, it looks like I have a product listed in the products table that does not have a record in the products_description table. I believe this is causing the issue.

    I may have to find a way to create a SQL Statement to identify any other orphan records.
    select p.products_id from products p where not exists (Select pd.products_id from products_description pd where pd.products_id = p.products_id);
    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.

  3. #3
    Join Date
    Oct 2007
    Posts
    412
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    ZC2.1.0, Bootstrap 3.7.4.

    No sure if this is relevant, a bug in the template or if I did something wrong, but just wanted to make a note about this cart update button issue:

    https://www.zen-cart.com/showthread....06#post1405206

    Hoping maybe somebody could confirm if it's a template bug or not.

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by DML73 View Post
    ZC2.1.0, Bootstrap 3.7.4.

    No sure if this is relevant, a bug in the template or if I did something wrong, but just wanted to make a note about this cart update button issue:

    https://www.zen-cart.com/showthread....06#post1405206

    Hoping maybe somebody could confirm if it's a template bug or not.
    It is; see this correction which will be part of v3.7.5 of the template:

    https://github.com/lat9/ZCA-Bootstra...dca59dda5b0L73

  5. #5
    Join Date
    Oct 2007
    Posts
    412
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Thanks, I can confirm that the update button is now working, but the right corner in the first row seems to be missing and the headings in that row seems to have switched one place to the left.
    Click image for larger version. 

Name:	screenshot-www_nordfield_com-2025_01_09-17_13_05.jpg 
Views:	122 
Size:	31.4 KB 
ID:	20856

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    There were two sections (one for the heading and one for the content) where that PHP conditional was removed. It looks like you got only one.

  7. #7
    Join Date
    Oct 2007
    Posts
    412
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I did delete line 73 - 75, 77 - 79 and also 118 - 120 and 122 -124. Is there more than that?

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hi All,

    I have located the two files that I need to edit I think which are including code:
    public_html/includes/templates/bootstrap/sideboxes/tpl_search_header.php
    <?php
    /**
    * Side Box Template: Searchbox for column header
    *
    * BOOTSTRAP v3.7.0
    *
    * @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 16 Modified in v1.5.7 $
    */
    $content = '<span id="callus">CALL US : 02-8003-5915</span>';
    /*
    $content .=
    zen_draw_form('quick_find_header', zen_href_link(FILENAME_SEARCH_RESULT, '', $request_type, false), 'get', 'class="form-inline"') .
    zen_draw_hidden_field('main_page', FILENAME_SEARCH_RESULT) .
    zen_draw_hidden_field('search_in_description', '1') .
    zen_hide_session_id() .
    '<div class="input-group">' .
    zen_draw_input_field('keyword', '', 'placeholder="' . HEADER_SEARCH_DEFAULT_TEXT . '" aria-label="' . HEADER_SEARCH_DEFAULT_TEXT . '" ') .
    '<div class="input-group-append">' .
    zen_image_submit(BUTTON_IMAGE_SEARCH, HEADER_SEARCH_BUTTON) .
    '</div>' .
    '</div>' .
    '</form>';
    */

    I want to disable the search function in the header bar(top) and keep the wording CALL US : 02-8003-5915 .Not knowing how to code it out I need assistance on what I need to do

    The other file is:

    public_html/includes/templates/bootstrap/sideboxes/tpl_ajax_search_header.php

    <?php
    // -----
    // Part of the Bootstrap template for Zen Cart. Renders the AJAX version
    // of the search-header.
    //
    // Bootstrap v3.6.0
    //
    $content = '<ul class="navbar-nav ml-auto">' . PHP_EOL;
    $content .= ' <li class="nav-item"><a href="javascript:void(0);" role="button" id="search-icon" class="nav-link" aria-label="' . BUTTON_SEARCH_ALT . '"><i class="fas fa-2x fa-search"></i></a></li>' . PHP_EOL;
    $content .= '</ul>' . PHP_EOL;

    Any help would be appreciated
    Last edited by Bruce1952; 25 Oct 2025 at 06:16 AM.
    Outdoorking
    Live Site www.outdoorking.com.au

  9. #9
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,532
    Plugin Contributions
    127

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I have had a couple of clients say that Google reports slow loading from the Bootstrap template in mobile mode. Do you have any thoughts about this?
    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.

  10. #10
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by swguy View Post
    I have had a couple of clients say that Google reports slow loading from the Bootstrap template in mobile mode. Do you have any thoughts about this?
    What Google tool reports this 'slow loading'?

 

 
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