How to check product is in stock status programmatically Magento 2?

While developing on Magento 2 dependent on the Product stock status, In stock or Out of stock, you need to check it programmatically using StockRegistryInterface.

Use the Magento\CatalogInventory\Api\StockRegistryInterface class to fetch product stock status.

Let’s take a simple example by passing the Product id, to check the Product stock status, Continue reading “How to check product is in stock status programmatically Magento 2?”

How to Get Attribute Id by attribute code Magento 2?

Fetch Attribute Id from the attribute code in Magento 2 by using AttributeRepository Interface Class.

You need the Entity type value and the attribute code.

Just instantiate the Magento\Eav\Api\AttributeRepositoryInterface class to retrieve the id value. Continue reading “How to Get Attribute Id by attribute code Magento 2?”

How to update product attribute using Patch Data Magento 2?

Update Product attribute with Patch Data file in Magento 2.3 and above version.

Sometimes we have created a product attribute and want to change some of the fields after generating product attributes, you can do it easily with Magento.

Let’s take an example, We want to change product attributes of Open source sample data, Sale attribute title with Discount. Need to create a Setup folder in your module with the Patch\Data folder inside it and create any PHP file to update title. Continue reading “How to update product attribute using Patch Data Magento 2?”