Categories

Add A New Products Section to a Magento Store Homepage

Was looking for a way to add a New Products section to the homepage of a Magento store I’m working on a found a great write up on Richard Castera’s blog. All you really have to do is add this code to the homepage code in your CMS section:

{{block type=”catalog/product_new” name=”home.catalog.product.new” alias=”product_homepage”template=”catalog/product/new.phtml”}}

Check out the full [...]

Could It Really Be That Easy?

In a project we are working on we needed a way to extract the number portion of a weight from a string. So we could receive any of the following:

21
21 lbs
21.3
21.3 lbs

We started looking into some regular expressions to do the job, but then ran across a page saying that you can just cast it [...]