Answer the question
In order to leave comments, you need to log in
How to add banner module to opencart products?
There is a banner.tpl file with a template:
<div id="banner<?php echo $module; ?>" class="banner">
<?php foreach ($banners as $banner) { ?>
<?php if ($banner['link']) { ?>
<div><a href="<?php echo $banner['link']; ?>"><img src="<?php echo $banner['image']; ?>" alt="<?php echo $banner['title']; ?>" title="<?php echo $banner['title']; ?>" /><?php if ($banner['description']) { ?><div class="s-desc"><?php echo $banner['description']; ?></div><?php } ?></a></div>
<?php } else { ?>
<div><img src="<?php echo $banner['image']; ?>" alt="<?php echo $banner['title']; ?>" title="<?php echo $banner['title']; ?>" /><?php if ($banner['description']) { ?><div class="s-desc"><?php echo $banner['description']; ?></div><?php } ?></div>
<?php } ?>
<?php } ?>
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question