Set All Your Magento Categories to is_anchor

Posted by & filed under Magento.

I recently was tasked to set every category inside our Magento installation have its is_anchor attribute set to true. We have over 600 categories so it would be a huge task to do this by hand so I put together a quick script that did this in less than a minute. <? error_reporting(E_ALL); ini_set(‘display_errors’, ’1′);… Read more »

Use jQuery To Make Multiple Columns The Same Size

Posted by & filed under Uncategorized.

Probably just about every web developer has run into this problem. You have a two or three column layout on your website and your center column has a ton of great content that spans a very long way down the page and your side bars are short. They are different colors and they just look… Read more »

Advanced jQuery Ajax Options

Posted by & filed under Uncategorized.

Yesterday we discussed how you can use jQuery as an Ajax library for your web application. The discussion only covered the most basic options to make the Ajax work. There are many more options available to modify how the Ajax behaves. Today we will discuss those options.