On the category creation page it ask to fill the category name, category slug i.e. url and description. If I need to enter one more field how to achieve this.
I tried the following -
1. Added the field in the database
2. aded one more filed on the lines of
'slug' => array(
'id' => 'slug_display',
'tags' => 'NAME="slug"',
'label' => qa_lang_html('admin/category_slug'),
'value' => qa_html(isset($inslug) ? $inslug : @$editcategory['tags']),
'error' => qa_html(@$errors['slug']),
),
just after this and changed accordingly the code
3. On creation of category database change is fine and new field is getting populated.
4. But while editing category the new field is not visible.