How to fix Facebook Opengraph 2.0 extension in Magento on Jul 9, 2012 in Magento facebook opengraph If you installed the Facebook Opengraph 2.0 in Magento Community 1.5 version you’ll definitely experiencing a frustrated issue. You can also read some user reviews in the extension page. Most of them are having problems about installation and most...
How to check browser platform in javascript on Jul 2, 2012 in javascript browser Are you planning to set a different html page to your users depending on the platform that they were using? If yes, then, this snippet might be useful for you in order to implement that functionality. All you need to do is to know use and inv...
Magento: Fatal Error: getSku() on Configurable Products on Jun 25, 2012 in Magento This is relatively small issue but it will definitely annoy your customers. This issue is related to customer’s account when your customer added an items in their cart and drop the session without finishing the transaction. When they drop...
Magento: Fixing Fatal Error: Call to a member function loadByUsername on a non Object on Jun 12, 2012 in Magento It is a common error in magento when we are trying to call a method which does not exist on the object that we call. Even though the obvious reason is that the function does not exist, there are some instances that we need to look for some other reas...
TIPS: Internet Explorer CSS Hacks on Jun 6, 2012 in web design CSS Even though it is not a best practice to use hacks in targeting IE6, IE7 and IE8 stylesheets, it is still important to know when and how you can use them. And besides, it is fun to fix IE issues, right? :)) Hacking IE8 and Below Using "\9", you can...
jQuery: How to iterate array and object on jQuery on Jun 3, 2012jQuery.each() function is a big help if you we’re into array or object iteration. It has the same concept with PHP foreach syntax when it comes to object and array iteration so if you’ll find it easy when you already learn PHP foreach.
Magento: Check if user is on Secure Page or Not on May 30, 2012 in Magento php Not all Magento developers know fully on how to use magento methods in building their site. They sometimes even think that some functionality have no equivalent magento methods. One of the common methods that I have seen been neglected by developers...
PHP: Example of OOP - Database Class on May 27, 2012 in php One of the common nightmares for developers is to maintain repeated code in a single program which happen to be declared over and over again. Basically, what I'm trying to say is that it is frustrating to mae simple changes on the code yet finding yo...
How to use Final Keyword on PHP OOP on May 25, 2012 in php As the word "final" signify itself, adding this prefix to your method or class signify that it can't be overridden. For methods that have "final" prefix will thrown a fatal error when you're trying to create the same object in your class. Furthermore...
Turning off Magento Extension on May 23, 2012 in Magento Each Magento extension has its own xml configuration located on the app/etc/modules folder when you installed in magento. This xml includes active and codePool element which tells us that either the extension is active or not and codePool denote the...