Generally magento community edition don’t have facility to create category attribute by default so If you want to create attribute of a category either you can simply use any custom module or any custom script which will create attribute for category.So that’s what I have created a new script which will describe How to create attribute by custom script that can be of custom attribute or product attribute or category attribute.You just define the module name where you want create custom attribute in your magento store.Create a custom script using sql setup and custom script for category or product or customer in magento

How to create attribute by custom script
attribute by custom script

Lets come to the code section where I have written everything for creating attribute in magento. In below code I have created a new attribute named as ‘my_custom_attribute’ and that is assigned or created in catalog/product module .You can also refer to general syntax of How to create attribute by custom script in below section.This script can also put inside sql setup file of magento which will be at the location app/code/[CodePool]/[NameSpace]/[ModuleName]/sql/setupfilename

Lets se what that is the general syntax:

You can also follow the below example like:

In above example I have created the same attribute called ‘my_custom_attribute’ for category section in gereral tab of having int type with text input type.In the same way you can define many other of having ‘select’,’multiselect’,’datetiem’ etc.
Now for belwo code I have used the catalog_product section where category will be created in product section.Simply if you want to create for category just use ‘catalog_category’ instead of ‘catalog_product’.And also the atrribute is type multiselect and having my custom option like ‘optionone’,’optiontwo’,’optionthree’ etc.These are the static one but dynamic option you can declare the source of any model php file where you can define toOptionArray() functionwhich will retun option array.

So if you got benefit from this article that how to create attribute by custom script so please don’t be selfish share this or like in one of your social account.

How to create attribute by custom script
Tagged on:                             

Leave a Reply

Your email address will not be published.