Changeset 2961462
- Timestamp:
- 09/01/2023 06:00:28 AM (3 years ago)
- Location:
- prosolution-wp-client/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
prosolwpclient.php (modified) (2 diffs)
-
public/js/prosolwpclientpublic.js (modified) (3 diffs)
-
public/templates/singlefieldset/prosolwpclientjobapplicationpersonalinfo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
prosolution-wp-client/trunk/README.txt
r2959677 r2961462 66 66 67 67 == Changelog == 68 69 = 1.8.12 = 70 * FIXED Bug: 71 - "ExpectedSalary" in application form always mandatory even without being mandatory in application form setting 68 72 69 73 = 1.8.11 = -
prosolution-wp-client/trunk/prosolwpclient.php
r2959677 r2961462 17 17 * Plugin URI: https://prosolution.com/produkte-und-services/workexpert.html 18 18 * Description: WordPress client for ProSolution 19 * Version: 1.8.1 119 * Version: 1.8.12 20 20 * Author: ProSolution 21 21 * Author URI: https://www.prosolution.com … … 39 39 40 40 defined('PROSOLWPCLIENT_PLUGIN_NAME') or define('PROSOLWPCLIENT_PLUGIN_NAME', 'prosolwpclient'); 41 defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.8.1 1');41 defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.8.12'); 42 42 defined('PROSOLWPCLIENT_BASE_NAME') or define('PROSOLWPCLIENT_BASE_NAME', plugin_basename(__FILE__)); 43 43 defined('PROSOLWPCLIENT_ROOT_PATH') or define('PROSOLWPCLIENT_ROOT_PATH', plugin_dir_path(__FILE__)); -
prosolution-wp-client/trunk/public/js/prosolwpclientpublic.js
r2959659 r2961462 2613 2613 var pswp_birthcountry_req = $('#birthcountry').prop('required'); 2614 2614 var pswp_availabilitydate_req = $('#availabilitydate').prop('required'); 2615 var pswp_expectedsalary_req = $('#expectedsalary').prop('required'); 2615 2616 2616 2617 … … 2668 2669 restrictpast: true, 2669 2670 }, 2670 expectedsalary: { digits: true } 2671 expectedsalary: { 2672 required: pswp_expectedsalary_req, 2673 digits: true, 2674 } 2671 2675 }, 2672 2676 messages: { … … 2684 2688 birthdate: { required: prosolObj.birthdate_empty, }, 2685 2689 'profession[]': { required: prosolObj.profession_empty, }, 2686 expectedsalary: { digits: prosolObj.expectedsalary_digit }2690 expectedsalary: { digits: prosolObj.expectedsalary_digit, }, 2687 2691 }, 2688 2692 submitHandler: function(form) { -
prosolution-wp-client/trunk/public/templates/singlefieldset/prosolwpclientjobapplicationpersonalinfo.php
r2959659 r2961462 319 319 320 320 <div class="col-sm-4 error-msg-show"> 321 <input type="text" name="expectedsalary" class="form-control" 322 id="expectedsalary" required data-rule-required="true"data-rule-maxlength="15"321 <input type="text" name="expectedsalary" class="form-control" <?php echo $field_opt['expectedsalary'][3] ?> 322 id="expectedsalary" data-rule-maxlength="15" 323 323 value=""> 324 324 </div>
Note: See TracChangeset
for help on using the changeset viewer.