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]

    Bootstrap 3.4.0 with Zen cart V1.5.8 and PHP 7.4.33

    I am testing upgrading to 1.5.8 and installed the latest Bootstrap. I noticed that any categories that have sub-categories always shows the define main page information. If the category does not have a sub-category then the define mane page does not appear. I am trying to eliminate the define main page showing when selecting the categories. I use Bootstrap 3.1.1 currently with 1.5.7d and do not have this issue. Just curious if this is a setting I am missing?

    Switching to the classic template and I do not have this issue.

    http://www.popupparts.com/Backup if you want to see it in action.

    Thank you

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I saw the fix in github. I think I am all set.

  3. #3
    Join Date
    Nov 2006
    Posts
    127
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by n8pbm View Post
    Bootstrap 3.4.0 with Zen cart V1.5.8 and PHP 7.4.33

    I am testing upgrading to 1.5.8 and installed the latest Bootstrap. I noticed that any categories that have sub-categories always shows the define main page information. If the category does not have a sub-category then the define mane page does not appear. I am trying to eliminate the define main page showing when selecting the categories. I use Bootstrap 3.1.1 currently with 1.5.7d and do not have this issue. Just curious if this is a setting I am missing?

    Switching to the classic template and I do not have this issue.

    http://www.popupparts.com/Backup if you want to see it in action.

    Thank you
    I do not know if it is the same solution like in github.
    I went to
    includes/templates/bootstrap/templates/tpl_index_categories.php
    and made the following lines inactive

    Code:
    //if (DEFINE_MAIN_PAGE_STATUS === '1' || DEFINE_MAIN_PAGE_STATUS === '2') {
    ?>
        <!-- <div id="indexCategories-defineContent" class="defineContent"> -->
    <?php
        /**
         * require the html_define for the index/categories page
         */
        // require $define_page;
    ?>
        <!-- </div> -->
    <?php
    //} else {
    ?>
        <h1 id="indexCategories-pageHeading" class="pageHeading"><?php echo $current_categories_name; ?></h1>
    <?php
    //}

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    @n8pbm Please post a link to the fix in Github so others can benefit from your finding. Thanks!
    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.

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Sure. This is the URL to the fix:
    https://github.com/lat9/ZCA-Bootstra...4bd86ef847364a

    Line 31 to 47 in includes/templates/bootstrap/templates/tpl_index_categories.php

  6. #6
    Join Date
    Jan 2010
    Location
    France
    Posts
    291
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hello, I am looking to put .active in red on the ezpage header bar and on the category names see photos one on a site where there is active on the categories and one without which is mine, in the login page I am successful to put the .active in yellow here is the code
    PHP Code:
    .nav-tabs .nav-link.active {
      
    color#fcf501;
      
    background-color#fff;
      
    border-color#dee2e6 #dee2e6 #fff;

    but in the column of the names of the categories I run into a wall. can you help me?

    Click image for larger version. 

Name:	Capture d’écran 2022-11-10 à 08.46.30.jpg 
Views:	90 
Size:	16.2 KB 
ID:	20145
    Click image for larger version. 

Name:	Capture d’écran 2022-11-10 à 08.46.jpg 
Views:	86 
Size:	40.8 KB 
ID:	20146
    Click image for larger version. 

Name:	Capture d’écran 2022-11-10 à 08.50.23.jpg 
Views:	75 
Size:	36.1 KB 
ID:	20147
    Giovanni,
    Zen Cart V2.1

  7. #7
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    The categories tab menu adds the class .activeLink to the current link automatically.

    Hopefully, you are using the site_specific_styles.php to control all your changes to the template. If not, rename the dist-site_specific_styles.php to site_specific_styles.php and save it to your CSS folder.

    Then, for the categories add
    Code:
    .activeLink {
      background-color: #ffffff !important;
      color: #fcf501 !important;
      border-color: #dee2e6 #dee2e6 #fff !important;
    }
    Unfortunately, the !important is needed to fully override the stylesheet_colors.css

    Please Note: The use of the above colors for background and font will violate accessibility contrast rules. Your font color would have to jump to #807900 to meet the 4.5:1 minimum ratio.

    It looks like we will need to add to the github wish list for .activeLink to be added to the ezpages bar. If so, the above code would need to be more specific than just .activeLink if you wanted different colors in different bars.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  8. #8
    Join Date
    Jan 2010
    Location
    France
    Posts
    291
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hello dbltoe, thank you for answering me so quickly, your modification
    PHP Code:
    .activeLink {
      
    background-color#ffffff !important;
      
    color#fcf501 !important;
      
    border-color#dee2e6 #dee2e6 #fff !important;

    does not work,

    I also have another problem if I put the css codes in site_specific_styles.php they have no effect, I had to create another .css file and paste my codes in this one.
    Giovanni,
    Zen Cart V2.1

  9. #9
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by diamond1 View Post
    Hello, I am looking to put .active in red on the ezpage header bar and on the category names see photos one on a site where there is active on the categories and one without which is mine, in the login page I am successful to put the .active in yellow here is the code
    PHP Code:
    .nav-tabs .nav-link.active {
      
    color#fcf501;
      
    background-color#fff;
      
    border-color#dee2e6 #dee2e6 #fff;

    but in the column of the names of the categories I run into a wall. can you help me?

    Click image for larger version. 

Name:	Capture d’écran 2022-11-10 à 08.46.30.jpg 
Views:	90 
Size:	16.2 KB 
ID:	20145
    Click image for larger version. 

Name:	Capture d’écran 2022-11-10 à 08.46.jpg 
Views:	86 
Size:	40.8 KB 
ID:	20146
    Click image for larger version. 

Name:	Capture d’écran 2022-11-10 à 08.50.23.jpg 
Views:	75 
Size:	36.1 KB 
ID:	20147
    Perhaps you have an a:active defined in one of your css files.

    https://www.geeksforgeeks.org/differ...-active-links/

    why ZCA-bs decided to go with a separate class .activelink is beyond my understanding.

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

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Looks like an override of

    includes/languages/english/lang.order_status.php

    will be needed for PHP 8.1

    [13-Nov-2022 13:56:15 America/New_York] PHP Fatal error: Uncaught Error: Undefined constant "TEXT_LOOKUP_INSTRUCTIONS" in /homepages/19/client/htdocs/estore/includes/templates/bootstrap/templates/tpl_order_status_default.php:177
    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