Magento – how to set default value for fields in admin panel

admin

I have created tabs, sections, groups and fields successfully in magento admin panel.
Now I want to create default values for my fields of type text or text area.
I have given proper values in my module config.xml file but I could not succeed. please help me on this.

config.xml file details
system.xml file details

Best Answer

The default values must be added in the config.xml file.
Add this inside the <config> tag:

<default>
   <testtabsection><!-- tag of the system.xml section -->
        <grouptestgroup><!-- tag of the system.xml group -->
            <fieldtestfield>Your value here</fieldtestfield><!-- tag of the system.xml field -->
        </grouptestgroup>
   </testtabsection>
</default>

Clear the cache and check your system configuration section.

Related Topic