So you’re also having this “Invalid Form Key. Please refresh the page.” error and not able to login to your newly installed Magento Backend interface? No worries in this short article we will learn how to fix it. There are number of reasons behind this and different solution works for different people so lets closely […]
Tutorials
How to fix “Magento is already installed” error
If you are new to magento or magento installation you might encounter this weird bug during the New installation of Magento 1.x family. This error can be happened due to variety of reasons; lets not discuss them; the most common reason if you encounter a write permission error on session variables and you remove all […]
Simple jQuery FAQs
In this post we will learn how to make simple and clean frequently asked questions section using jQuery. Please add this jQuery anywhere before closing tag on your web page. jQuery: (function($) { var allFaqs = $(‘.piefaqs > dd’).hide(); $(‘.piefaqs > dt > a’).click(function() { $(this).parent().next().toggle(); return false; }); })(jQuery); HTML: Nice Question 1 Sed […]
Unicode Characters Issues
I recently encountered a weird issue when my webservice stopped working after moving to a new Server, Everything was configured properly and I scratch my head around but no helps, google the issue but no success, finally my debugging ended up figure out the issue it was Default Files Encoding that was not set to […]
Font Awesome IE9 & IE10 Problem
Recently, I implemented fontAwesome on one of my project, everything looked great except there were some problem with Internet Explorer 9 and 10, sometimes the icon displayed and most of the time they don’t. I looked around and figure out that something wrong with the Font files. There are 5 files into fonts folder. The […]
Converting genesis Child theme to HTML5
As you know, Genesis 2.0 has been released that have the support of HTML5. Not every and previously released themes are HTML5 ready so we will learn how to convert them from xHTML markup to HTML5. There are some Hooks, and Classes that needs to be changed. Hooks genesis_post_content will change to genesis_entry_content genesis_after_post_content will […]