Skip to content

Instantly share code, notes, and snippets.

View imfaisalkh's full-sized avatar
🎯
Focusing

Faisal Khurshid imfaisalkh

🎯
Focusing
  • Pakistan
View GitHub Profile
@imfaisalkh
imfaisalkh / closing-date.php
Created May 24, 2019 09:59
Display "Closing Date" in Jobs Master Listing View
<?php
#-----------------------------------------------------------------#
# Display "Closing Date" in Jobs Master Listing View
#-----------------------------------------------------------------#
global $job_manager_application_deadline;
add_filter( 'job_listing_meta_end', array( $job_manager_application_deadline, 'display_the_deadline' ), 20);
@imfaisalkh
imfaisalkh / gist:6bf4ef3b1da5fe35331b0b3a8a1dca1e
Last active May 29, 2019 23:03
Capstone - Modify "Career Level" Options
#-------------------------------------------------------------------------------#
# Capstone - Modify "Career Level" Options
#-------------------------------------------------------------------------------#
// Remove Existing "Career Level" Options
function remove_default_career_level_output() {
remove_filters_with_method_name( 'submit_job_form_fields', 'frontend_job_career_level_field' );
}
add_action( 'init', 'remove_default_career_level_output' );
@imfaisalkh
imfaisalkh / gist:5a908f74e9cadcdfb4ff8d6b14ff441e
Last active June 13, 2019 13:47
Capstone - Modify "Salary" Options
#-------------------------------------------------------------------------------#
# Capstone - Modify "Salary" Options
#-------------------------------------------------------------------------------#
// Remove Existing "Salary" Options
function remove_default_salary_output() {
remove_filters_with_method_name( 'submit_job_form_fields', 'frontend_job_salary_field' );
}
add_action( 'init', 'remove_default_salary_output' );