Author Archives: Jason

Get Non-Cached Product Image In Magento

Magento CE 1.7.0.2 Sometimes you want to retrieve the non-cached product image in Magento, such as when you need to provide a Pinterest image? Here’s how we get it: 12345<?php $_baseUrl = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA); ?> <img src="<?php echo $_baseUrl."catalog/product".$_product->getImage() ?>" alt="image" /> That’s it, a non-cached, full-size image for your mage product.

Shortcut To Open GitX In The Current Project

Mac OS X, Git, GitX Here’s a very quick tip for newbies. Instead of navigating to the project via finder each time you need to view the git logs, let’s create a shortcut so you can do it from the terminal window. Open terminal and change into your home directory: 1$ cd ~ Now let’s […]