About Locate a store Finding your stores is easier than ever with the user-friendly interface of Store Locator extension. The module supports street view & shows directions from the user’s current location to the store’s location instantly on a Google map. Customers have the ability to search for the nearest…
Bulk Insert in MySql using LOAD DATA INFILE
Are you looking for the stuff to insert bulk data into MySQL table? Go for “LOAD DATA INFILE” MySQL concept. This is the best way I am witness of. You might need to use this concept in 2 ways. 1) Bulk Insert Functionality in PHP Application 2) Import bulk records…
Why PHP Framework over CorePHP?
Don’t need to reinvent the wheel again and again. This article is about explaining why you should insist your vendor or client to go with some inbuilt framework rather to go with Core PHP. I will explain it via one real time example: Science Calculator Now assume, you have one…
Magento :Difference between Override and Rewrite
As Magento says don’t change the core files, so there are two ways you can change core files and for Block/Helper/Model classes. Definations:- Override : When we use design fallback mechanism then we are doing override Rewrite : When we rewrite magento Core classes in our class then we are…
Overwrite module phtml file and re-write in own theme Magento 2
Some day ago I am facing one issue in magento 2 with overwrite module’s PHTML file in my custom theme, So here is the solution , Steps, Copy the Phtml file from module (For module location On template path hint) go to MAGENTO_ROOT/app/design/frontend/VENDOR/YOUR_THEME/MODULE_NAME/templates/filename.phtml Here MODULE_NAME is your module name from…