Skip to content

Commit

Permalink
Fix:overview page job listing count issue fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
SilpaAWSM committed Dec 19, 2024
1 parent 8e76cde commit 965726d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inc/class-awsm-job-openings-core.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function register_post_types() {
'capabilities' => array(
'create_posts' => 'do_not_allow',
),
'supports' => ['title'],
'supports' => false,
'rewrite' => false,
)
);
Expand Down
2 changes: 1 addition & 1 deletion wp-job-openings.php
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public function admin_filters() {
add_filter( 'months_dropdown_results', array( $this, 'awsm_job_month_dropdown' ), 10, 2 );
add_filter( 'views_edit-awsm_job_openings', array( $this, 'modified_post_status_filter' ) );
add_filter( 'views_edit-awsm_job_application', array( $this, 'awsm_job_application_action_links' ) );
//add_filter( 'bulk_actions-edit-awsm_job_application', array( $this, 'awsm_job_application_bulk_actions' ) );
add_filter( 'bulk_actions-edit-awsm_job_application', array( $this, 'awsm_job_application_bulk_actions' ) );
add_filter( 'post_row_actions', array( $this, 'awsm_posts_row_actions' ), 10, 2 );
}
}
Expand Down

0 comments on commit 965726d

Please sign in to comment.