B-219 Sec-55 Noida, India
+918010221733

Magento : Add custom image attribute to category

Magento : Add custom image attribute to category

Just copy paste the below code in header.phtml and run yourmagento once, your attribute will be created and you can see in backend under manage category. After you are done remove this code again.

 ——————————————————————————————
$setup = new Mage_Eav_Model_Entity_Setup(‘core_setup’);

$setup->addAttribute(‘catalog_category’, ‘sliderimage’, array(
    ‘group’         => ‘General’,
    ‘input’         => ‘image’,
    ‘type’          => ‘varchar’,
    ‘label’         => ‘Slider Image’,
    ‘backend’       => ‘catalog/category_attribute_backend_image’,
    ‘visible’       => 1,
    ‘required’        => 0,
    ‘user_defined’ => 1,
    ‘global’        => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
));

(Visited 95 times, 1 visits today)

Leave a reply

You must be logged in to post a comment.