Title: Modifying &#8216;resume&#8217; field
Last modified: August 2, 2017

---

# Modifying ‘resume’ field

 *  Resolved [juliecache](https://wordpress.org/support/users/juliecache/)
 * (@juliecache)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/modifying-resume-field/)
 * 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](https://wordpress.org/support/users/presstigers/)
 * (@presstigers)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/modifying-resume-field/#post-9374406)
 * Hello [@juliecache](https://wordpress.org/support/users/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.

 * ![](https://ps.w.org/simple-job-board/assets/icon-256x256.png?rev=1829069)
 * [Simple Job Board](https://wordpress.org/plugins/simple-job-board/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/simple-job-board/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/simple-job-board/)
 * [Active Topics](https://wordpress.org/support/plugin/simple-job-board/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/simple-job-board/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/simple-job-board/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [PressTigers](https://wordpress.org/support/users/presstigers/)
 * Last activity: [8 years, 9 months ago](https://wordpress.org/support/topic/modifying-resume-field/#post-9374406)
 * Status: resolved