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;
I want to show brand logo on both pages
magento2 attributes swatches
add a comment |
I want to show brand logo on both pages
magento2 attributes swatches
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
add a comment |
I want to show brand logo on both pages
magento2 attributes swatches
I want to show brand logo on both pages
magento2 attributes swatches
magento2 attributes swatches
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
<?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************/?>
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
<?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************/?>
add a comment |
<?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************/?>
add a comment |
<?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************/?>
<?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************/?>
answered Jul 13 '18 at 10:23
AB SaiyadAB Saiyad
855
855
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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