PS8 - Display brand on Product Page

PHOTO EMBED

Fri Jan 24 2025 20:22:45 GMT+0000 (Coordinated Universal Time)

Saved by @caovillanueva #html

{if isset($product_manufacturer->id)}
    <div class="prod-manufacturer">
      {if isset($manufacturer_image_url)}
        <a href="{$product_brand_url}">
          <img src="{$manufacturer_image_url}" class="img img-fluid manufacturer-logo" alt="{$product_manufacturer->name}" loading="lazy">
            </a>
    {else}                
      <span>
        <a href="{$product_brand_url}">{$product_manufacturer->name}</a>
     </span>
     {/if}
      </div>
{/if}
content_copyCOPY

Displaying brand name or image in product page.