Hello,
how to show brand on the products list ?
Regards
Hello, how to show brand on the products list ? Regards
Hello,
how to show brand on the products list ?
Regards
Hello, how to show brand on the products list ? RegardsHi Everyone,
I've been exploring how to display brands on product listings in PrestaShop, and one approach I found useful is adding brand information directly in the product loop template. This way, customers can quickly see the brand without clicking into each product. For example, on my site Apricocia we showcase collections like “Solid Long Dress” and “Printed Long Dress” with clear brand visibility right on the product list. It not only helps users browse more efficiently but also makes collections like Best Sellers or New Arrivals much easier to navigate. https://apricocia.com
Love Loren is a brand that embodies elegance and versatility across various categories, offering exquisite lingerie, stylish swimwear, dynamic activewear, chic accessories, and fashionable clothing. Each piece in their collection is meticulously designed to blend comfort with high fashion, ensuring that every item enhances the wearer's confidence and style. From delicate, intricately crafted lingerie to bold, statement-making swimwear, and from performance-driven activewear to versatile accessories and sophisticated everyday clothing, Loveloren caters to a diverse array of tastes and lifestyles. This dedication to quality and design makes Loveloren a go-to destination for those seeking both beauty and functionality in their wardrobe.

After yours trying to figure out how to add manufacture logo on product.tpl I finally got it.
Prestashop 1.6
If you want only the name:
above:
{if !$product->is_virtual && $product->condition}
add:
<p class="editable"><label>Brand: </label>
<span>
{$product_manufacturer->name}
</span>
</p>
If you want to add the image logo:
<!-------------------- mostrar logo------------->
<p class="editable"><label>Marca: </label>
{if isset($product_manufacturer->id_manufacturer)}
<img src="{$img_manu_dir}{$product_manufacturer->id}-medium_default.jpg" alt="" class="img img-thumbnail manufacturer-logo" />
{else}
<span>
{$product_manufacturer->name}
</span>
{/if}
</p>
<!-------------------- FIM mostrar logo------------->
Hope it help. Free of charge.
After yours trying to figure out how to add manufacture logo on product.tpl I finally got it. Prestashop 1.6 If you want only the name: above: {if !$product->is_virtual && $product->condition} add: <p class="editable"><label>Brand: </label> <span> {$product_manufacturer->name} </span> </p> If you want to add the image logo: <!-------------------- mostrar logo-------------> <p class="editable"><label>Marca: </label> {if isset($product_manufacturer->id_manufacturer)} <img src="{$img_manu_dir}{$product_manufacturer->id}-medium_default.jpg" alt="" class="img img-thumbnail manufacturer-logo" /> {else} <span> {$product_manufacturer->name} </span> {/if} </p> <!-------------------- FIM mostrar logo-------------> Hope it help. Free of charge.jinjinjinjin8989,
You need to add CMS Code control (Themler Insert tab >> More) to the Product or Product Details template in Themler. You вщтже need to create additional tpl files manually.
Please keep us posted about the progress.
Thank you,
Olivia
Hi,
To output product manufacturer on the Products and Product Details please try the following solution:
- Add CMS Code control to the appropriate template in the place where you want the manufacturer to appear.
- insert the following code:
<pre>
> {if isset($product.manufacturer_name)}
>
> <a href="{$link->getPageLink('manufacturer.php')}?id_manufacturer={$product->id_manufacturer}" title="{$product.manufacturer_name|escape:'htmlall':'UTF-8'}" target="_blank">
> {$product.manufacturer_name|escape:'htmlall':'UTF-8'}
> </a>
>
> {/if}
> </pre>This should help.
Thank you,
Olivia
Hi, I tried editing above code to CMS.tpl file but its not working. any help please?
> Hi, > > To output product manufacturer on the Products and Product Details please try the following solution: > > 1. Add **CMS Code** control to the appropriate template in the place where you want the manufacturer to appear. > 2. insert the following code: > <pre> > {if isset($product.manufacturer_name)} > > &lt;a href="{$link->getPageLink('manufacturer.php')}?id_manufacturer={$product->id_manufacturer}" title="{$product.manufacturer_name|escape:'htmlall':'UTF-8'}" target="_blank"&gt; > {$product.manufacturer_name|escape:'htmlall':'UTF-8'} > &lt;/a&gt; > > {/if} > </pre> > > This should help. > > Thank you, > Olivia Hi, I tried editing above code to CMS.tpl file but its not working. any help please?You are welcome.
Sincerely,
Hella
Hi,
To output product manufacturer on the Products and Product Details please try the following solution:
{if isset($product.manufacturer_name)}
<a href="{$link->getPageLink('manufacturer.php')}?id_manufacturer={$product->id_manufacturer}" title="{$product.manufacturer_name|escape:'htmlall':'UTF-8'}" target="_blank">
{$product.manufacturer_name|escape:'htmlall':'UTF-8'}
</a>
{/if}
This should help.
Thank you,
Olivia
Hi,
Just to say that all website i know show brand value : like a little website : amazon ;)
Regards
Hi, Just to say that all website i know show brand value : like a little website : amazon ;) RegardsHi,
i'm sorry, but i don't know how to ask other to vote, and i really need that the brand is show on the product and product list template...
In France, all the ecommerce website show the brand ...
It's really important for sell product to show the brand name ...
Hi, i'm sorry, but i don't know how to ask other to vote, and i really need that the brand is show on the product and product list template... In France, all the ecommerce website show the brand ... It's really important for sell product to show the brand name ...Hi,
Indeed, the file will be overridden each time you update the theme.
As seen on the forum this is indeed not the standard option for most of the themes, so you can ask other users to vote for such option in Themler.
Sincerely,
Hella
The https://www.prestashop.com/forums/topic/326257-show-manufacture-brand-on-the-product-listing-page-v-16/
tell to update the product.tpl (on the themler theme)
but themler will erase my update ? (or not) ?
The https://www.prestashop.com/forums/topic/326257-show-manufacture-brand-on-the-product-listing-page-v-16/ tell to update the product.tpl (on the themler theme) but themler will erase my update ? (or not) ?Hello,
i don't know if you understand my request.
i want to show brand name (manufacturer) on the products template. (red on the picture)
but it's not on the CONTROL (yellow on the picture)
On ecommerce, it's very important for us.
Can you add this feature ?
Regards

Hi,
As I understand, that is not a standard function and you can search for the solution over the internet. Maybe something like this will be helpful:
https://www.prestashop.com/forums/topic/326257-show-manufacture-brand-on-the-product-listing-page-v-16/
Sincerely,
Hella