This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 2
Re order forms in Admin Area
Started 14 years ago by mandarin | 3 posts |
-
In Admin the forms are listed in the order created.
Is it possible for the forms to be listed alphabetically based on the form names?
Thanks.
Posted 14 years ago # -
This possible with small customization. To do this, you need to edit "manage_form.php" and go to line 26 for this code :
$query = "select form_id from <code>ap_forms</code> order by form_id asc";
then change it to
$query = "select form_id from <code>ap_forms</code> order by form_name asc";
after that, go to line 105 for this code :
$query = "select form_id,form_name,form_active,form_email from <code>ap_forms</code> order by form_id asc $limit";
and change it to
$query = "select form_id,form_name,form_active,form_email from <code>ap_forms</code> order by form_name asc $limit";
that would do it
MachForm Support
Posted 14 years ago # -
Absolutely Perfect.
Thank You.
Posted 14 years ago #
Reply
You must log in to post.