• Resolved juliecache

    (@juliecache)


    We would like to use program for people to nominate projects for awards. How would we change the word ‘resume’ to ‘image’ and allow the user to submit up to 6 different images?

Viewing 1 replies (of 1 total)
  • Plugin Author PressTigers

    (@presstigers)

    Hello @juliecache,

    For changing the resume label you can use following PHP code snippet by placing it in your activated theme’s functions.php file.

    add_filter('sjb_resume_label', 'sjb_update_resume_label');
    function sjb_update_resume_label(){
        $title = esc_html__('image', 'simple-job-board');
        return $title;
    }

    Regarding multiple images uploading feature, you have to understand the code structure of the Job Board and customize it as per your requirements.

    Thanks for reaching us out. Let us know if you need our further assistance.

    Regards,
    PressTigers

Viewing 1 replies (of 1 total)

The topic ‘Modifying ‘resume’ field’ is closed to new replies.