Magento Folks?,
What’s going on? Welcome back to the How-To series where today the illustration will be on How can I add the available quantity per product in the catalog on Magento 2.3? Lastly, I have illustrated to you Magento 2: How To Import Products with Custom Product Types with appropriate codes.
Let’s Begin??
Contents
Introduction:
Follow the given below steps for implementing how you can add the available quantity per product in the catalog on Magento 2.3?
Step 1: Create a block file in the custom extension
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
app/code/[VENDOR]/[EXTENSION]/Block/Product.php <?php namespace [VENDOR]\[EXTENSION]\Block; class Product extends \Magento\Framework\View\Element\Template { protected $_scopeConfig; protected $_stockInterface; protected $_productRepository; public function __construct( \Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\CatalogInventory\Api\StockStateInterface $stockInterface, \Magento\Catalog\Model\ProductRepository $productRepository ){ $this->_scopeConfig = $scopeConfig; $this->_stockInterface = $stockInterface; $this->_productRepository = $productRepository; parent::__construct($context); } public function getStockMessage($productId){ $_product = $this->getProductById($productId); $_stock = $this->getStock($_product); if($_stock <= $this->getThresoldQty()){ return __('Only %1 left', $_stock); } return ''; } public function getProductById($id) { return $this->_productRepository->getById($id); } public function getStock($_product) { return $this->_stockInterface->getStockQty($_product->getId(), $_product->getStore()->getWebsiteId()); } public function getThresoldQty(){ return $this->_scopeConfig->getValue('cataloginventory/options/stock_threshold_qty', \Magento\Store\Model\ScopeInterface::SCOPE_STORE); } } |
Step 2: Now add below code in list.phtml
1 2 3 4 5 |
$blockObj = $block->getLayout()->createBlock('[VENDOR]\[EXTENSION]\Block\Product'); Step 3: Now, you can call in the block inside your foreach loop. <?php echo $blockObj->getStockMessage($_product->getId()); ?> |
Final Words:
I hope the above-given solution for adding the available quantity per product in the catalog in Magento 2.3 is helpful for you and if you find any difficulties then you can contact MageComp Support for more guidance. And if you like the article then let us know in the comment section below. Don’t forget to share it with your Magento friends and make them more knowledgeable.
Happy Coding?