Skip to content

magento man

In my magento 2.4.6, The product sorting for categories is not working. Like price high to low and low to high and sort filter is not working

In my magento 2.4.6, The product sorting for categories is not working. Like price high to low and low to high and sort filter is not working . Rest all other filters are working. When selecting sorting – low to… Read More »In my magento 2.4.6, The product sorting for categories is not working. Like price high to low and low to high and sort filter is not working

Magento 2 Plugin After Execute Controller

I have an existing controller that returns a JSON. public function execute() { $customer = $this->_customerModel->getById(175); $resultJson = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_JSON); $resultJson->setData( [ ‘status’ => ‘ok’, ‘message’ => ‘Success.’, ‘data’ => $customer->__toArray() ] ); return $resultJson; } I have created afterExecute() plugin,… Read More »Magento 2 Plugin After Execute Controller