Version Description
- Fix: compatibility issue with paid version MSF
- Fix: issue with some fields not appearing on the back-end users page
Download this release
Release Info
| Developer | raster02 |
| Plugin | |
| Version | 3.8.2 |
| Comparing to | |
| See all releases | |
Code changes from version 3.8.1 to 3.8.2
- features/functions.php +4 -2
- index.php +2 -2
- readme.txt +5 -1
- translation/profile-builder.pot +26 -26
features/functions.php
CHANGED
|
@@ -178,11 +178,13 @@ if ( is_admin() ){
|
|
| 178 |
add_action( 'edit_user_profile_update', 'wppb_save_fields_in_admin', 10 );
|
| 179 |
}
|
| 180 |
|
| 181 |
-
|
| 182 |
-
// now they are loaded all the time so the simple upload functionality works correctly as well, since 3.8.1
|
| 183 |
if (file_exists(WPPB_PLUGIN_DIR . '/front-end/default-fields/default-fields.php'))
|
| 184 |
require_once(WPPB_PLUGIN_DIR . '/front-end/default-fields/default-fields.php');
|
| 185 |
|
|
|
|
|
|
|
|
|
|
| 186 |
|
| 187 |
}else if ( !is_admin() ){
|
| 188 |
// include the stylesheet
|
| 178 |
add_action( 'edit_user_profile_update', 'wppb_save_fields_in_admin', 10 );
|
| 179 |
}
|
| 180 |
|
| 181 |
+
// Since 3.8.1 fields are loaded in the back-end all the time: for conditional logic, simple uploads, display fields in admin functionalities
|
|
|
|
| 182 |
if (file_exists(WPPB_PLUGIN_DIR . '/front-end/default-fields/default-fields.php'))
|
| 183 |
require_once(WPPB_PLUGIN_DIR . '/front-end/default-fields/default-fields.php');
|
| 184 |
|
| 185 |
+
if ( defined( 'WPPB_PAID_PLUGIN_DIR' ) && file_exists( WPPB_PAID_PLUGIN_DIR . '/front-end/extra-fields/extra-fields.php'))
|
| 186 |
+
require_once(WPPB_PAID_PLUGIN_DIR . '/front-end/extra-fields/extra-fields.php');
|
| 187 |
+
|
| 188 |
|
| 189 |
}else if ( !is_admin() ){
|
| 190 |
// include the stylesheet
|
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.8.
|
| 7 |
* Author: Cozmoslabs
|
| 8 |
* Author URI: https://www.cozmoslabs.com/
|
| 9 |
* Text Domain: profile-builder
|
|
@@ -389,7 +389,7 @@ add_action( 'plugins_loaded', 'wppb_plugin_init' );
|
|
| 389 |
*
|
| 390 |
*
|
| 391 |
*/
|
| 392 |
-
define('PROFILE_BUILDER_VERSION', '3.8.
|
| 393 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 394 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 395 |
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.8.2
|
| 7 |
* Author: Cozmoslabs
|
| 8 |
* Author URI: https://www.cozmoslabs.com/
|
| 9 |
* Text Domain: profile-builder
|
| 389 |
*
|
| 390 |
*
|
| 391 |
*/
|
| 392 |
+
define('PROFILE_BUILDER_VERSION', '3.8.2' );
|
| 393 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 394 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 395 |
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, registration, profile, user registration form, 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
|
| 5 |
Requires at least: 3.1
|
| 6 |
Tested up to: 6.0
|
| 7 |
-
Stable tag: 3.8.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -177,6 +177,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
| 177 |
15. Edit or Add New User Role
|
| 178 |
|
| 179 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
| 180 |
= 3.8.1 =
|
| 181 |
* Feature: added new field types: Heading, Input, Textarea, Select, Select2, Checkbox, Radio
|
| 182 |
* Feature: added Avatar field which lets your users manage their avatar on your website from the Profile Builder forms
|
| 4 |
Tags: user registration, user profile, registration, profile, user registration form, 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
|
| 5 |
Requires at least: 3.1
|
| 6 |
Tested up to: 6.0
|
| 7 |
+
Stable tag: 3.8.2
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 177 |
15. Edit or Add New User Role
|
| 178 |
|
| 179 |
== Changelog ==
|
| 180 |
+
= 3.8.2 =
|
| 181 |
+
* Fix: compatibility issue with paid version MSF
|
| 182 |
+
* Fix: issue with some fields not appearing on the back-end users page
|
| 183 |
+
|
| 184 |
= 3.8.1 =
|
| 185 |
* Feature: added new field types: Heading, Input, Textarea, Select, Select2, Checkbox, Radio
|
| 186 |
* Feature: added Avatar field which lets your users manage their avatar on your website from the Profile Builder forms
|
translation/profile-builder.pot
CHANGED
|
@@ -313,7 +313,7 @@ msgstr ""
|
|
| 313 |
msgid "Hide"
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
-
#: admin/admin-bar.php:92, admin/general-settings.php:390, admin/private-website.php:162, features/functions.php:
|
| 317 |
msgid "Save Changes"
|
| 318 |
msgstr ""
|
| 319 |
|
|
@@ -341,15 +341,15 @@ msgstr ""
|
|
| 341 |
msgid "Very weak"
|
| 342 |
msgstr ""
|
| 343 |
|
| 344 |
-
#: admin/admin-functions.php:139, admin/general-settings.php:341, features/functions.php:
|
| 345 |
msgid "Weak"
|
| 346 |
msgstr ""
|
| 347 |
|
| 348 |
-
#: admin/admin-functions.php:139, admin/general-settings.php:342, features/functions.php:
|
| 349 |
msgid "Medium"
|
| 350 |
msgstr ""
|
| 351 |
|
| 352 |
-
#: admin/admin-functions.php:139, admin/general-settings.php:343, features/functions.php:
|
| 353 |
msgid "Strong"
|
| 354 |
msgstr ""
|
| 355 |
|
|
@@ -3045,11 +3045,11 @@ msgstr ""
|
|
| 3045 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
| 3046 |
msgstr ""
|
| 3047 |
|
| 3048 |
-
#: admin/manage-fields.php:1409, features/functions.php:
|
| 3049 |
msgid "Edit"
|
| 3050 |
msgstr ""
|
| 3051 |
|
| 3052 |
-
#: admin/manage-fields.php:1409, features/functions.php:
|
| 3053 |
msgid "Delete"
|
| 3054 |
msgstr ""
|
| 3055 |
|
|
@@ -3341,83 +3341,83 @@ msgstr ""
|
|
| 3341 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
| 3342 |
msgstr ""
|
| 3343 |
|
| 3344 |
-
#: features/functions.php:
|
| 3345 |
msgid "GDPR Checkbox"
|
| 3346 |
msgstr ""
|
| 3347 |
|
| 3348 |
-
#: features/functions.php:
|
| 3349 |
msgid "I allow the website to collect and store the data I submit through this form."
|
| 3350 |
msgstr ""
|
| 3351 |
|
| 3352 |
-
#: features/functions.php:
|
| 3353 |
msgid "Honeypot"
|
| 3354 |
msgstr ""
|
| 3355 |
|
| 3356 |
-
#: features/functions.php:
|
| 3357 |
msgid "Strength indicator"
|
| 3358 |
msgstr ""
|
| 3359 |
|
| 3360 |
-
#: features/functions.php:
|
| 3361 |
msgid "Very Weak"
|
| 3362 |
msgstr ""
|
| 3363 |
|
| 3364 |
-
#: features/functions.php:
|
| 3365 |
msgid "Minimum length of %d characters."
|
| 3366 |
msgstr ""
|
| 3367 |
|
| 3368 |
-
#: features/functions.php:
|
| 3369 |
msgid "The password must have a minimum strength of %s"
|
| 3370 |
msgstr ""
|
| 3371 |
|
| 3372 |
-
#: features/functions.php:
|
| 3373 |
msgid "This field is required"
|
| 3374 |
msgstr ""
|
| 3375 |
|
| 3376 |
-
#: features/functions.php:
|
| 3377 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 3378 |
msgstr ""
|
| 3379 |
|
| 3380 |
-
#: features/functions.php:
|
| 3381 |
msgid "Incorrect phone number"
|
| 3382 |
msgstr ""
|
| 3383 |
|
| 3384 |
-
#: features/functions.php:
|
| 3385 |
msgid "Cancel"
|
| 3386 |
msgstr ""
|
| 3387 |
|
| 3388 |
-
#: features/functions.php:
|
| 3389 |
msgid "Content"
|
| 3390 |
msgstr ""
|
| 3391 |
|
| 3392 |
-
#: features/functions.php:
|
| 3393 |
msgid "<br><br>Also, you will be able to visit your site at "
|
| 3394 |
msgstr ""
|
| 3395 |
|
| 3396 |
-
#: features/functions.php:
|
| 3397 |
msgid "<br><br>You can visit your site at "
|
| 3398 |
msgstr ""
|
| 3399 |
|
| 3400 |
-
#: features/functions.php:
|
| 3401 |
msgid "here"
|
| 3402 |
msgstr ""
|
| 3403 |
|
| 3404 |
-
#: features/functions.php:
|
| 3405 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
| 3406 |
msgstr ""
|
| 3407 |
|
| 3408 |
-
#: features/functions.php:
|
| 3409 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
| 3410 |
msgstr ""
|
| 3411 |
|
| 3412 |
-
#: features/functions.php:
|
| 3413 |
msgid "You are not currently logged in."
|
| 3414 |
msgstr ""
|
| 3415 |
|
| 3416 |
-
#: features/functions.php:
|
| 3417 |
msgid "Profile Builder"
|
| 3418 |
msgstr ""
|
| 3419 |
|
| 3420 |
-
#: features/functions.php:
|
| 3421 |
msgid "User Meta"
|
| 3422 |
msgstr ""
|
| 3423 |
|
| 313 |
msgid "Hide"
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
+
#: admin/admin-bar.php:92, admin/general-settings.php:390, admin/private-website.php:162, features/functions.php:1057, add-ons-advanced/woocommerce/woosync-page.php:149, features/content-restriction/content-restriction.php:174, features/two-factor-authentication/class-two-factor-authentication.php:156, assets/lib/class-mustache-templates/class-mustache-templates.php:421, assets/lib/wck-api/wordpress-creation-kit.php:410, admin/advanced-settings/includes/views/view-admin.php:112, admin/advanced-settings/includes/views/view-fields.php:309, admin/advanced-settings/includes/views/view-forms.php:407, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
|
| 317 |
msgid "Save Changes"
|
| 318 |
msgstr ""
|
| 319 |
|
| 341 |
msgid "Very weak"
|
| 342 |
msgstr ""
|
| 343 |
|
| 344 |
+
#: admin/admin-functions.php:139, admin/general-settings.php:341, features/functions.php:790, features/functions.php:814
|
| 345 |
msgid "Weak"
|
| 346 |
msgstr ""
|
| 347 |
|
| 348 |
+
#: admin/admin-functions.php:139, admin/general-settings.php:342, features/functions.php:790, features/functions.php:814
|
| 349 |
msgid "Medium"
|
| 350 |
msgstr ""
|
| 351 |
|
| 352 |
+
#: admin/admin-functions.php:139, admin/general-settings.php:343, features/functions.php:790, features/functions.php:814
|
| 353 |
msgid "Strong"
|
| 354 |
msgstr ""
|
| 355 |
|
| 3045 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
| 3046 |
msgstr ""
|
| 3047 |
|
| 3048 |
+
#: admin/manage-fields.php:1409, features/functions.php:1078, features/functions.php:1085, add-ons/custom-redirects/custom_redirects_admin.php:184, add-ons/custom-redirects/custom_redirects_admin.php:198, add-ons/custom-redirects/custom_redirects_admin.php:212, add-ons/custom-redirects/custom_redirects_admin.php:226, add-ons/multiple-forms/multiple-forms.php:410, add-ons-advanced/field-visibility/index.php:187, add-ons-free/labels-edit/labels-edit.php:373, features/admin-approval/class-admin-approval.php:111, features/roles-editor/roles-editor.php:902, assets/lib/wck-api/wordpress-creation-kit.php:452, assets/lib/wck-api/wordpress-creation-kit.php:553
|
| 3049 |
msgid "Edit"
|
| 3050 |
msgstr ""
|
| 3051 |
|
| 3052 |
+
#: admin/manage-fields.php:1409, features/functions.php:1071, features/functions.php:1085, add-ons/custom-redirects/custom_redirects_admin.php:184, add-ons/custom-redirects/custom_redirects_admin.php:198, add-ons/custom-redirects/custom_redirects_admin.php:212, add-ons/custom-redirects/custom_redirects_admin.php:226, add-ons-advanced/field-visibility/index.php:187, features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:232, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:210, features/roles-editor/roles-editor.php:940, features/roles-editor/roles-editor.php:929, features/roles-editor/roles-editor.php:920, assets/lib/wck-api/wordpress-creation-kit.php:452, assets/lib/wck-api/wordpress-creation-kit.php:554, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
|
| 3053 |
msgid "Delete"
|
| 3054 |
msgstr ""
|
| 3055 |
|
| 3341 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
| 3342 |
msgstr ""
|
| 3343 |
|
| 3344 |
+
#: features/functions.php:349
|
| 3345 |
msgid "GDPR Checkbox"
|
| 3346 |
msgstr ""
|
| 3347 |
|
| 3348 |
+
#: features/functions.php:349
|
| 3349 |
msgid "I allow the website to collect and store the data I submit through this form."
|
| 3350 |
msgstr ""
|
| 3351 |
|
| 3352 |
+
#: features/functions.php:349
|
| 3353 |
msgid "Honeypot"
|
| 3354 |
msgstr ""
|
| 3355 |
|
| 3356 |
+
#: features/functions.php:764
|
| 3357 |
msgid "Strength indicator"
|
| 3358 |
msgstr ""
|
| 3359 |
|
| 3360 |
+
#: features/functions.php:790, features/functions.php:814
|
| 3361 |
msgid "Very Weak"
|
| 3362 |
msgstr ""
|
| 3363 |
|
| 3364 |
+
#: features/functions.php:804
|
| 3365 |
msgid "Minimum length of %d characters."
|
| 3366 |
msgstr ""
|
| 3367 |
|
| 3368 |
+
#: features/functions.php:815, front-end/recover.php:384, front-end/default-fields/password/password.php:59
|
| 3369 |
msgid "The password must have a minimum strength of %s"
|
| 3370 |
msgstr ""
|
| 3371 |
|
| 3372 |
+
#: features/functions.php:976
|
| 3373 |
msgid "This field is required"
|
| 3374 |
msgstr ""
|
| 3375 |
|
| 3376 |
+
#: features/functions.php:1014, front-end/default-fields/recaptcha/recaptcha.php:538, front-end/default-fields/recaptcha/recaptcha.php:529, front-end/default-fields/recaptcha/recaptcha.php:594, front-end/default-fields/recaptcha/recaptcha.php:642
|
| 3377 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 3378 |
msgstr ""
|
| 3379 |
|
| 3380 |
+
#: features/functions.php:1021
|
| 3381 |
msgid "Incorrect phone number"
|
| 3382 |
msgstr ""
|
| 3383 |
|
| 3384 |
+
#: features/functions.php:1064, features/roles-editor/roles-editor.php:211, add-ons-advanced/campaign-monitor/admin/cmonitor-page.php:451, add-ons-advanced/mailchimp-integration/admin/mailchimp-page.php:171, assets/lib/wck-api/wordpress-creation-kit.php:411
|
| 3385 |
msgid "Cancel"
|
| 3386 |
msgstr ""
|
| 3387 |
|
| 3388 |
+
#: features/functions.php:1085, assets/lib/wck-api/wordpress-creation-kit.php:452
|
| 3389 |
msgid "Content"
|
| 3390 |
msgstr ""
|
| 3391 |
|
| 3392 |
+
#: features/functions.php:1273
|
| 3393 |
msgid "<br><br>Also, you will be able to visit your site at "
|
| 3394 |
msgstr ""
|
| 3395 |
|
| 3396 |
+
#: features/functions.php:1286
|
| 3397 |
msgid "<br><br>You can visit your site at "
|
| 3398 |
msgstr ""
|
| 3399 |
|
| 3400 |
+
#: features/functions.php:1377, add-ons-advanced/social-connect/index.php:417
|
| 3401 |
msgid "here"
|
| 3402 |
msgstr ""
|
| 3403 |
|
| 3404 |
+
#: features/functions.php:1378
|
| 3405 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
| 3406 |
msgstr ""
|
| 3407 |
|
| 3408 |
+
#: features/functions.php:1554
|
| 3409 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
| 3410 |
msgstr ""
|
| 3411 |
|
| 3412 |
+
#: features/functions.php:1595
|
| 3413 |
msgid "You are not currently logged in."
|
| 3414 |
msgstr ""
|
| 3415 |
|
| 3416 |
+
#: features/functions.php:1632
|
| 3417 |
msgid "Profile Builder"
|
| 3418 |
msgstr ""
|
| 3419 |
|
| 3420 |
+
#: features/functions.php:1650, features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
|
| 3421 |
msgid "User Meta"
|
| 3422 |
msgstr ""
|
| 3423 |
|
