• This is another feature request.

    Can you add in a way to change the word “Employee” to an administrator-set title? We are using this to schedule shifts for a volunteer organization. Many of them wouldn’t like to be called employee.

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Morgan Kay

    (@gwendydd)

    There is actually a filter on “employee” everywhere that it appears in public. So if you want to change “employee” to “volunteer” on the front-end of the site, you can do this:

    add_filter( 'wpaesm_employee_label', 'my_custom_employee_label' );
    function my_custom_employee_label( $label ) {
        $label = 'Volunteer';
        return $label;
    }

    Note: I am currently working on version 2.0. When that is released, the name of this filter will change.

    • This reply was modified 9 years, 9 months ago by Morgan Kay.
Viewing 1 replies (of 1 total)

The topic ‘Employee Title’ is closed to new replies.