joshua1234511

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: HRM Front End for Employee #2558
    joshua1234511
    Participant

    you can use shortcodes and add dashboard wizards to front end
    But you need to include the js and css enque them.

    in reply to: Half day leave #2557
    joshua1234511
    Participant

    Hi
    Any possibility of it being released soon.

    I have checked the code and it checks the balance days sets as approved status 1 so it goes as a day

    in reply to: Leave request #2556
    joshua1234511
    Participant

    Login and check if there is an option above the calender on overview take leave

    if not
    you can do some custom code modifications

    For the employee role add in functions-capabilities.php

    case erp_hr_get_employee_role():

    add this line ‘erp_leave_create_request’ => true,

    Deactivate and reactivate the plugin But before that
    Change this lines
    if ( $roles_hr ) {
    foreach ($roles_hr as $key => $role) {
    add_role( $key, $role[‘name’], $role[‘capabilities’] );
    }
    }
    to

    if ( $roles_hr ) {
    foreach ($roles_hr as $key => $role) {
    remove_role($key);
    add_role( $key, $role[‘name’], $role[‘capabilities’] );
    }
    }

    as add role will not modify the role
    in class-install.php file

Viewing 3 posts - 1 through 3 (of 3 total)

Contact Us

Reach out to us for any inquiry

You must enter full name
You must enter email
You must enter message

We received your query

We will reply to you very soon :)