How to add brand logo at grid and product page in magento 2?how to show image by product attribute value in magento additional product information on product pageMagento 2 : How to change print and PDF logo?Magento 2 : How to Create BrandBrand activation feature on Product pageMagento 2 : Alternate Logo for Page LayoutShow brand attribute in product listingHow to add manufacturer on module ves-Brand?How to add brand filter option in admin product grid?Manage Brands / Manufacturers in admin. Show brand logo and story in Product PageCustom Redirection for Brand In Category Pages

How is John Wick 3 a 15 certificate?

Extreme flexible working hours: how to control people and activities?

Binomial to Poisson Approximation : Why does p have to be small

Certain search in list

I have a problem assistant manager, but I can't fire him

What ways have you found to get edits from non-LaTeX users?

How can I make some of my chapters "come to life"?

Why didn't Voldemort recognize that Dumbledore was affected by his curse?

Why are trash cans referred to as "zafacón" in Puerto Rico?

Active low-pass filters --- good to what frequencies?

How to trick the reader into thinking they're following a redshirt instead of the protagonist?

Were Alexander the Great and Hephaestion lovers?

English word for "product of tinkering"

Is it possible to have the age of the universe be unknown?

Is it possible to have a wealthy country without a middle class?

Tangent point coordinates when the curve is a set of points

How do I prevent employees from either switching to competitors or opening their own business?

Is this use of the expression "long past" correct?

Russian word for a male zebra

Why can my keyboard only digest 6 keypresses at a time?

With Ubuntu 18.04, how can I have a hot corner that locks the computer?

Is it a problem if <h4>, <h5> and <h6> are smaller than regular text?

Why do some employees fill out a W-4 and some don't?

Does the Long March-11 increase its thrust after clearing the launch tower?



How to add brand logo at grid and product page in magento 2?


how to show image by product attribute value in magento additional product information on product pageMagento 2 : How to change print and PDF logo?Magento 2 : How to Create BrandBrand activation feature on Product pageMagento 2 : Alternate Logo for Page LayoutShow brand attribute in product listingHow to add manufacturer on module ves-Brand?How to add brand filter option in admin product grid?Manage Brands / Manufacturers in admin. Show brand logo and story in Product PageCustom Redirection for Brand In Category Pages






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















https://i.stack.imgur.com/7Gj5f.pngI want to show brand logo on both pages










share|improve this question
























  • Please add more detail

    – Ronak Chauhan
    Nov 26 '16 at 9:21











  • Brand is attribute of product, right?

    – Dhiren Vasoya
    Nov 26 '16 at 10:52











  • Yes friend Brand is attribute of product.

    – Mohammad Bazil
    Nov 26 '16 at 11:57

















0















https://i.stack.imgur.com/7Gj5f.pngI want to show brand logo on both pages










share|improve this question
























  • Please add more detail

    – Ronak Chauhan
    Nov 26 '16 at 9:21











  • Brand is attribute of product, right?

    – Dhiren Vasoya
    Nov 26 '16 at 10:52











  • Yes friend Brand is attribute of product.

    – Mohammad Bazil
    Nov 26 '16 at 11:57













0












0








0








https://i.stack.imgur.com/7Gj5f.pngI want to show brand logo on both pages










share|improve this question
















https://i.stack.imgur.com/7Gj5f.pngI want to show brand logo on both pages







magento2 attributes swatches






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 5 '18 at 11:37









Teja Bhagavan Kollepara

2,92742051




2,92742051










asked Nov 26 '16 at 9:18









Mohammad BazilMohammad Bazil

365




365












  • Please add more detail

    – Ronak Chauhan
    Nov 26 '16 at 9:21











  • Brand is attribute of product, right?

    – Dhiren Vasoya
    Nov 26 '16 at 10:52











  • Yes friend Brand is attribute of product.

    – Mohammad Bazil
    Nov 26 '16 at 11:57

















  • Please add more detail

    – Ronak Chauhan
    Nov 26 '16 at 9:21











  • Brand is attribute of product, right?

    – Dhiren Vasoya
    Nov 26 '16 at 10:52











  • Yes friend Brand is attribute of product.

    – Mohammad Bazil
    Nov 26 '16 at 11:57
















Please add more detail

– Ronak Chauhan
Nov 26 '16 at 9:21





Please add more detail

– Ronak Chauhan
Nov 26 '16 at 9:21













Brand is attribute of product, right?

– Dhiren Vasoya
Nov 26 '16 at 10:52





Brand is attribute of product, right?

– Dhiren Vasoya
Nov 26 '16 at 10:52













Yes friend Brand is attribute of product.

– Mohammad Bazil
Nov 26 '16 at 11:57





Yes friend Brand is attribute of product.

– Mohammad Bazil
Nov 26 '16 at 11:57










1 Answer
1






active

oldest

votes


















0














<?php/***********Display Brand Attribute in Product View page************/?>

<?php
if($_product->getManufacturer())
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');//get current category

$brand_value = $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product);
$brand_id = $_product->getManufacturer();
$curnt_cat_url = $category->getUrl();
$brandId = '?manufacturer='.$brand_id;

$om = MagentoFrameworkAppObjectManager::getInstance();
$swatchHelper=$om->get("MagentoSwatchesHelperMedia");
$swatchCollection = $om->create('MagentoSwatchesModelResourceModelSwatchCollection');
$swatchCollection->addFieldtoFilter('option_id',$brand_id);
$item=$swatchCollection->getFirstItem();
$ThumbImage = $swatchHelper->getSwatchAttributeImage('swatch_thumb', $item->getValue());
$SwatchImage = $swatchHelper->getSwatchAttributeImage('swatch_image', $item->getValue());

?>

