I am wondering how to customize the 'add question' page in the admin section (edit entry):
- I would like to make the field 'keywords' mandatory
- Also, I would like to get rid of the 'End date of the question' section
Does anyone know how to do this? Where do I find the responsible pages? Thanks in advance
Customizing 'add question' page in admin section
Moderator: Thorsten
Customizing 'add question' page in admin section
Last edited by rogierl on Fri Sep 19, 2014 8:28 am, edited 2 times in total.
Re: Customing 'add question' page in admin section
Hi,
that's in
admin/record.add.php
admin/record.edit.php
admin/record.save.php
bye
Thorsten
that's in
admin/record.add.php
admin/record.edit.php
admin/record.save.php
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Re: Customing 'add question' page in admin section
Thank you very much!
Re: Customizing 'add question' page in admin section
Hi Thorsten,
You said that I could edit the 3 php-pages to get rid of the comment, sticky and start-/end date sections, but I'm having problems doing this. I removed all the parts in the php referring to these sections but they are still showing in the add question page (in the admin).
So I don't necessarily want to remove the functions, I just want to hide them in the front end (again, in the admin section).
How do I do this? Can you help me out? Thanx in advance!
You said that I could edit the 3 php-pages to get rid of the comment, sticky and start-/end date sections, but I'm having problems doing this. I removed all the parts in the php referring to these sections but they are still showing in the add question page (in the admin).
So I don't necessarily want to remove the functions, I just want to hide them in the front end (again, in the admin section).
How do I do this? Can you help me out? Thanx in advance!
Re: Customizing 'add question' page in admin section
Hi,
then please just hide them in admin/record.edit.php: https://github.com/thorsten/phpMyFAQ/bl ... p#L363-392
bye
Thorsten
then please just hide them in admin/record.edit.php: https://github.com/thorsten/phpMyFAQ/bl ... p#L363-392
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Re: Customizing 'add question' page in admin section
It worked! Thank you very much for your answer!