• Resolved gcskye

    (@gcskye)


    I don’t see anything relating to the job price. For many states in the US, this is a requirement for publishing jobs. How can I add a price to the listing?

    It would be great to show on the job page and the listing page with all of the jobs.

Viewing 1 replies (of 1 total)
  • Plugin Contributor Nithin John

    (@nithi22)

    Hi,

    Thanks for reaching out to us.

    We are incredibly sorry for the delay in response.

    Please note that you can add pricing to your job listing in multiple ways.

    1. You can always add the pricing for the job on the detail page in the editor itself. You may use the block editor or the site builder of your choice to display it the way you want to.
    2. You can use job specifications if you need to add this content to the listing page and detail page. You can add a new specification (Job Pricing) from WP Job Openings Settings > Job Specifications. Please note that job specifications are WordPress taxonomies, just like post tags. It may have some limitations based on your requirement.
    3. One other way to add pricing details or custom details to the job listing page is to enable a job excerpt on the listing page. Currently, there is no setting to enable it. But you can use the below PHP code snippet to add it. You can use any code snippets management plugin ( https://ww.wp.xz.cn/plugins/code-snippets/ ) to add this code or add the code in your theme’s (if a child theme is available) functions.php file.

    PHP Code snippet

    function awsm_jobs_listing_left_col_content() {
       echo get_the_excerpt();
    }
    add_action( 'after_awsm_jobs_listing_left_col_content', 'awsm_jobs_listing_left_col_content' );

    External Resources

    https://wp-content.co/add-custom-code-to-your-wordpress-websites/

    Regards
    Nithin John

Viewing 1 replies (of 1 total)

The topic ‘Add price’ is closed to new replies.