Help me please! I'm still new to Opencart. I need to make the slider subcategories from some categories, but not from all categories. If possible with a code example please.
<div class="main-slider"> <?php if ($cats_status) { foreach ($categories as $category) { if ($category['children']) { if ($image_in_ico) { foreach ($category['children'] as $child) { ?> <div class="main-sl-item"> <img src="<?php echo $child['thumb']; ?>" title="<?php echo $child['name']; ?>" alt="<?php echo $child['name']; ?>" /> <p><?php echo $child['name']; ?></p> <a href="<?php echo $child['href']; ?>">Смотреть</a> </div> <?php }; }; }; }; }; ?> I tried
foreach ($category['children'][0] as $child) but nothing works. Thank you in advance!