ENHR-JP GitLab releases
A testing tool for updating/creating wordpress plugins
by Sedna Software / Vesta Group BV. · gitlab.com/boeckholtz/enhr-jp
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://gitlab.com/boeckholtz/enhr-jp/-/archive/master/enhr-jp-master.zipDescription
- Modular Administration Manager
- CPT Manager
- ACF Integration
- Logging System
- Multilingual support
Install instructions
- After downloading extract folder in wp-content/plugins
- Check if form fields need adjustments for
enhr-apply.jsto work as expected.
In the folder example you'll find a example of a fully functional apply form.
Example:
<input class="required" type="text" name="apply[firstName]" data-error="Vul je voornaam in">
The attribute data-error is used when a field is empty or didn't validate. Example:
apply[emailAddres], apply[phoneNumber] and apply[file] have an extra validation.
let $email = $('#apply-form [type=email]'+requiredFieldName);
let $phone = $('#apply-form [type=number]'+requiredFieldName);
let $file = $('#apply-form [type=file]'+requiredFieldName);
let $gender = $('#apply-form [type=radio]'+requiredFieldName);
let $button = $('#apply-form [type="submit"]');
If you want to use the full power of validation and not the default browser validation of your browser use class="required" and set the requiredFieldName in enhr-jp.js to .required.
reCAPTCHA
If you have set the recaptcha value in the ENHR settings you only need to add the following code in your form:
echo \enhr\Helpers\Recaptcha::loadCaptcha();
Note that when you have not set a captcha key in ENHR settings, it obviously won't show a recaptcha.
Releases
Newest 25 of 50 recorded releases.
These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.
GitLab does not publish per-asset download counts, so this plugin ranks on stars and activity only.