<div class="brand_bg">
<a href="<?php echo $curnt_cat_url.$brandId; ?>" title="<?php echo $brand_value; ?>" ><img src="<?php echo $ThumbImage; ?>"></a>
</div>
<?php ?>
<?php/***********End Brand Attribute************/?>





share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "479"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f147608%2fhow-to-add-brand-logo-at-grid-and-product-page-in-magento-2%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    <?php/***********Display Brand Attribute in Product View page************/?>

    <?php
    if($_product->getManufacturer())
    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');//get current category

    $brand_value = $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product);
    $brand_id = $_product->getManufacturer();
    $curnt_cat_url = $category->getUrl();
    $brandId = '?manufacturer='.$brand_id;

    $om = MagentoFrameworkAppObjectManager::getInstance();
    $swatchHelper=$om->get("MagentoSwatchesHelperMedia");
    $swatchCollection = $om->create('MagentoSwatchesModelResourceModelSwatchCollection');
    $swatchCollection->addFieldtoFilter('option_id',$brand_id);
    $item=$swatchCollection->getFirstItem();
    $ThumbImage = $swatchHelper->getSwatchAttributeImage('swatch_thumb', $item->getValue());
    $SwatchImage = $swatchHelper->getSwatchAttributeImage('swatch_image', $item->getValue());

    ?>

    <div class="brand_bg">
    <a href="<?php echo $curnt_cat_url.$brandId; ?>" title="<?php echo $brand_value; ?>" ><img src="<?php echo $ThumbImage; ?>"></a>
    </div>
    <?php ?>
    <?php/***********End Brand Attribute************/?>





    share|improve this answer



























      0














      <?php/***********Display Brand Attribute in Product View page************/?>

      <?php
      if($_product->getManufacturer())
      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');//get current category

      $brand_value = $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product);
      $brand_id = $_product->getManufacturer();
      $curnt_cat_url = $category->getUrl();
      $brandId = '?manufacturer='.$brand_id;

      $om = MagentoFrameworkAppObjectManager::getInstance();
      $swatchHelper=$om->get("MagentoSwatchesHelperMedia");
      $swatchCollection = $om->create('MagentoSwatchesModelResourceModelSwatchCollection');
      $swatchCollection->addFieldtoFilter('option_id',$brand_id);
      $item=$swatchCollection->getFirstItem();
      $ThumbImage = $swatchHelper->getSwatchAttributeImage('swatch_thumb', $item->getValue());
      $SwatchImage = $swatchHelper->getSwatchAttributeImage('swatch_image', $item->getValue());

      ?>

      <div class="brand_bg">
      <a href="<?php echo $curnt_cat_url.$brandId; ?>" title="<?php echo $brand_value; ?>" ><img src="<?php echo $ThumbImage; ?>"></a>
      </div>
      <?php ?>
      <?php/***********End Brand Attribute************/?>





      share|improve this answer

























        0












        0








        0







        <?php/***********Display Brand Attribute in Product View page************/?>

        <?php
        if($_product->getManufacturer())
        $objectManager = MagentoFrameworkAppObjectManager::getInstance();
        $category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');//get current category

        $brand_value = $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product);
        $brand_id = $_product->getManufacturer();
        $curnt_cat_url = $category->getUrl();
        $brandId = '?manufacturer='.$brand_id;

        $om = MagentoFrameworkAppObjectManager::getInstance();
        $swatchHelper=$om->get("MagentoSwatchesHelperMedia");
        $swatchCollection = $om->create('MagentoSwatchesModelResourceModelSwatchCollection');
        $swatchCollection->addFieldtoFilter('option_id',$brand_id);
        $item=$swatchCollection->getFirstItem();
        $ThumbImage = $swatchHelper->getSwatchAttributeImage('swatch_thumb', $item->getValue());
        $SwatchImage = $swatchHelper->getSwatchAttributeImage('swatch_image', $item->getValue());

        ?>

        <div class="brand_bg">
        <a href="<?php echo $curnt_cat_url.$brandId; ?>" title="<?php echo $brand_value; ?>" ><img src="<?php echo $ThumbImage; ?>"></a>
        </div>
        <?php ?>
        <?php/***********End Brand Attribute************/?>





        share|improve this answer













        <?php/***********Display Brand Attribute in Product View page************/?>

        <?php
        if($_product->getManufacturer())
        $objectManager = MagentoFrameworkAppObjectManager::getInstance();
        $category = $objectManager->get('MagentoFrameworkRegistry')->registry('current_category');//get current category

        $brand_value = $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product);
        $brand_id = $_product->getManufacturer();
        $curnt_cat_url = $category->getUrl();
        $brandId = '?manufacturer='.$brand_id;

        $om = MagentoFrameworkAppObjectManager::getInstance();
        $swatchHelper=$om->get("MagentoSwatchesHelperMedia");
        $swatchCollection = $om->create('MagentoSwatchesModelResourceModelSwatchCollection');
        $swatchCollection->addFieldtoFilter('option_id',$brand_id);
        $item=$swatchCollection->getFirstItem();
        $ThumbImage = $swatchHelper->getSwatchAttributeImage('swatch_thumb', $item->getValue());
        $SwatchImage = $swatchHelper->getSwatchAttributeImage('swatch_image', $item->getValue());

        ?>

        <div class="brand_bg">
        <a href="<?php echo $curnt_cat_url.$brandId; ?>" title="<?php echo $brand_value; ?>" ><img src="<?php echo $ThumbImage; ?>"></a>
        </div>
        <?php ?>
        <?php/***********End Brand Attribute************/?>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 13 '18 at 10:23









        AB SaiyadAB Saiyad

        855




        855



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Magento Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f147608%2fhow-to-add-brand-logo-at-grid-and-product-page-in-magento-2%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

            Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

            Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form