My Web Development Coding Standards The coding standards I follow when developing websites or web applications.
Stop WordPress From Loading jQuery In The Header How to stop Wordpress from loading jQuery in the <head> element.
Modman Clone Repository From Branch Modman is a nice little module manager for Magento. If you work on any Magento projects then I’d suggest you get familiar with it, as it’ll save you loads of time when creating/installing your own Magento extensions. The Modman has a Wiki for it’s documentation. When installing a Magento extension under git through modman, you can […]
How to Minify Javascript Code With RequireJS Require Js is a very cool tool, used to asynchronously load javascript files and modules, ensuring all code is modular. It also comes with a nifty Optimizer tool, that combines related scripts together and minifies them using UglifyJs. When your code is ready for deployment RequireJs’ Optimizer Tool will minify your javascript code/application ensuring speedy […]
Debugging PHP Unit PHP Unit is a very handy tool used to run PHP unit tests, useful for flagging up broken PHP scripts. We use PHP unit because we tend to break things… and naturally we are also probably going to break our test scripts too. How to debug PHP Unit By adding two lines of code to […]
How to Modify the Range of the Price Filter in Magento Magento’s layered navigation is an extremely powerful navigation tool. Customers can use it to narrow down a category collection and filter only results they are interested in. If layered navigation has been enabled users can filter by price. By default this price is calculated by Magento automatically by equalising the product ranges. If you want to […]