Articles in the Magento Customization Category
I have a few custom blocks I’ve written / copied and tweaked from various posts on Magento’s forums. I noticed they are pretty universal in how they grab, filter and return a product collection to be used in various template files (.phtml files). The blocks below should all work from List.phtml (app\design\frontend\default\default\template\catalog\product\list.phtml).
These are Block files and are most appropriately used within the Catalog/Product area. (See my post on creating a custom module – these files won’t be overwriting any other class but can …
Many developers are familiar with the MVC (Model View Controller) design pattern that is seemingly ubiquitous throughout web frameworks. Looking through the code in Magento, however, we see many other components besides the M’s the V’s and the C’s.
Each module (a “module” meaning the separate directories within the “app/code/core/Mage” directory that comprise of Magento’s different functional areas) contains the usual Controller and Model. You’ll see that within each module, there are no Views (more on this later). You’ll also see extra tidbits, such …
Magento is the open-source Ecommerce platform promising a magnificent revolution in the industry. Magento was designed with the concept that each Ecommerce implementation has to be unique since no two businesses are alike. Magento’s modular architecture puts the control back in the hands of the online merchant and places no constraints on business processes and flow.
We provide Magento customization and creative services to shop owners worldwide. Services include Magento theme design, Magento customization, Magento theme development based on existing designs, Magento Website development, Magento installation, Integration of new payment methods, …
I’ve recently accepted a side project for a friend building an ecommerce solution that required some customizations. I’ve read about Magento, attending a presentation about it at ZendCon 2008 by a couple guys from Varien, and viewed a few of the sample sites. With my years of experience with oscommerce ecommerce, I was eager to dive right in and customize one of these! Unfortunately, it turns out Magento sucks to work on. Yes, I said Magento sucks.
Features
Magento has nearly all the ecommerce features you could imagine. It has pretty much …
Magento Commerce is certainly an “SEO-friendly” shopping cart – but just like much of its brethren, there is still room for improvement. Granted, it has come along to fix some of the issues we pointed out in our first Magento review, and a few in the community have put together some extensions to further that along. Yoast has even gone so far as to creating a beginner’s SEO guide for Magento which does a great job of covering some of the basic setup points for those setting up a Magento …
I’m back with another tutorial about Magento. I’m not the best man you can find about Magento. But I’m trying to learn something from forums. The best you learn something is when you can explain it to someone else. So this is for that!
As I had mentioned in my previous post Magento is an open source ecommerce application made with PHP and Zend Framework. Company behind it is very dedicated to this project and works a lot about it. But the missing part is the tutorials I guess. There isn’t …
Here is the way to get product information for a specific store view in Magento.
<?php $product = Mage::getModel(’catalog/product’)->setStoreId(Mage::app()->getStore()->getId())->load($productId); ?>
And get product description:
<?php echo $this->helper(’catalog/output’)->productAttribute($product, nl2br($product->getDescription()), ‘description’); ?>

Recent Comments