Hello,
Is it possible to display the newest form first and the oldest displayed last in the Admin area?
Thanks
Thomas
Started 4 years ago by forestis | 2 posts |
Hello,
Is it possible to display the newest form first and the oldest displayed last in the Admin area?
Thanks
Thomas
Try this,
Edit your manage_form.php file, search around line 66 you'll find this code:
$query = "select form_id,form_name,form_active,form_email from ap_forms order by form_id asc $limit";
change that line into:
$query = "select form_id,form_name,form_active,form_email from ap_forms order by form_id desc $limit";
that should change the order of your forms.
MachForm Founder
You must log in to post.