top of page

Change product image placeholder based on product – Magento 2

We need to override the below two functions in vendor/magento/module-catalog/Helper/Image.php

Below function change the placeholder image in the home page, category page, product page.

public function getPlaceholder($placeholder = null)
{
	$product = $this->getProduct();
	if($product->getName() == "Test Name") // here your condition
	{
		// logic to retrieve new url
		return $new_palceholder_url;
	}
        ...............//remining magento core codes
}

Below function change the placeholder image in cart page.

public function getUrl()
{
	$product = $this->getProduct();
	if($product->getName() == "Test Name") // here your condition
	{
		// logic to retrieve new url
		return $new_palceholder_url;
	}
        ...............//remining magento core codes
}

I hope it helps. Thanks.

Recent Posts

See All

Comments


Follow Me

  • LinkedIn
  • Twitter
  • Facebook
  • YouTube
  • Instagram

©2021 by Bilal Usean. Proudly created with Wix.com

bottom of page