[Plugin: Events Manager] Not Going & Maybe
-
I’d like to add two statuses to bookings.
Not Going and Maybe
Should I just keep going with the count:
$this->status_array = array(
0 => __(‘Pending’,’dbem’),
1 => __(‘Approved’,’dbem’),
2 => __(‘Rejected’,’dbem’),
3 => __(‘Cancelled’,’dbem’),
4 => __(‘Awaiting Online Payment’,’dbem’),
5 => __(‘Awaiting Payment’,’dbem’),
6 => __(‘Not Going’,’dbem’),
7 => __(‘Maybe’),’dbem’)
);or start at 10 or higher
$this->status_array = array(
0 => __(‘Pending’,’dbem’),
1 => __(‘Approved’,’dbem’),
2 => __(‘Rejected’,’dbem’),
3 => __(‘Cancelled’,’dbem’),
4 => __(‘Awaiting Online Payment’,’dbem’),
5 => __(‘Awaiting Payment’,’dbem’),
10 => __(‘Not Going’,’dbem’),
11 => __(‘Maybe’),’dbem’)
);
- The topic ‘[Plugin: Events Manager] Not Going & Maybe’ is closed to new replies.