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


  1. mandarin
    Member

    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 #
  2. redityo

    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 #
  3. mandarin
    Member

    Absolutely Perfect.

    Thank You.

    Posted 14 years ago #

RSS feed for this topic

Reply