Daily Archives: December 15, 2019
So you’ve found a library on packagist and it’s great However as with any code, it has some issues the you discover and you fix them. You do some pull requests like a good little open source community member but they languish, green and unmerged for days, weeks In the […]
I am trying to add a feature to my PHP website that is similar to multiple-room chat app: (must use PHP for server-side and must use WebSockets) Admin will be able to create/delete rooms Users will be able to subscribe to rooms Users will be able to post to rooms […]
I have inherited a broken Magento 1 store that I am trying to bring back to life. The migration to Magento 2.3.3 went without a hitch, and now I’m trying to clean up the huge number of products (2,000,000+) in the store, a mix of Simple Products and Grouped Products. […]
Configurable products are not changing the pictures while selecting attributes like size or color. I really don’t know how to fix this problem. It is two days now and I still facing the same issue. I noticed while I click on the attribute, it’s giving me this error on the […]
I want to load the current local time in a custom phtml file, that I want to load in my CMS Page. I currently have the following code but that loads the GMC time, not my local time. How can I change this? CODE: < ?php $objectManager = MagentoFrameworkAppObjectManager::getInstance(); $objDate […]
I’m trying to download my products from Magento 1.9.3.6 and I keep getting an error: Fatal error: Unsupported operand types in public_html/app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php on line 947 I’ve tried to research this and did find a website that mention to replace the line 947 with the following: $dataRow += $stockItemRows[$productId]; if (isset($stockItemRows[$productId])) […]