Page 151 of 158 FirstFirst ... 51101141149150151152153 ... LastLast
Results 1,501 to 1,510 of 1575
  1. #1501
    Join Date
    Oct 2007
    Posts
    381
    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.
    Name:  screenshot-www_nordfield_com-2025_01_09-17_13_05.jpg
Views: 91
Size:  31.4 KB

  2. #1502
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,402
    Plugin Contributions
    94

    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.

  3. #1503
    Join Date
    Oct 2007
    Posts
    381
    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?

  4. #1504
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,402
    Plugin Contributions
    94

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by DML73 View Post
    I did delete line 73 - 75, 77 - 79 and also 118 - 120 and 122 -124. Is there more than that?
    Please pull the entire file from that commit:

    https://github.com/lat9/ZCA-Bootstra...rt_default.php

    I'm thinking that some modification you'd made is affecting that display.

  5. #1505
    Join Date
    Oct 2007
    Posts
    381
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Ah yes that worked, I must have missed something. Thanks a lot.

  6. #1506
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    683
    Plugin Contributions
    8

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    PHP 8.3/ZC 2.1.0/Bootstrap 3.7.4

    Is there a neat way to force the template to use the "Bootstrap Template Additional Images Carousel" for all images?

    Currently if I have four images and click "Larger Image", ZC will show only the main/primary image in the popup modal but if I click "Additional Images" it shows all four. What I would like to do is instead ALWAYS use the additional images carousel instead.

  7. #1507
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,402
    Plugin Contributions
    94

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by retched View Post
    PHP 8.3/ZC 2.1.0/Bootstrap 3.7.4

    Is there a neat way to force the template to use the "Bootstrap Template Additional Images Carousel" for all images?

    Currently if I have four images and click "Larger Image", ZC will show only the main/primary image in the popup modal but if I click "Additional Images" it shows all four. What I would like to do is instead ALWAYS use the additional images carousel instead.
    Not that I've seen before, but it's code ... so most anything is possible.

  8. #1508
    Join Date
    Apr 2011
    Posts
    516
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Not entirely convince it is Bootstrap template related but I am getting an odd alt title for category image.

    The alt title being generated is " a generic image". Why?

    I thought the category name would be applied to the category image alt title.

    Example page can be seen here https://www.royal-fleur.com/valentines-day-flowers

    Any suggestions?

    Thank you

  9. #1509
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,402
    Plugin Contributions
    94

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by nicksab View Post
    Not entirely convince it is Bootstrap template related but I am getting an odd alt title for category image.

    The alt title being generated is " a generic image". Why?

    I thought the category name would be applied to the category image alt title.

    Example page can be seen here https://www.royal-fleur.com/valentines-day-flowers

    Any suggestions?

    Thank you
    That's standard Zen Cart handling for the main category image; no different than responsive_classic.

    That saves a database query to retrieve the category's name, other than that the Bootstrap template will be updated if the base Zen Cart makes such a change.

  10. #1510
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,849
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    That's standard Zen Cart handling for the main category image; no different than responsive_classic.

    That saves a database query to retrieve the category's name, other than that the Bootstrap template will be updated if the base Zen Cart makes such a change.
    oh my....

    saving a database query?

    in YOUR_TEMPLATE/templates/tpl_index_categories.php

    one can find the following code and make said change:

    PHP Code:
    //from
    <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES $categories_image''SUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>

    //to
    <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES $categories_image$current_categories_nameSUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>

    in bootstrap:

    PHP Code:
    //from
        <div id="indexCategories-categoryImage" class="categoryImage">
            <?php echo zen_image(DIR_WS_IMAGES $categories_image''SUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?>
        </div>
    //to
        <div id="indexCategories-categoryImage" class="categoryImage">
            <?php echo zen_image(DIR_WS_IMAGES $categories_image$current_categories_nameSUBCATEGORY_IMAGE_TOP_WIDTHSUBCATEGORY_IMAGE_TOP_HEIGHT); ?>
        </div>
    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 

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

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