Classic Blog List

Style & publish your blog list anywhere on your site using a bunch of Scalia's blog options. Choose from 8 awesome bloglist styles, including grids & carousel. Select categories to be displayed, number of posts, pagination style and much more. Check Scalia's blog features in the sidebar.
Programatically (manually) creating simple Magento product

<?php //$product = Mage::getModel(‘catalog/product’); $product = new Mage_Catalog_Model_Product(); // Build the product $product->setSku(‘some-sku-value-here’); $product->setAttributeSetId(‘some_int_value_of_some_attribute’); $product->setTypeId(‘simple’); $product->setName(‘Some cool product name’); $product->setCategoryIds(array(7));…

1 39 40