Can anyone tell me how to display Manufacturers as a list (as with categories) rather than as a dropdown list?
Thanks,
Roger
Open
/catalog/view/theme/default/template/module/manufacturer.tpl
and replace the code in there with the following
Note you will need to do some styling changes
Jay
/catalog/view/theme/default/template/module/manufacturer.tpl
and replace the code in there with the following
Code: Select all
<div class="box">
<div class="top"><img src="catalog/view/theme/default/image/brands.png" alt="" /><?php echo $heading_title; ?></div>
<div class="middle" style="text-align: center;">
<ul>
<?php foreach($manufacturer as $m): ?>
<li><a href="<?php echo str_replace('&', '&', $m['href']); ?>"><?php echo $m['name']; ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="bottom"> </div>
</div>
Jay
Who is online
Users browsing this forum: Amazon [Bot] and 12 guests