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.
![]()
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.
![]()
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.
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.
Ah yes that worked, I must have missed something. Thanks a lot.
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 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
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_WIDTH, SUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>
//to
<div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, $current_categories_name, SUBCATEGORY_IMAGE_TOP_WIDTH, SUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>
in bootstrap:
best.PHP Code:
//from
<div id="indexCategories-categoryImage" class="categoryImage">
<?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', SUBCATEGORY_IMAGE_TOP_WIDTH, SUBCATEGORY_IMAGE_TOP_HEIGHT); ?>
</div>
//to
<div id="indexCategories-categoryImage" class="categoryImage">
<?php echo zen_image(DIR_WS_IMAGES . $categories_image, $current_categories_name, SUBCATEGORY_IMAGE_TOP_WIDTH, SUBCATEGORY_IMAGE_TOP_HEIGHT); ?>
</div>
Bookmarks