JAVOB
Forum Replies Created
-
Thanks so much.
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
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
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,
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Version 0.6.9 break my web sitethe update file was solved
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Version 0.6.9 break my web siteHello, 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,Hello,
It works perfectly.
thank you very much.
PD: Add-ons they are somewhat expensive but free plugin works great.
Forum: Plugins
In reply to: [qTranslate X] qTranslate-X and Fusion Page BuilderHello, the problem persists after the update, but I trust that you will find the solution to this problem. Thank you.
Forum: Plugins
In reply to: [Custom Contact Forms] File UploadsHi 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
In reply to: [Export DB to a new domain] Problem with URLI’m glad you’ve solved.
Greetings.
Forum: Plugins
In reply to: [Tabs Shortcode] Effects transitionsHi 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
In reply to: [Flexible Map] Change the iconThank you so much for implement this feature.
Javier
Forum: Plugins
In reply to: [Flexible Map] Tabs Hiden map brokenHello, 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
In reply to: [Flexible Map] Tabs Hiden map brokenHey, 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
In reply to: [Flexible Map] Tabs Hiden map brokenHi, 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.