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
Started 10 years ago by agdm619 | 2 posts |
-
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!
AaronPosted 10 years ago # -
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 10 years ago #
Reply
You must log in to post.