Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the question-answer domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/u845912282/domains/pickplugins.com/public_html/wp-includes/functions.php on line 6121
Making amendments to Job Board Manager

Making amendments to Job Board Manager

0
Making amendments to Job Board Manager 1
PickPlugins
Mar 16, 2016 07:01 PM 1 Answers General
Member Since Aug 2015
Subscribed Subscribe Not subscribe
Flag(0)

Hi,
I'd like to make amendments to the Job Board Manager (as my screen grab).
Is this possible?

  1. Remove the Job Title in single job post.
  2. Have a back to job list button.
  3. Be able to amend the job description section titles.
  4. Change the salary info icon to £ (UK)
  5. Add a link to application form.

Hope you can help.
Thanks,
Richard
Making amendments to Job Board Manager 2

0 Subscribers
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
Making amendments to Job Board Manager 3
PickPlugins
Mar 16, 2016
Flag(0)

Welcome to our forum

#1. Title on single job page can be removed by action hook as flowing

remove_action('job_bm_action_single_job_main','job_bm_template_single_job_title');

#2. you can add you own custom HTML (Back Button) by action hook as following

add_action( 'job_bm_action_single_job_main', 'job_bm_template_single_job_meta_after', 10 );

function job_bm_template_single_job_meta_after() {
    
    $job_bm_archive_page_id = get_option('job_bm_archive_page_id');
    $job_bm_archive_page_url = get_permalink($job_bm_archive_page_id);    

    echo 'Back to List';
    

    }

#3. Salary currency you can set under settings page
Job Post > Salary currency ?
http://i.imgur.com/e4EWoAW.png
This currency will override by job posting meta input.
 
#4. Application input button can be extend by filter hook by using following add-ons
https://pickplugins.com/item/job-board-manager-application-manager/
See the example here
http://i.imgur.com/i2rTRAy.png
 
#5, New meta input fields for jobs can be added by filter hook , for section you want to add.

function job_bm_filters_job_meta_options($options){
    
    $options['Notification'] = array(
    
                                'job_bm_responsibilities_new'=>array(
                                    'css_class'=>'responsibilities_new',
                                    'title'=>'Job Responsibilities New',
                                    'option_details'=>'Responsibilities',                        
                                    'input_type'=>'wp_editor', // text, radio, checkbox, select,
                                    'input_values'=>'', // could be array
                                    ),
    
                                    
                                );

                                
    //$options = array_merge($options,$options_new);            
                                
    return $options;
        
    }

add_filter('job_bm_filters_job_meta_options','job_bm_filters_job_meta_options');

 
Hope that all help you.

Let me know for more help.
 
 
 

Sign in to Reply
Replying as Submit


Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home/u845912282/domains/pickplugins.com/public_html/wp-content/plugins/post-grid/includes/functions-builder.php on line 10