How to enable Adobe Stock Integration with Magento 2?

Adobe stock integration functionality with Magento 2 provides a searchable API in the Magento Admin panel to experience the Image Preview and use adobe stock images inside PageBuilder or WYSIWYG content to the site for the Create Product, CMS Page and Static Block.

Magento Admin users can access Adobe Stock from Media Gallery, find specific images, save the watermarked images, create a licensed image, preview and try it with available content. Continue reading “How to enable Adobe Stock Integration with Magento 2?”

How to retrieve Masked id from the cart id Magento 2?

Retrieve Masked id (guest cart hash) from the cart id in Magento 2, You required the cart quote id.

masked_id is stored in the quote_id_mask table, it’s the randomly generated string for the guest customer quote in Magento 2.

You can retrieve masked id string by using an interface,
Magento\Quote\Model\QuoteIdToMaskedQuoteIdInterface Continue reading “How to retrieve Masked id from the cart id Magento 2?”

How to Get Quote Id by Masked id Magento 2.

Retrieve Quote id from the masked hash string of the guest quote in Magento 2 to fetch quote object.

masked_id is stored in the quote_id_mask table and it’s the cart hash for the guest customer. When you add a guest item to the cart, one entry generated in the quote_id_mask table to prevent quote id and masked id of the quote. Continue reading “How to Get Quote Id by Masked id Magento 2.”