This forum is no longer open and is for reading/searching only.

Please use our new MachForm Community Forum instead.

MachForm Community Forums » MachForm 4

Renaming Paid and Unpaid


  1. agdm619
    Member

    Is there a way to rename Paid and Unpaid to Open and Closed. The way we're using the form it makes for since for it to say Open and Closed.

    Thanks for everything!
    Aaron

    Posted 9 years ago #
  2. yuniar

    You can edit the view_entry.php file, search around line 507:

    <option <?php if($payment_status == 'paid'){ echo 'selected="selected"'; } ?> value="paid">Paid</option>
    <option <?php if($payment_status == 'unpaid'){ echo 'selected="selected"'; } ?> value="unpaid">Unpaid</option>

    change it to become:

    <option <?php if($payment_status == 'paid'){ echo 'selected="selected"'; } ?> value="paid">Open</option>
    <option <?php if($payment_status == 'unpaid'){ echo 'selected="selected"'; } ?> value="unpaid">Closed</option>

    MachForm Founder

    Posted 9 years ago #

RSS feed for this topic

Reply