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

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

            Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

            Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?