User registration & user profile – Profile Builder - Version 2.5.4

Version Description

  • CSS changes for the Twenty Seventeen Theme
  • Fixed a notice caused sometimes by general settings options not setting properly
  • Small changes to readme file
Download this release

Release Info

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

Code changes from version 2.5.3 to 2.5.4

assets/css/style-front-end.css CHANGED
@@ -256,6 +256,7 @@ input#send_credentials_via_email{
256
  min-width:0;
257
  padding-left:5px;
258
  width:auto;
 
259
  }
260
 
261
  .wppb-checkbox-terms-and-conditions input,
@@ -488,12 +489,12 @@ ul.wppb-profile li h3:first-child{
488
  border-top:1px solid #d2d2d2;
489
  }
490
 
491
- .wppb-faceted-list{
492
  list-style: none;
493
  margin:0 0 20px;
494
  }
495
 
496
- .wppb-faceted-list:after{
497
  visibility: hidden;
498
  display: block;
499
  font-size: 0;
@@ -502,13 +503,13 @@ ul.wppb-profile li h3:first-child{
502
  height: 0;
503
  }
504
 
505
- .wppb-faceted-list > li{
506
  float:left;
507
  margin-right: 15px;
508
  max-width: 300px;
509
  }
510
 
511
- .wppb-faceted-list > li:first-child{
512
  float:none;
513
  clear:both;
514
  }
@@ -518,11 +519,11 @@ ul.wppb-profile li h3:first-child{
518
  margin-bottom: 5px;
519
  }
520
 
521
- .wppb-faceted-list label > *{
522
  vertical-align: middle;
523
  }
524
 
525
- .wppb-faceted-list input[type="checkbox"]{
526
  margin-right: 5px;
527
  }
528
 
@@ -545,7 +546,7 @@ ul.wppb-profile li h3:first-child{
545
  z-index: 1000;
546
  }
547
 
548
- .wppb-faceted-list .hide-this{
549
  display:none;
550
  }
551
 
256
  min-width:0;
257
  padding-left:5px;
258
  width:auto;
259
+ display:inline-block;
260
  }
261
 
262
  .wppb-checkbox-terms-and-conditions input,
489
  border-top:1px solid #d2d2d2;
490
  }
491
 
492
+ ul.wppb-faceted-list{
493
  list-style: none;
494
  margin:0 0 20px;
495
  }
496
 
497
+ ul.wppb-faceted-list:after{
498
  visibility: hidden;
499
  display: block;
500
  font-size: 0;
503
  height: 0;
504
  }
505
 
506
+ ul.wppb-faceted-list > li{
507
  float:left;
508
  margin-right: 15px;
509
  max-width: 300px;
510
  }
511
 
512
+ ul.wppb-faceted-list > li:first-child{
513
  float:none;
514
  clear:both;
515
  }
519
  margin-bottom: 5px;
520
  }
521
 
522
+ ul.wppb-faceted-list label > *{
523
  vertical-align: middle;
524
  }
525
 
526
+ ul.wppb-faceted-list input[type="checkbox"]{
527
  margin-right: 5px;
528
  }
529
 
546
  z-index: 1000;
547
  }
548
 
549
+ ul.wppb-faceted-list .hide-this{
550
  display:none;
551
  }
552
 
features/upgrades/upgrades.php CHANGED
@@ -63,9 +63,11 @@ function wppb_update_patch(){
63
 
64
  if ( version_compare( $wppb_version, '2.2.5', '<=' ) ) {
65
  if( is_multisite() ){
66
- $wppb_general_settings = get_option( 'wppb_general_settings' );
67
- $wppb_general_settings['emailConfirmation'] = 'yes';
68
- update_option( 'wppb_general_settings', $wppb_general_settings );
 
 
69
  }
70
 
71
  }
63
 
64
  if ( version_compare( $wppb_version, '2.2.5', '<=' ) ) {
65
  if( is_multisite() ){
66
+ $wppb_general_settings = get_option( 'wppb_general_settings', 'not_set' );
67
+ if ( $wppb_general_settings != 'not_set' ) {
68
+ $wppb_general_settings['emailConfirmation'] = 'yes';
69
+ update_option('wppb_general_settings', $wppb_general_settings);
70
+ }
71
  }
72
 
73
  }
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 chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.5.3
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.5.3' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
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 chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.5.4
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.5.4' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === User registration & user profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
- Tags: user registration, 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
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.7
8
- Stable tag: 2.5.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -46,7 +46,7 @@ Users with administrator rights have access to the following features:
46
  * customizable user login widget
47
  * add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin.
48
  * chose which user roles view the admin bar in the front-end of the website (Admin Bar Settings page).
49
- * select which profile fields users can see/modify.
50
  * extended functionality available via [Add-ons](http://www.cozmoslabs.com/profile-builder-add-ons/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
51
 
52
  **PROFILE BUILDER PRO**
@@ -150,6 +150,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
 
 
 
 
 
153
  = 2.5.3 =
154
  * Major improvement to loading performance of the Manage Fields admin interface
155
  * Added actions before and after submit form button:wppb_form_before_submit_button and wppb_form_after_submit_button
1
  === User registration & user profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
  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
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.7
8
+ Stable tag: 2.5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
46
  * customizable user login widget
47
  * add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin.
48
  * chose which user roles view the admin bar in the front-end of the website (Admin Bar Settings page).
49
+ * select which profile fields users can use in frontend.
50
  * extended functionality available via [Add-ons](http://www.cozmoslabs.com/profile-builder-add-ons/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
51
 
52
  **PROFILE BUILDER PRO**
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
153
+ = 2.5.4 =
154
+ * CSS changes for the Twenty Seventeen Theme
155
+ * Fixed a notice caused sometimes by general settings options not setting properly
156
+ * Small changes to readme file
157
+
158
  = 2.5.3 =
159
  * Major improvement to loading performance of the Manage Fields admin interface
160
  * Added actions before and after submit form button:wppb_form_before_submit_button and wppb_form_after_submit_button