User registration & user profile – Profile Builder - Version 3.3.6

Version Description

  • Fixed a js error that was preventing a form to submit
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 3.3.6
Comparing to
See all releases

Code changes from version 3.3.5 to 3.3.6

assets/js/script-front-end.js CHANGED
@@ -5,7 +5,7 @@ jQuery(document).ready(function(){
5
  e.preventDefault();
6
  //disable the submit button
7
  jQuery('.form-submit #register').attr('disabled', true);
8
- this.trigger('submit');
9
  });
10
  }
11
 
5
  e.preventDefault();
6
  //disable the submit button
7
  jQuery('.form-submit #register').attr('disabled', true);
8
+ this.submit();
9
  });
10
  }
11
 
front-end/default-fields/recaptcha/recaptcha.php CHANGED
@@ -159,7 +159,7 @@ function wppb_recaptcha_script_footer(){
159
 
160
  if( submitForm ){
161
  var form = elem.closest("form");
162
- form.trigger("submit");
163
  } else {
164
  jQuery(document).trigger( "wppb_invisible_recaptcha_success" )
165
 
@@ -171,7 +171,7 @@ function wppb_recaptcha_script_footer(){
171
  jQuery(document).ready(function(){
172
  if( window.wppbRecaptchaInitError === true ){
173
  jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).on("click", function(e){
174
- jQuery(this).closest("form").trigger("submit");
175
  });
176
  }
177
  });
159
 
160
  if( submitForm ){
161
  var form = elem.closest("form");
162
+ form.submit();
163
  } else {
164
  jQuery(document).trigger( "wppb_invisible_recaptcha_success" )
165
 
171
  jQuery(document).ready(function(){
172
  if( window.wppbRecaptchaInitError === true ){
173
  jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).on("click", function(e){
174
+ jQuery(this).closest("form").submit();
175
  });
176
  }
177
  });
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 3.3.5
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -65,7 +65,7 @@ function wppb_free_plugin_init() {
65
  *
66
  *
67
  */
68
- define('PROFILE_BUILDER_VERSION', '3.3.5' );
69
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
70
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
71
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 3.3.6
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
65
  *
66
  *
67
  */
68
+ define('PROFILE_BUILDER_VERSION', '3.3.6' );
69
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
70
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
71
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.6.0
7
- Stable tag: 3.3.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -167,6 +167,9 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
167
  12. Role Editor
168
 
169
  == Changelog ==
 
 
 
170
  = 3.3.5 =
171
  * jQuery updates regarding WordPress jQuery versions changes
172
 
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.6.0
7
+ Stable tag: 3.3.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
167
  12. Role Editor
168
 
169
  == Changelog ==
170
+ = 3.3.6 =
171
+ * Fixed a js error that was preventing a form to submit
172
+
173
  = 3.3.5 =
174
  * jQuery updates regarding WordPress jQuery versions changes
175