Title: JAVOB's Replies | WordPress.org

---

# JAVOB

  [  ](https://wordpress.org/support/users/javob/)

 *   [Profile](https://wordpress.org/support/users/javob/)
 *   [Topics Started](https://wordpress.org/support/users/javob/topics/)
 *   [Replies Created](https://wordpress.org/support/users/javob/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/javob/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/javob/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/javob/engagements/)
 *   [Favorites](https://wordpress.org/support/users/javob/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/javob/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/javob/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HireZoot – Job Listings, Career Page & Recruitment Tool] Conflict with Polylang plugin](https://wordpress.org/support/topic/conflict-with-polylang-plugin/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/conflict-with-polylang-plugin/#post-11344757)
 * Thanks so much.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HireZoot – Job Listings, Career Page & Recruitment Tool] Request for mail form](https://wordpress.org/support/topic/request-for-mail-form/)
 *  [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/request-for-mail-form/#post-11344642)
 * Hi,
 * Goto Plugins > Editor and select “WP Job Openings”
 * select the file:
 * `wp-job-openings/inc/class-awsm-job-openings-form.php`
 * search for “$default_form_fields” then edit this:
 *     ```
       'awsm_file' => array(
                       'label'        => __( 'Upload CV/Resume', 'wp-job-openings' ),
                       'field_type'   => array(
                           'tag'    => 'input',
                           'type'   => 'file',
                           'accept' => $allowed_file_types
                       ),
                       'id'           => 'awsm-application-file',
                       'class'        => array( 'awsm-resume-file-control', 'awsm-job-form-control', 'awsm-form-file-control' ),
                       'content'      => $allowed_file_content
                   )
       ```
   
 * to this, to hide Upload CV:
 *     ```
       'awsm_file' => array(
                       'label'        => __( 'Upload CV/Resume', 'wp-job-openings' ),
                       'field_type'   => array(
                           'tag'    => 'input',
                           'type'   => 'file',
                           'accept' => $allowed_file_types
                       ),
                       'id'           => 'awsm-application-file',
                       'class'        => array( 'awsm-resume-file-control', 'awsm-job-form-control', 'awsm-form-file-control' ),
                       'content'      => $allowed_file_content,
       		'show_field'   => false
                   )
       ```
   
 * to hide phone change:
 *     ```
       'awsm_applicant_phone' => array(
                       'label'        => __( 'Phone', 'wp-job-openings' ),
                       'field_type'   => array(
                           'tag'  => 'input',
                           'type' => 'tel'
                       ),
                       'id'           => 'awsm-applicant-phone',
                       'class'        => array( 'awsm-job-form-control' ),
                       'error'        => array(
                           'error_msg'  => __( 'Please enter a valid phone number.', 'wp-job-openings' )
                       )
                   ),
       ```
   
 * to this:
 *     ```
       'awsm_applicant_phone' => array(
                       'label'        => __( 'Phone', 'wp-job-openings' ),
                       'field_type'   => array(
                           'tag'  => 'input',
                           'type' => 'tel'
                       ),
                       'id'           => 'awsm-applicant-phone',
                       'class'        => array( 'awsm-job-form-control' ),
                       'error'        => array(
                           'error_msg'  => __( 'Please enter a valid phone number.', 'wp-job-openings' )
                       ),
       		'show_field'   => false
                   ),
       ```
   
 * The solution is to add the last line in each input you need to hide.
 * `'show_field' => false`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HireZoot – Job Listings, Career Page & Recruitment Tool] Change form title](https://wordpress.org/support/topic/change-form-title-2/)
 *  [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/change-form-title-2/#post-11344599)
 * Hi,
 * Goto Plugins > Editor and select “WP Job Openings”
 * select the file:
 * `wp-job-openings/inc/templates/single-job/form.php`
 * search:
 * `<h2><?php echo esc_html( apply_filters( 'awsm_application_form_title', __( '
   Apply for this position', 'wp-job-openings' ) ) ); ?></h2>`
 * Change the text into
 * `'Apply for this position'`
 * regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HireZoot – Job Listings, Career Page & Recruitment Tool] Make required fields on Apply for Job form optional](https://wordpress.org/support/topic/make-required-fields-on-apply-for-job-form-optional/)
 *  [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/make-required-fields-on-apply-for-job-form-optional/#post-11344548)
 * Hi,
 * Goto Plugins > Editor and select “WP Job Openings”
 * select the file:
    `wp-job-openings/inc/class-awsm-job-openings-form.php`
 * search for “$default_form_fields”
 *     ```
                   'awsm_applicant_letter' => array(
                       'label'        => __( 'Cover Letter', 'wp-job-openings' ),
                       'field_type'   => array(
                           'tag'  => 'textarea'
                       ),
                       'id'           => 'awsm-cover-letter',
                       'class'        => array( 'awsm-job-form-control' )
                   ), 
       ```
   
 * change to this:
 *     ```
                   'awsm_applicant_letter' => array(
                       'label'        => __( 'Message', 'wp-job-openings' ),
                       'field_type'   => array(
                           'tag'  => 'textarea'
                       ),
                       'id'           => 'awsm-cover-letter',
                       'class'        => array( 'awsm-job-form-control' ),
       		'required'     => false
                   ), 
       ```
   
 * In label change “Cover Letter” to “Message” and in the last line you can add 
   the required optional parameter to false, do not forget to add a comma in the
   end of the “class” line.
 * For phone and upload, you only need add the last change, comma in the end of 
   the “class” line and add:
 * `'required' => false`
 * Regards,
    -  This reply was modified 7 years, 3 months ago by [JAVOB](https://wordpress.org/support/users/javob/).
    -  This reply was modified 7 years, 3 months ago by [JAVOB](https://wordpress.org/support/users/javob/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Send PDF for Contact Form 7] Version 0.6.9 break my web site](https://wordpress.org/support/topic/version-0-69-break-my-web-site/)
 *  [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/version-0-69-break-my-web-site/#post-10989777)
 * the update file was solved
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Send PDF for Contact Form 7] Version 0.6.9 break my web site](https://wordpress.org/support/topic/version-0-69-break-my-web-site/)
 *  [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/version-0-69-break-my-web-site/#post-10989497)
 * Hello, the same thing happened to me. I have entered to review the zip of the
   update and do not have files in the folders that have been uploaded, all PHP,
   CSS, JS, IMG are missing.
    I hope you upload the correction soon. Regards,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Infinite Scroll don’t work on scroll](https://wordpress.org/support/topic/infinite-scroll-dont-work-on-scroll/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/infinite-scroll-dont-work-on-scroll/#post-8217193)
 * Hello,
 * It works perfectly.
 * thank you very much.
 * PD: Add-ons they are somewhat expensive but free plugin works great.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[qTranslate X] qTranslate-X and Fusion Page Builder](https://wordpress.org/support/topic/qtranslate-x-and-fusion-page-builder/)
 *  [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/qtranslate-x-and-fusion-page-builder/#post-6079550)
 * Hello, the problem persists after the update, but I trust that you will find 
   the solution to this problem. Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Contact Forms] File Uploads](https://wordpress.org/support/topic/file-uploads-11/)
 *  [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/file-uploads-11/#post-5707488)
 * Hi I am also interested in this role, I need to create a CV upload form, this
   plugin is very good and simple but I need that functionality now, by the time
   I return to CF7.
 * thanks for the great plugin.
 * Do you have any approximate date of release of this new functionality?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Export DB to a new domain] Problem with URL](https://wordpress.org/support/topic/problem-with-url-7/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/problem-with-url-7/#post-4967441)
 * I’m glad you’ve solved.
 * Greetings.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tabs Shortcode] Effects transitions](https://wordpress.org/support/topic/effects-transitions/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/effects-transitions/#post-3196043)
 * Hi I have made the following changes to this file
 * tabs-shortcode/tab.js
 *     ```
       jQuery(document).ready(function($) {
   
       	$.each(tabs_shortcode, function(id, attr) {
       		$("#" + id).tabs( attr );
       		//Added
       		$("#" + id ).tabs({
       			activate: function( event, ui ) {
       				ui.newPanel.hide().fadeIn(800);
       			}
       		});
       	});
       	if ( location.hash ) {
       		$('a[href="'+location.hash+'"]').trigger('click');
       	}
       });
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flexible Map] Change the icon](https://wordpress.org/support/topic/change-the-icon/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/change-the-icon/#post-3519663)
 * Thank you so much for implement this feature.
 * Javier
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flexible Map] Tabs Hiden map broken](https://wordpress.org/support/topic/tabs-hiden-map-broken/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/tabs-hiden-map-broken/#post-3245964)
 * Hello, thank you again, but pass it to detract KML easy administration, I hope
   you can implement it in a straightforward manner to further improve this super
   plugin.
 * Thanks for everything and I give resolved the issue by.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flexible Map] Tabs Hiden map broken](https://wordpress.org/support/topic/tabs-hiden-map-broken/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/tabs-hiden-map-broken/#post-3245959)
 * Hey, it worked … I almost cried with emotion :'(
    thank you very much for the
   help, for having me patience and especially your time is the most valuable. Thank
   you for creating a good plugin like this.
 * PS: Is there any way to put an image in the description?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flexible Map] Tabs Hiden map broken](https://wordpress.org/support/topic/tabs-hiden-map-broken/)
 *  Thread Starter [JAVOB](https://wordpress.org/support/users/javob/)
 * (@javob)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/tabs-hiden-map-broken/#post-3245956)
 * Hi, glad that you found the problem but as I told you I’m not using jQueryUI 
   to generate the effect tab, so this does not work, please give a look to this
   link you shared code.
 * [http://pastebin.com/2YP2iaKv](http://pastebin.com/2YP2iaKv)

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/javob/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/javob/replies/page/2/?output_format=md)