Page 120 of 128 FirstFirst ... 2070110118119120121122 ... LastLast
Results 1,191 to 1,200 of 1275
  1. #1191
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    521
    Plugin Contributions
    3

    Default Re: ZCA Bootstrap Template

    Currently running 1.5.8a ZenCart/3.6.3 Bootstrap Template on PHP 8.

    Previously I had the AJAX search of the header working but as of today, likely the update as it worked prior, has stopped working.

    I inspected the error console and found this error when I checked it:

    Code:
    Uncaught TypeError: jQuery(...).modal is not a function
        at HTMLAnchorElement.<anonymous> (ajax_search.min.js:6:123)
        at HTMLAnchorElement.dispatch (jscript_a_jquery.js:25:1102)
        at q.handle (jscript_a_jquery.js:24:29909)
    (anonymous) @ ajax_search.min.js:6
    dispatch @ jscript_a_jquery.js:25
    q.handle @ jscript_a_jquery.js:24
    Unfortunately I'm not well versed with JQuery to even begin how this should be fixed. I only know that the code points to the following:

    Code:
        jQuery("#search-icon, #mobile-search").on("click", function(e) {
            jQuery("#search-wrapper").modal()
        }),
    Would appreciate any help.

  2. #1192
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,523
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    I'm not sure where the file /jscript/jscript_a_query.js comes from, but it appears that it's 'conflicting' with the Bootstrap template's ajax_search.min.js file's operation.

  3. #1193
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    521
    Plugin Contributions
    3

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    I'm not sure where the file /jscript/jscript_a_query.js comes from, but it appears that it's 'conflicting' with the Bootstrap template's ajax_search.min.js file's operation.
    That did it. Now to see where that file came from.

    EDIT: Found it. The Consent banner plugin. Removing that file doesn't seem to affect either, so I'll go ahead and trash that one.
    Last edited by retched; 11 Mar 2024 at 05:15 PM.

  4. #1194
    Join Date
    Jun 2009
    Location
    Europe
    Posts
    58
    Plugin Contributions
    1

    Default Re: ZCA Bootstrap Template

    Just a small note;
    in includes\templates\bootstrap\templates\tpl_product_info_display.php between line 209 and 216 div causes html error, because there is already the same div in tpl_modules_attributes.php


    HTML Code:
    <!--<div id="productAttributes"> REMOVE-->
    
    <?php
    /**
     * display the product attributes
     */
      require($template->get_template_dir('/tpl_modules_attributes.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributes.php'); ?>
    <!--</div> REMOVE-->
    Anybody has an idea about the misfunction of the image swap?

  5. #1195
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    521
    Plugin Contributions
    3

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by zamzom View Post
    Just a small note;
    in includes\templates\bootstrap\templates\tpl_product_info_display.php between line 209 and 216 div causes html error, because there is already the same div in tpl_modules_attributes.php


    HTML Code:
    <!--<div id="productAttributes"> REMOVE-->
    
    <?php
    /**
     * display the product attributes
     */
      require($template->get_template_dir('/tpl_modules_attributes.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributes.php'); ?>
    <!--</div> REMOVE-->
    Anybody has an idea about the misfunction of the image swap?
    Rather than do that, why not remove the defining <div> (line 18) and </div> (line 161)* inside of tpl_modules_attributes.php?

  6. #1196
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,523
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    I'm not sure where your tpl_modules_attributes.php came from, but the as-shipped version for Bootstrap 3.5.0 does not contain that div.

    You'll need to check on the attributes-image-swap support-thread for why it doesn't work.

  7. #1197
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    521
    Plugin Contributions
    3

    Default Re: ZCA Bootstrap Template

    Again using 3.6.3 ZCA and ZenCart 1.5.8s on PHP 8.2.

    I am getting the following display of the product price when displaying a product with attributes assigned.


    Should I manually remove one of these price blocks or is there a way to toggle which one is displayed? (For note, this is the default product type with attributes.)

  8. #1198
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,523
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    You'll need to either edit your tpl_product_info_display.php to comment-out either the upper or lower price display or provide styling (in the /css/site_specific_styles.php) to do a display: none; on one of them.

  9. #1199
    Join Date
    Jan 2015
    Location
    Cyprus
    Posts
    46
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    1) Did you try changing the columns-per-row to 0 (fluid)? If that doesn't do what you want, v3.6.3 adds a 'soft' configuration setting:
    Code:
        // -----
        // Starting with v3.6.3, a categories' fluid layout can be identified.  If predefined (like
        // in an /extra_datafiles .php module), that override is used.
        //
        if ($category_row_layout_style === 'fluid') {
            $grid_cards_classes = 'row-cols-1 row-cols-md-2 row-cols-lg-2 row-cols-xl-3';
            if (!isset($grid_category_classes_matrix)) {
                // this array is intentionally in reverse order, with largest index first
                $grid_category_classes_matrix = [
                    '12' => 'row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-6',
                    '10' => 'row-cols-1 row-cols-md-2 row-cols-lg-4 row-cols-xl-5',
                    '9' => 'row-cols-1 row-cols-md-3 row-cols-lg-4 row-cols-xl-5',
                    '8' => 'row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4',
                    '6' => 'row-cols-1 row-cols-md-2 row-cols-lg-2 row-cols-xl-3',
                ];
            }
    2) There's a 'soft' setting (see dist.site-specific-bootstrap-settings.php) that totally disabled the back-to-top button. If you still want it to show, but not overlay "important" buttons, here's what I added to my /css/site_specific_styles.php so it overlays the footer:
    Code:
    #back-to-top {
        bottom: 2.5vh;
    }
    Hi Cindy,
    On 1.5.7d with 3.6.3 the the columns-per-row to 0 (fluid) is not working as per attached image. Is this something that changed in the latest version or is something I am doing wrong?
    Click image for larger version. 

Name:	Screenshot 2024-03-15 at 1.41.56 PM.jpg 
Views:	8 
Size:	18.1 KB 
ID:	20517

  10. #1200
    Join Date
    Jan 2015
    Location
    Cyprus
    Posts
    46
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Hi Guys,
    In 1.5.7d and 3.6.3 the Listing Columns Per Row and the Listing Layout Style in product listing, do not have any effect when changed. I this a change in the version 3.6.3 or I should reinstall the template? see attached photos
    Click image for larger version. 

Name:	Screenshot 2024-03-15 at 2.19.05 PM.jpg 
Views:	11 
Size:	35.5 KB 
ID:	20518Click image for larger version. 

Name:	Screenshot 2024-03-15 at 2.20.28 PM.jpg 
Views:	9 
Size:	33.5 KB 
ID:	20519Click image for larger version. 

Name:	Screenshot 2024-03-15 at 2.34.14 PM.jpg 
Views:	6 
Size:	3.8 KB 
ID:	20520

 

 

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