here is example css script to make glowing border (like neon effect) on text field and textearea field input[type=”text”]:focus, textarea:focus { box-shadow: 0px 0px 9px…
Continue reading CSS: Glowing Text Field & Textarea on Focus State
1 CommentIndonesian Magento Developer
here is example css script to make glowing border (like neon effect) on text field and textearea field input[type=”text”]:focus, textarea:focus { box-shadow: 0px 0px 9px…
Continue reading CSS: Glowing Text Field & Textarea on Focus State
1 Commenti will show you, example code, how to create map directions use Googgle Map, here is the code: <style> #map_canvas { width: 100%; height:…
Continue reading Javascript: Create Map Directions by Google Maps
Leave a Commentlet say..you want to modify/add style inside DIV tag contains “Jhon” string below example the code <div>John Resig</div> <div>George Martin</div> <div>Malcom John Sinclair</div> <div>J. Ohn</div>…
Continue reading jQuery: Search String Inside DIV tag
Leave a Commenti’m facing this problem almost a week solution: update the table, with sql: update catalog_product_entity set type_id=”simple” where type_id”simple”
Continue reading Magento: Cannot Add to Compare for Some Product
Leave a Commentbelow script is to get all store views data: Mage::app()->getWebsites(); Mage::app()->getStores(); foreach (Mage::app()->getWebsites() as $website) { foreach ($website->getGroups() as $group) { $stores = $group->getStores(); foreach…
Continue reading Magento: Get All Store Views Data
Leave a Commentthis how i did it, load customer array data by email $email = “[email protected]”; $customer = Mage::getModel(“customer/customer”); $customer->setWebsiteId(Mage::app()->getWebsite()->getId()); $customer->loadByEmail($email); /*—print the object array–*/ print_r($customer->getData());
Continue reading Magento: Load Customer Data by Email
Leave a Comment