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












0















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










share|improve this question
















bumped to the homepage by Community 6 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • 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
















bumped to the homepage by Community 6 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • 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,94841847




2,94841847










asked Nov 26 '16 at 9:18









Mohammad BazilMohammad Bazil

363




363





bumped to the homepage by Community 6 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 6 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • 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

        594




        594






























            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

            Polycentropodidae

            Magento 2 Error message: Invalid state change requested

            Paulmy