Version Description
- Added Divi PageBuilder compatibility with Content Restriction
- Fix password recovery issue when username contained spaces.
Download this release
Release Info
| Developer | madalin.ungureanu |
| Plugin | |
| Version | 2.9.6 |
| Comparing to | |
| See all releases | |
Code changes from version 2.9.5 to 2.9.6
- assets/misc/plugin-compatibilities.php +27 -0
- front-end/recover.php +2 -2
- index.php +2 -2
- readme.txt +5 -1
- translation/profile-builder.catalog.php +12 -12
- translation/profile-builder.pot +13 -13
assets/misc/plugin-compatibilities.php
CHANGED
|
@@ -333,3 +333,30 @@
|
|
| 333 |
remove_action('secure_auth_redirect', 'secupress_move_login_maybe_deny_login_page', 0);
|
| 334 |
}
|
| 335 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 333 |
remove_action('secure_auth_redirect', 'secupress_move_login_maybe_deny_login_page', 0);
|
| 334 |
}
|
| 335 |
|
| 336 |
+
|
| 337 |
+
/****************************************************
|
| 338 |
+
* Divi Pagebuilder Compatibility
|
| 339 |
+
* Compatibility with Divi Pagebuilder and content restriction. Basically we try to force a restricted page that was created with the pagebuilder to display as a normal page
|
| 340 |
+
****************************************************/
|
| 341 |
+
if( function_exists('et_setup_theme') ) {
|
| 342 |
+
add_filter('get_post_metadata', 'wppb_divi_page_builder_compatibility', 100, 4);
|
| 343 |
+
function wppb_divi_page_builder_compatibility( $metadata, $object_id, $meta_key, $single ){
|
| 344 |
+
if (!is_admin()) {
|
| 345 |
+
if (isset($meta_key) && '_et_pb_use_builder' == $meta_key) {
|
| 346 |
+
if (wppb_content_restriction_filter_content('not_restricted', get_post($object_id)) != 'not_restricted') {
|
| 347 |
+
return 'off';
|
| 348 |
+
}
|
| 349 |
+
}
|
| 350 |
+
|
| 351 |
+
if (isset($meta_key) && '_wp_page_template' == $meta_key) {
|
| 352 |
+
if (wppb_content_restriction_filter_content('not_restricted', get_post($object_id)) != 'not_restricted') {
|
| 353 |
+
return 'default';
|
| 354 |
+
}
|
| 355 |
+
}
|
| 356 |
+
}
|
| 357 |
+
|
| 358 |
+
// Return original if the check does not pass
|
| 359 |
+
return $metadata;
|
| 360 |
+
|
| 361 |
+
}
|
| 362 |
+
}
|
front-end/recover.php
CHANGED
|
@@ -222,7 +222,7 @@ function wppb_front_end_password_recovery(){
|
|
| 222 |
$requestedUserID = $query[0]->ID;
|
| 223 |
$requestedUserLogin = $query[0]->user_login;
|
| 224 |
$requestedUserEmail = $query[0]->user_email;
|
| 225 |
-
$
|
| 226 |
|
| 227 |
if( $wppb_generalSettings['loginWith'] == 'username' || $wppb_generalSettings['loginWith'] == 'usernameemail' )
|
| 228 |
$display_username_email = $query[0]->user_login;
|
|
@@ -233,7 +233,7 @@ function wppb_front_end_password_recovery(){
|
|
| 233 |
$key = wppb_retrieve_activation_key( $requestedUserLogin );
|
| 234 |
|
| 235 |
//send primary email message
|
| 236 |
-
$recoveruserMailMessage1 = sprintf( __('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profile-builder'), $display_username_email, '<a href="'.esc_url( add_query_arg( array( 'loginName' => $
|
| 237 |
$recoveruserMailMessage1 = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recoveruserMailMessage1, $requestedUserID, $requestedUserLogin, $requestedUserEmail );
|
| 238 |
|
| 239 |
$recoveruserMailMessageTitle1 = sprintf(__('Password Reset from "%1$s"', 'profile-builder'), $blogname = get_option('blogname') );
|
| 222 |
$requestedUserID = $query[0]->ID;
|
| 223 |
$requestedUserLogin = $query[0]->user_login;
|
| 224 |
$requestedUserEmail = $query[0]->user_email;
|
| 225 |
+
$urlUsername = rawurlencode( $query[0]->user_login );
|
| 226 |
|
| 227 |
if( $wppb_generalSettings['loginWith'] == 'username' || $wppb_generalSettings['loginWith'] == 'usernameemail' )
|
| 228 |
$display_username_email = $query[0]->user_login;
|
| 233 |
$key = wppb_retrieve_activation_key( $requestedUserLogin );
|
| 234 |
|
| 235 |
//send primary email message
|
| 236 |
+
$recoveruserMailMessage1 = sprintf( __('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profile-builder'), $display_username_email, '<a href="'.esc_url( add_query_arg( array( 'loginName' => $urlUsername, 'key' => $key ), wppb_curpageurl() ) ).'">'.esc_url( add_query_arg( array( 'loginName' => $urlUsername, 'key' => $key ), wppb_curpageurl() ) ).'</a>' );
|
| 237 |
$recoveruserMailMessage1 = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recoveruserMailMessage1, $requestedUserID, $requestedUserLogin, $requestedUserEmail );
|
| 238 |
|
| 239 |
$recoveruserMailMessageTitle1 = sprintf(__('Password Reset from "%1$s"', 'profile-builder'), $blogname = get_option('blogname') );
|
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: 2.9.
|
| 7 |
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
|
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
|
|
| 75 |
*
|
| 76 |
*
|
| 77 |
*/
|
| 78 |
-
define('PROFILE_BUILDER_VERSION', '2.9.
|
| 79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 81 |
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: 2.9.6
|
| 7 |
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
| 75 |
*
|
| 76 |
*
|
| 77 |
*/
|
| 78 |
+
define('PROFILE_BUILDER_VERSION', '2.9.6' );
|
| 79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 81 |
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
|
| 5 |
Requires at least: 3.1
|
| 6 |
Tested up to: 5.0.3
|
| 7 |
-
Stable tag: 2.9.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -167,6 +167,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
| 167 |
12. Role Editor
|
| 168 |
|
| 169 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
= 2.9.5 =
|
| 171 |
* Fixed an issue with the Boss theme by moving the priority of the login_redirect filter
|
| 172 |
* Fixed issue with edit other user on the Twenty Nineteen theme
|
| 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
|
| 5 |
Requires at least: 3.1
|
| 6 |
Tested up to: 5.0.3
|
| 7 |
+
Stable tag: 2.9.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 |
+
= 2.9.6 =
|
| 171 |
+
* Added Divi PageBuilder compatibility with Content Restriction
|
| 172 |
+
* Fix password recovery issue when username contained spaces.
|
| 173 |
+
|
| 174 |
= 2.9.5 =
|
| 175 |
* Fixed an issue with the Boss theme by moving the priority of the login_redirect filter
|
| 176 |
* Fixed issue with edit other user on the Twenty Nineteen theme
|
translation/profile-builder.catalog.php
CHANGED
|
@@ -1207,7 +1207,7 @@
|
|
| 1207 |
<?php __("Resend activation email", "profile-builder"); ?>
|
| 1208 |
<?php __("Automatically generate password for users", "profile-builder"); ?>
|
| 1209 |
<?php __("By checking this option, the password will be automatically generated and emailed to the user.", "profile-builder"); ?>
|
| 1210 |
-
<?php __("Modify
|
| 1211 |
<?php __("Hidden and checked", "profile-builder"); ?>
|
| 1212 |
<?php __("Field text:", "profile-builder"); ?>
|
| 1213 |
<?php __("By default, the user needs to choose if he wants to receive a registration email.", "profile-builder"); ?>
|
|
@@ -1216,11 +1216,11 @@
|
|
| 1216 |
<?php __("Hide Repeater Fields from the back-end profile page", "profile-builder"); ?>
|
| 1217 |
<?php __("Repeater Fields from Profile Builder do not work on the back-end user profile page, they are just displayed. If you want to remove them completely, you can use this option.", "profile-builder"); ?>
|
| 1218 |
<?php __("You will still be able to use them from a front-end edit profile form.", "profile-builder"); ?>
|
| 1219 |
-
<?php __("Unique
|
| 1220 |
<?php __("By checking this option, users will not be able to choose a <strong>Display Name</strong> that is already used by another account.", "profile-builder"); ?>
|
| 1221 |
-
<?php __("Always capitalize
|
| 1222 |
<?php __("If you have these fields in your forms, they will be always saved with the first letter as uppercase.", "profile-builder"); ?>
|
| 1223 |
-
<?php __("eg.: <strong>
|
| 1224 |
<?php __("Datepicker starts on Monday", "profile-builder"); ?>
|
| 1225 |
<?php __("Will make all Datepickers use Monday as the first day of the week.", "profile-builder"); ?>
|
| 1226 |
<?php __("Ban certain words from being used in fields", "profile-builder"); ?>
|
|
@@ -1239,28 +1239,28 @@
|
|
| 1239 |
<?php __("Forms that should bypass Email Confirmation", "profile-builder"); ?>
|
| 1240 |
<?php __("Users registering through any of the selected forms will not need to confirm their email address.", "profile-builder"); ?>
|
| 1241 |
<?php __("Remember me checked by default", "profile-builder"); ?>
|
| 1242 |
-
<?php __("Check the
|
| 1243 |
<?php __("Remove validation from back-end profile page", "profile-builder"); ?>
|
| 1244 |
<?php __("When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute", "profile-builder"); ?>
|
| 1245 |
<?php __("Always show edit other users dropdown", "profile-builder"); ?>
|
| 1246 |
<?php __("For perfomance reasons, we disable the select if you have more than 5000 users on your website. This option lets you enable it again.", "profile-builder"); ?>
|
| 1247 |
-
<?php __("Consider
|
| 1248 |
<?php __("setting", "profile-builder"); ?>
|
| 1249 |
<?php __("By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it.", "profile-builder"); ?>
|
| 1250 |
<?php __("Modify default Redirect Delay timer", "profile-builder"); ?>
|
| 1251 |
-
<?php __("This allows you to change the amount of seconds it takes for the <strong
|
| 1252 |
<?php __("The default is 3 seconds. Leave empty if you do not want to change it.", "profile-builder"); ?>
|
| 1253 |
<?php __("Save Admin Approval status in usermeta", "profile-builder"); ?>
|
| 1254 |
<?php __("By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user.", "profile-builder"); ?>
|
| 1255 |
-
<?php __("If you check this option, the status will also be saved in the
|
| 1256 |
-
<?php __("Redirect
|
| 1257 |
<?php __("By default, users placed in Admin Approval will not be able to login, but the Author pages will be accessible.", "profile-builder"); ?>
|
| 1258 |
-
<?php __("Using this option you can redirect these pages, sending users who try to
|
| 1259 |
-
<?php __("Save
|
| 1260 |
<?php __("By checking this option, each time a user logins, the date and time will be saved in the database.", "profile-builder"); ?>
|
| 1261 |
<?php __("The meta name for the field will be <strong>last_login_date</strong>.", "profile-builder"); ?>
|
| 1262 |
<?php __("You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms.", "profile-builder"); ?>
|
| 1263 |
-
<?php __("Save
|
| 1264 |
<?php __("By checking this option, each time a modifies his profile the date and time will be saved in the database.", "profile-builder"); ?>
|
| 1265 |
<?php __("The meta name for the field will be <strong>last_profile_update_date</strong>.", "profile-builder"); ?>
|
| 1266 |
<?php __("Enable Compare shortcode", "profile-builder"); ?>
|
| 1207 |
<?php __("Resend activation email", "profile-builder"); ?>
|
| 1208 |
<?php __("Automatically generate password for users", "profile-builder"); ?>
|
| 1209 |
<?php __("By checking this option, the password will be automatically generated and emailed to the user.", "profile-builder"); ?>
|
| 1210 |
+
<?php __("Modify 'Send Credentials' checkbox", "profile-builder"); ?>
|
| 1211 |
<?php __("Hidden and checked", "profile-builder"); ?>
|
| 1212 |
<?php __("Field text:", "profile-builder"); ?>
|
| 1213 |
<?php __("By default, the user needs to choose if he wants to receive a registration email.", "profile-builder"); ?>
|
| 1216 |
<?php __("Hide Repeater Fields from the back-end profile page", "profile-builder"); ?>
|
| 1217 |
<?php __("Repeater Fields from Profile Builder do not work on the back-end user profile page, they are just displayed. If you want to remove them completely, you can use this option.", "profile-builder"); ?>
|
| 1218 |
<?php __("You will still be able to use them from a front-end edit profile form.", "profile-builder"); ?>
|
| 1219 |
+
<?php __("Unique 'Display Name' for users", "profile-builder"); ?>
|
| 1220 |
<?php __("By checking this option, users will not be able to choose a <strong>Display Name</strong> that is already used by another account.", "profile-builder"); ?>
|
| 1221 |
+
<?php __("Always capitalize 'First Name' and 'Last Name' default fields", "profile-builder"); ?>
|
| 1222 |
<?php __("If you have these fields in your forms, they will be always saved with the first letter as uppercase.", "profile-builder"); ?>
|
| 1223 |
+
<?php __("eg.: <strong>John Doe</strong> instead of <strong>john doe</strong>", "profile-builder"); ?>
|
| 1224 |
<?php __("Datepicker starts on Monday", "profile-builder"); ?>
|
| 1225 |
<?php __("Will make all Datepickers use Monday as the first day of the week.", "profile-builder"); ?>
|
| 1226 |
<?php __("Ban certain words from being used in fields", "profile-builder"); ?>
|
| 1239 |
<?php __("Forms that should bypass Email Confirmation", "profile-builder"); ?>
|
| 1240 |
<?php __("Users registering through any of the selected forms will not need to confirm their email address.", "profile-builder"); ?>
|
| 1241 |
<?php __("Remember me checked by default", "profile-builder"); ?>
|
| 1242 |
+
<?php __("Check the 'Remember Me' checkbox on Login forms, by default.", "profile-builder"); ?>
|
| 1243 |
<?php __("Remove validation from back-end profile page", "profile-builder"); ?>
|
| 1244 |
<?php __("When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute", "profile-builder"); ?>
|
| 1245 |
<?php __("Always show edit other users dropdown", "profile-builder"); ?>
|
| 1246 |
<?php __("For perfomance reasons, we disable the select if you have more than 5000 users on your website. This option lets you enable it again.", "profile-builder"); ?>
|
| 1247 |
+
<?php __("Consider 'Anyone can Register' WordPress option", "profile-builder"); ?>
|
| 1248 |
<?php __("setting", "profile-builder"); ?>
|
| 1249 |
<?php __("By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it.", "profile-builder"); ?>
|
| 1250 |
<?php __("Modify default Redirect Delay timer", "profile-builder"); ?>
|
| 1251 |
+
<?php __("This allows you to change the amount of seconds it takes for the <strong>'After Registration'</strong> redirect to happen.", "profile-builder"); ?>
|
| 1252 |
<?php __("The default is 3 seconds. Leave empty if you do not want to change it.", "profile-builder"); ?>
|
| 1253 |
<?php __("Save Admin Approval status in usermeta", "profile-builder"); ?>
|
| 1254 |
<?php __("By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user.", "profile-builder"); ?>
|
| 1255 |
+
<?php __("If you check this option, the status will also be saved in the '*_usermeta' table under the <strong>wppb_approval_status</strong> meta name.", "profile-builder"); ?>
|
| 1256 |
+
<?php __("Redirect '/author' page if user is not approved", "profile-builder"); ?>
|
| 1257 |
<?php __("By default, users placed in Admin Approval will not be able to login, but the Author pages will be accessible.", "profile-builder"); ?>
|
| 1258 |
+
<?php __("Using this option you can redirect these pages, sending users who try to access them to your home page.", "profile-builder"); ?>
|
| 1259 |
+
<?php __("Save 'Last Login' date in usermeta", "profile-builder"); ?>
|
| 1260 |
<?php __("By checking this option, each time a user logins, the date and time will be saved in the database.", "profile-builder"); ?>
|
| 1261 |
<?php __("The meta name for the field will be <strong>last_login_date</strong>.", "profile-builder"); ?>
|
| 1262 |
<?php __("You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms.", "profile-builder"); ?>
|
| 1263 |
+
<?php __("Save 'Last Profile Update' date in usermeta", "profile-builder"); ?>
|
| 1264 |
<?php __("By checking this option, each time a modifies his profile the date and time will be saved in the database.", "profile-builder"); ?>
|
| 1265 |
<?php __("The meta name for the field will be <strong>last_profile_update_date</strong>.", "profile-builder"); ?>
|
| 1266 |
<?php __("Enable Compare shortcode", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
|
@@ -4890,7 +4890,7 @@ msgid "By checking this option, the password will be automatically generated and
|
|
| 4890 |
msgstr ""
|
| 4891 |
|
| 4892 |
#: includes/views/view-fields.php:30
|
| 4893 |
-
msgid "Modify
|
| 4894 |
msgstr ""
|
| 4895 |
|
| 4896 |
#: includes/views/view-fields.php:34
|
|
@@ -4926,7 +4926,7 @@ msgid "You will still be able to use them from a front-end edit profile form."
|
|
| 4926 |
msgstr ""
|
| 4927 |
|
| 4928 |
#: includes/views/view-fields.php:87
|
| 4929 |
-
msgid "Unique
|
| 4930 |
msgstr ""
|
| 4931 |
|
| 4932 |
#: includes/views/view-fields.php:96
|
|
@@ -4934,7 +4934,7 @@ msgid "By checking this option, users will not be able to choose a <strong>Displ
|
|
| 4934 |
msgstr ""
|
| 4935 |
|
| 4936 |
#: includes/views/view-fields.php:103
|
| 4937 |
-
msgid "Always capitalize
|
| 4938 |
msgstr ""
|
| 4939 |
|
| 4940 |
#: includes/views/view-fields.php:112
|
|
@@ -4942,7 +4942,7 @@ msgid "If you have these fields in your forms, they will be always saved with th
|
|
| 4942 |
msgstr ""
|
| 4943 |
|
| 4944 |
#: includes/views/view-fields.php:115
|
| 4945 |
-
msgid "eg.: <strong>
|
| 4946 |
msgstr ""
|
| 4947 |
|
| 4948 |
#: includes/views/view-fields.php:123
|
|
@@ -5018,7 +5018,7 @@ msgid "Remember me checked by default"
|
|
| 5018 |
msgstr ""
|
| 5019 |
|
| 5020 |
#: includes/views/view-forms.php:136
|
| 5021 |
-
msgid "Check the
|
| 5022 |
msgstr ""
|
| 5023 |
|
| 5024 |
#: includes/views/view-forms.php:142
|
|
@@ -5038,7 +5038,7 @@ msgid "For perfomance reasons, we disable the select if you have more than 5000
|
|
| 5038 |
msgstr ""
|
| 5039 |
|
| 5040 |
#: includes/views/view-forms.php:179
|
| 5041 |
-
msgid "Consider
|
| 5042 |
msgstr ""
|
| 5043 |
|
| 5044 |
#: includes/views/view-forms.php:189
|
|
@@ -5054,7 +5054,7 @@ msgid "Modify default Redirect Delay timer"
|
|
| 5054 |
msgstr ""
|
| 5055 |
|
| 5056 |
#: includes/views/view-forms.php:206
|
| 5057 |
-
msgid "This allows you to change the amount of seconds it takes for the <strong
|
| 5058 |
msgstr ""
|
| 5059 |
|
| 5060 |
#: includes/views/view-forms.php:209
|
|
@@ -5070,11 +5070,11 @@ msgid "By default, the Admin Approval status is saved as a custom taxonomy that
|
|
| 5070 |
msgstr ""
|
| 5071 |
|
| 5072 |
#: includes/views/view-forms.php:229
|
| 5073 |
-
msgid "If you check this option, the status will also be saved in the
|
| 5074 |
msgstr ""
|
| 5075 |
|
| 5076 |
#: includes/views/view-forms.php:238
|
| 5077 |
-
msgid "Redirect
|
| 5078 |
msgstr ""
|
| 5079 |
|
| 5080 |
#: includes/views/view-forms.php:247
|
|
@@ -5082,11 +5082,11 @@ msgid "By default, users placed in Admin Approval will not be able to login, but
|
|
| 5082 |
msgstr ""
|
| 5083 |
|
| 5084 |
#: includes/views/view-forms.php:250
|
| 5085 |
-
msgid "Using this option you can redirect these pages, sending users who try to
|
| 5086 |
msgstr ""
|
| 5087 |
|
| 5088 |
#: includes/views/view-forms.php:258
|
| 5089 |
-
msgid "Save
|
| 5090 |
msgstr ""
|
| 5091 |
|
| 5092 |
#: includes/views/view-forms.php:267
|
|
@@ -5102,7 +5102,7 @@ msgid "You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manag
|
|
| 5102 |
msgstr ""
|
| 5103 |
|
| 5104 |
#: includes/views/view-forms.php:280
|
| 5105 |
-
msgid "Save
|
| 5106 |
msgstr ""
|
| 5107 |
|
| 5108 |
#: includes/views/view-forms.php:289
|
|
@@ -5349,7 +5349,7 @@ msgstr ""
|
|
| 5349 |
msgid "Conditional Rules"
|
| 5350 |
msgstr ""
|
| 5351 |
|
| 5352 |
-
#: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:
|
| 5353 |
msgid "This field has conditional logic enabled."
|
| 5354 |
msgstr ""
|
| 5355 |
|
| 4890 |
msgstr ""
|
| 4891 |
|
| 4892 |
#: includes/views/view-fields.php:30
|
| 4893 |
+
msgid "Modify 'Send Credentials' checkbox"
|
| 4894 |
msgstr ""
|
| 4895 |
|
| 4896 |
#: includes/views/view-fields.php:34
|
| 4926 |
msgstr ""
|
| 4927 |
|
| 4928 |
#: includes/views/view-fields.php:87
|
| 4929 |
+
msgid "Unique 'Display Name' for users"
|
| 4930 |
msgstr ""
|
| 4931 |
|
| 4932 |
#: includes/views/view-fields.php:96
|
| 4934 |
msgstr ""
|
| 4935 |
|
| 4936 |
#: includes/views/view-fields.php:103
|
| 4937 |
+
msgid "Always capitalize 'First Name' and 'Last Name' default fields"
|
| 4938 |
msgstr ""
|
| 4939 |
|
| 4940 |
#: includes/views/view-fields.php:112
|
| 4942 |
msgstr ""
|
| 4943 |
|
| 4944 |
#: includes/views/view-fields.php:115
|
| 4945 |
+
msgid "eg.: <strong>John Doe</strong> instead of <strong>john doe</strong>"
|
| 4946 |
msgstr ""
|
| 4947 |
|
| 4948 |
#: includes/views/view-fields.php:123
|
| 5018 |
msgstr ""
|
| 5019 |
|
| 5020 |
#: includes/views/view-forms.php:136
|
| 5021 |
+
msgid "Check the 'Remember Me' checkbox on Login forms, by default."
|
| 5022 |
msgstr ""
|
| 5023 |
|
| 5024 |
#: includes/views/view-forms.php:142
|
| 5038 |
msgstr ""
|
| 5039 |
|
| 5040 |
#: includes/views/view-forms.php:179
|
| 5041 |
+
msgid "Consider 'Anyone can Register' WordPress option"
|
| 5042 |
msgstr ""
|
| 5043 |
|
| 5044 |
#: includes/views/view-forms.php:189
|
| 5054 |
msgstr ""
|
| 5055 |
|
| 5056 |
#: includes/views/view-forms.php:206
|
| 5057 |
+
msgid "This allows you to change the amount of seconds it takes for the <strong>'After Registration'</strong> redirect to happen."
|
| 5058 |
msgstr ""
|
| 5059 |
|
| 5060 |
#: includes/views/view-forms.php:209
|
| 5070 |
msgstr ""
|
| 5071 |
|
| 5072 |
#: includes/views/view-forms.php:229
|
| 5073 |
+
msgid "If you check this option, the status will also be saved in the '*_usermeta' table under the <strong>wppb_approval_status</strong> meta name."
|
| 5074 |
msgstr ""
|
| 5075 |
|
| 5076 |
#: includes/views/view-forms.php:238
|
| 5077 |
+
msgid "Redirect '/author' page if user is not approved"
|
| 5078 |
msgstr ""
|
| 5079 |
|
| 5080 |
#: includes/views/view-forms.php:247
|
| 5082 |
msgstr ""
|
| 5083 |
|
| 5084 |
#: includes/views/view-forms.php:250
|
| 5085 |
+
msgid "Using this option you can redirect these pages, sending users who try to access them to your home page."
|
| 5086 |
msgstr ""
|
| 5087 |
|
| 5088 |
#: includes/views/view-forms.php:258
|
| 5089 |
+
msgid "Save 'Last Login' date in usermeta"
|
| 5090 |
msgstr ""
|
| 5091 |
|
| 5092 |
#: includes/views/view-forms.php:267
|
| 5102 |
msgstr ""
|
| 5103 |
|
| 5104 |
#: includes/views/view-forms.php:280
|
| 5105 |
+
msgid "Save 'Last Profile Update' date in usermeta"
|
| 5106 |
msgstr ""
|
| 5107 |
|
| 5108 |
#: includes/views/view-forms.php:289
|
| 5349 |
msgid "Conditional Rules"
|
| 5350 |
msgstr ""
|
| 5351 |
|
| 5352 |
+
#: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:456
|
| 5353 |
msgid "This field has conditional logic enabled."
|
| 5354 |
msgstr ""
|
| 5355 |
|
