Daily Archives: May 12, 2020
I have a G.T(grant total) filter problem with my Magento 1.9 store. When i select the “From” and “To” grant total and i press search i’m redirected to the dashboard index page. Then if i click on “Orders” again i’m greeted by an exception code. When i open that exception […]
im using this code to get all product collections and Qty but is returning null $products = Mage::getModel('catalog/product') ->getCollection() ->addAttributeToSelect('*'); if(!empty($products)) { foreach($products as $product) { $stock = Mage::getModel('cataloginventory/stock_item')->loadByProduct($products); $qty = $stock->getQty(); var_dump($qty); } } this code return “NULL”
I migrated all my settings, products etc from M1 to M2 recently. Our old site has while developing our new M2 site gained new customers and products. So what would happen if I choose to migrate my data from M1 to M2 again? As in this command: php bin/magento migrate:data […]
Using Magento 2.3.4 I have a Custom Layout Update set for one of my CMS Pages, in this layout update I reference custom.css which has a corresponding custom.less. If I don’t use global variables I can change the styling without issues, but I lack access to project-wide variables. I plan […]