Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'wpcrm_system_client_area_task_information', 'wpcrm_system_client_area_task_information' );
- function wpcrm_system_client_area_task_information( $data ) {
- return array_merge(
- $data,
- array(
- 'start-date' => true,
- 'due-date' => true,
- 'priority' => false,
- 'progress' => true,
- )
- );
- }
- add_filter( 'wpcrm_system_client_area_project_information', 'wpcrm_system_client_area_project_information' );
- function wpcrm_system_client_area_project_information( $data ) {
- return array_merge(
- $fields,
- array(
- 'closedate' => true,
- 'progress' => true,
- 'status' => true,
- 'value' => true,
- )
- );
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement