catalog/manufacturers.php

Listado de marcas o fabricantes

Listado de marcas

Este template te permite listar todas las marcas o fabricantes disponibles

Objetos disponibles

Descripción

$_manufacturer

Fabricantes.

$_total

Cantidad de fabricantes.

Los listados de marcas o fabricantes son muy útiles en marketplaces o tiendas multi-marca

Código de ejemplo

<div class="container">
	<div class="col-md-12">
    	<!-- Products -->
    	<?php foreach($_manufacturer as $brand): ?>
      	<div class="col-md-five thumb-product">
					<a href="<?=$brand->getURL()?>">
						<span class="thumb-info thumb-info-lighten thumb-info-centered-info">
							<span class="thumb-info-wrapper">
								<img src="<?=$_front->thumb($brand->get('image'), 400, 400)?>" class="img-responsive" alt="">
								<span class="thumb-info-title">
									<span class="thumb-info-type">Ver productos</span>
								</span>
								<span class="thumb-info-caption center thumb-list">
									<span class="thumb-info-caption-text title"><?=summary($brand->get('name'), 50)?></span>
								</span>
							</span>
						</span>
					</a>
				</div>
      <?php endforeach; ?>
	</div>                   
</div>

Last updated

Was this helpful?