Page 86 of 133 FirstFirst ... 3676848586878896 ... LastLast
Results 851 to 860 of 1327
  1. #851
    Join Date
    Jan 2010
    Location
    France
    Posts
    279
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hello, No I don't have a:active in my .css files.
    Giovanni,
    Zen Cart V1.5.8 + templates ZCA Bootstrap Template

  2. #852
    Join Date
    Mar 2005
    Posts
    107
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Is there a way to remove the "Back to top" Button"?

    I searched but did not find anything.

  3. #853
    Join Date
    Jan 2010
    Location
    France
    Posts
    279
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Put this in your file site_specific_styles.php

    #back-to-top.show {
    display: none;
    }
    Giovanni,
    Zen Cart V1.5.8 + templates ZCA Bootstrap Template

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    One of the few times you will see me suggest the code versus the CSS.

    Doing what you are proposing will probably break accessibility.

  5. #855
    Join Date
    Jan 2010
    Location
    France
    Posts
    279
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hello, what would be the best way to proceed so as not to break the accessibility.
    Merci
    Giovanni,
    Zen Cart V1.5.8 + templates ZCA Bootstrap Template

  6. #856
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hi
    Running Zencart 1.5.8 with Bootstrap
    I am getting this Fatal error message any ideas anyone, Thanks..

    [21-Nov-2022 09:00:03 UTC] Request URI: /shop/index.php?main_page=specials, IP address: 68.183.70.118
    #1 trigger_error() called at [/includes/classes/db/mysql/query_factory.php:667]
    #2 queryFactory->show_error() called at [/includes/classes/db/mysql/query_factory.php:634]
    #3 queryFactory->set_error() called at [/includes/classes/db/mysql/query_factory.php:275]
    #4 queryFactory->Execute() called at [/includes/classes/zca/zca_split_page_results.php:102]
    #5 zca_splitPageResults->__construct() called at [/includes/modules/bootstrap/product_listing.php:37]
    #6 require(/includes/modules/bootstrap/product_listing.php) called at [/includes/templates/bootstrap/templates/tpl_modules_product_listing.php:12]
    #7 require(/includes/templates/bootstrap/templates/tpl_modules_product_listing.php) called at [/includes/templates/bootstrap/templates/tpl_specials_default.php:24]
    #8 require(/includes/templates/bootstrap/templates/tpl_specials_default.php) called at [/includes/modules/pages/specials/main_template_vars.php:59]
    #9 require(/includes/modules/pages/specials/main_template_vars.php) called at [/includes/templates/bootstrap/common/tpl_main_page.php:202]
    #10 require(/includes/templates/bootstrap/common/tpl_main_page.php) called at [/index.php:94]
    --> PHP Fatal error: 1109:Unknown table 'p' in field list :: SELECT COUNT(p.products_id) as total ==> (as called by) /includes/classes/zca/zca_split_page_results.php on line 102 <== in /includes/classes/db/mysql/query_factory.php on line 667.

  7. #857
    Join Date
    Apr 2009
    Posts
    429
    Plugin Contributions
    2

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    It may be that the query in includes/modules/pages/specials/header_php_specials_zca_bootstrap.php has been altered
    Lines 29-34 should look like this
    Code:
    $listing_sql =
        "SELECT p.products_id, p.products_type, pd.products_name, p.products_image, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_model, 
                p.products_quantity, p.products_weight, p.product_is_call, p.product_is_always_free_shipping, p.products_qty_box_status, p.master_categories_id,
                p.manufacturers_id, m.manufacturers_name
           FROM (" . TABLE_PRODUCTS . " p
                    LEFT JOIN " . TABLE_SPECIALS . " s 
                        ON p.products_id = s.products_id
                    LEFT JOIN " . TABLE_MANUFACTURERS . " m
                        ON m.manufacturers_id = p.manufacturers_id
                    LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd 
                        ON p.products_id = pd.products_id
                       AND pd.language_id = :languageID
                )
          WHERE p.products_status = 1
            AND s.status = 1
          ORDER BY s.specials_date_added DESC";
    note the line
    Code:
    FROM (" . TABLE_PRODUCTS . " p
    defines an alias for products as p
    Mark Brittain
    http:\\innerlightcrystals.co.uk\sales\

  8. #858
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,817
    Plugin Contributions
    124

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Indeed, be sure you have the latest version of the Bootstrap template.
    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.

  9. #859
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by brittainmark View Post
    It may be that the query in includes/modules/pages/specials/header_php_specials_zca_bootstrap.php has been altered
    Lines 29-34 should look like this
    Code:
    $listing_sql =
        "SELECT p.products_id, p.products_type, pd.products_name, p.products_image, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_model, 
                p.products_quantity, p.products_weight, p.product_is_call, p.product_is_always_free_shipping, p.products_qty_box_status, p.master_categories_id,
                p.manufacturers_id, m.manufacturers_name
           FROM (" . TABLE_PRODUCTS . " p
                    LEFT JOIN " . TABLE_SPECIALS . " s 
                        ON p.products_id = s.products_id
                    LEFT JOIN " . TABLE_MANUFACTURERS . " m
                        ON m.manufacturers_id = p.manufacturers_id
                    LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd 
                        ON p.products_id = pd.products_id
                       AND pd.language_id = :languageID
                )
          WHERE p.products_status = 1
            AND s.status = 1
          ORDER BY s.specials_date_added DESC";
    note the line
    Code:
    FROM (" . TABLE_PRODUCTS . " p
    defines an alias for products as p
    Thank you for this I realised that I had missed adding the header_php_specials_zca_bootstrap.php to Pages/specials.. feel a bit stupid now.. many thanks

  10. #860
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by swguy View Post
    Indeed, be sure you have the latest version of the Bootstrap template.
    Thank you for this I realised that I had missed adding the header_php_specials_zca_bootstrap.php to Pages/specials.. feel a bit stupid now.. many thanks

 

 
Page 86 of 133 FirstFirst ... 3676848586878896 ... 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