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.
Programmatically change Magento’s core config data

<?php// find ‘path’ in table ‘core_config_data’ e.g. ‘design/head/demonotice’$my_change_config = new Mage_Core_Model_Config();// turns notice on$my_change_config->saveConfig(‘design/head/demonotice’, “1”, ‘default’, 0);// turns notice off$my_change_config->saveConfig(‘design/head/demonotice’,…

1 12 13 14 40