Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
398 views
in Q2A Core by

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.
 
 
 
Q2A version: 1.5.2

1 Answer

0 votes
by
I suggest working through the code to ensure the field is also shown when a category is being edited as well.
...