Version Description
Download this release
Release Info
Developer | tareq1988 |
Plugin | WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress |
Version | 3.5.29 |
Comparing to | |
See all releases |
Code changes from version 3.5.28 to 3.5.29
- admin/html/whats-new.php +10 -0
- assets/js/promotion.json +6 -6
- changelog.txt +4 -0
- class/encryption-helper.php +75 -0
- includes/free/class-registration.php +14 -11
- languages/wp-user-frontend.pot +422 -418
- readme.txt +6 -2
- templates/registration-form.php +2 -1
- wpuf-functions.php +54 -18
- wpuf.php +3 -2
admin/html/whats-new.php
CHANGED
@@ -1,5 +1,15 @@
|
|
1 |
<?php
|
2 |
$changelog = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
[
|
4 |
'version' => 'Version 3.5.28',
|
5 |
'released' => '2022-08-17',
|
1 |
<?php
|
2 |
$changelog = [
|
3 |
+
[
|
4 |
+
'version' => 'Version 3.5.29',
|
5 |
+
'released' => '2022-09-15',
|
6 |
+
'changes' => [
|
7 |
+
[
|
8 |
+
'title' => __( 'Short-code encryption updated for registration page', 'wp-user-frontend' ),
|
9 |
+
'type' => 'Enhancement',
|
10 |
+
],
|
11 |
+
],
|
12 |
+
],
|
13 |
[
|
14 |
'version' => 'Version 3.5.28',
|
15 |
'released' => '2022-08-17',
|
assets/js/promotion.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
{
|
2 |
-
"key": "
|
3 |
-
"start_date": "2022-
|
4 |
-
"end_date": "2022-
|
5 |
-
"title": "
|
6 |
-
"content": "
|
7 |
-
"action_url": "https://wedevs.com/wp-user-frontend-pro/pricing?utm_medium=text&utm_source=
|
8 |
"action_title": "Get Now"
|
9 |
}
|
1 |
{
|
2 |
+
"key": "wpdashboard-summer-2022",
|
3 |
+
"start_date": "2022-07-07 8:00:00 EST",
|
4 |
+
"end_date": "2022-07-13 22:00:00 EST",
|
5 |
+
"title": "Beat the Heat with WP User Frontend Pro this Summer.",
|
6 |
+
"content": "Enjoy Up To 35% OFF",
|
7 |
+
"action_url": "https://wedevs.com/wp-user-frontend-pro/pricing?utm_medium=text&utm_source=wpdashboard-summer-2022",
|
8 |
"action_title": "Get Now"
|
9 |
}
|
changelog.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
= v3.5.28 (17 Jun, 2022) =
|
2 |
|
3 |
* Tweak - Updated compatibility with the latest version of WordPress 6.0
|
1 |
+
v3.5.29 (15 Sep, 2022) =
|
2 |
+
|
3 |
+
* Enhancement - Short-code encryption updated for registration page
|
4 |
+
|
5 |
= v3.5.28 (17 Jun, 2022) =
|
6 |
|
7 |
* Tweak - Updated compatibility with the latest version of WordPress 6.0
|
class/encryption-helper.php
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The WPUF_Encryption_Helper Class to handle the encryption
|
4 |
+
*/
|
5 |
+
|
6 |
+
class WPUF_Encryption_Helper {
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Get the Advanced Encryption Standard we are using
|
10 |
+
*
|
11 |
+
* @since WPUF
|
12 |
+
*
|
13 |
+
* @return string
|
14 |
+
*/
|
15 |
+
public static function get_encryption_method() {
|
16 |
+
return 'AES-256-CBC';
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Get the nonce length for the encryption
|
21 |
+
* Returns 24 If PHP version is 7.2 or above.
|
22 |
+
* For PHP version below 7.2 it will send the length as per the encryption method.
|
23 |
+
*
|
24 |
+
* @since WPUF
|
25 |
+
*
|
26 |
+
* @return int|bool
|
27 |
+
*/
|
28 |
+
public static function get_encryption_nonce_length() {
|
29 |
+
return function_exists( 'sodium_crypto_secretbox' ) ? SODIUM_CRYPTO_SECRETBOX_NONCEBYTES : openssl_cipher_iv_length( self::get_encryption_method() );
|
30 |
+
}
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Get the encryption key length. Defaults to 32
|
34 |
+
*
|
35 |
+
* @since WPUF
|
36 |
+
*
|
37 |
+
* @return int
|
38 |
+
*/
|
39 |
+
public static function get_encryption_key_length() {
|
40 |
+
return function_exists( 'sodium_crypto_secretbox' ) ? SODIUM_CRYPTO_SECRETBOX_KEYBYTES : 32;
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Get the base64 encoded auth keys
|
45 |
+
*
|
46 |
+
* @since WPUF
|
47 |
+
*
|
48 |
+
* @return array
|
49 |
+
* @throws Exception
|
50 |
+
*/
|
51 |
+
public static function get_encryption_auth_keys() {
|
52 |
+
$defaults = [
|
53 |
+
'auth_key' => '',
|
54 |
+
'auth_salt' => '',
|
55 |
+
];
|
56 |
+
$auth_keys = get_option( 'wpuf_auth_keys', $defaults );
|
57 |
+
|
58 |
+
if ( empty( $auth_keys['auth_key'] ) || empty( $auth_keys['auth_salt'] ) ) {
|
59 |
+
// check for saved key
|
60 |
+
$key = random_bytes( self::get_encryption_key_length() );
|
61 |
+
$auth_keys['auth_key'] = base64_encode( $key ); // phpcs:ignore
|
62 |
+
|
63 |
+
// check for saved nonce
|
64 |
+
$nonce = random_bytes( self::get_encryption_nonce_length() );
|
65 |
+
$auth_keys['auth_salt'] = base64_encode( $nonce ); // phpcs:ignore
|
66 |
+
|
67 |
+
update_option( 'wpuf_auth_keys', $auth_keys );
|
68 |
+
}
|
69 |
+
|
70 |
+
return [
|
71 |
+
'auth_key' => base64_decode( $auth_keys['auth_key'] ), // phpcs:ignore
|
72 |
+
'auth_salt' => base64_decode( $auth_keys['auth_salt'] ), // phpcs:ignore
|
73 |
+
];
|
74 |
+
}
|
75 |
+
}
|
includes/free/class-registration.php
CHANGED
@@ -138,7 +138,8 @@ class WPUF_Registration {
|
|
138 |
);
|
139 |
$userrole = $atts['role'];
|
140 |
|
141 |
-
$
|
|
|
142 |
|
143 |
$reg_page = $this->get_registration_url();
|
144 |
|
@@ -166,6 +167,7 @@ class WPUF_Registration {
|
|
166 |
$args = [
|
167 |
'action_url' => add_query_arg( $queries, $reg_page ),
|
168 |
'userrole' => $roleencoded,
|
|
|
169 |
];
|
170 |
|
171 |
wpuf_load_template( 'registration-form.php', $args );
|
@@ -182,6 +184,7 @@ class WPUF_Registration {
|
|
182 |
public function process_registration() {
|
183 |
if ( ! empty( $_POST['wpuf_registration'] ) && ! empty( $_POST['_wpnonce'] ) ) {
|
184 |
$userdata = [];
|
|
|
185 |
|
186 |
if ( isset( $_POST['_wpnonce'] ) ) {
|
187 |
$nonce = sanitize_key( wp_unslash( $_POST['_wpnonce'] ) );
|
@@ -190,13 +193,14 @@ class WPUF_Registration {
|
|
190 |
|
191 |
$validation_error = new WP_Error();
|
192 |
|
193 |
-
$reg_fname
|
194 |
-
$reg_lname
|
195 |
-
$reg_email
|
196 |
-
$pwd1
|
197 |
-
$pwd2
|
198 |
-
$log
|
199 |
-
$urhidden
|
|
|
200 |
|
201 |
$validation_error = apply_filters( 'wpuf_process_registration_errors', $validation_error, $reg_fname, $reg_lname, $reg_email, $log, $pwd1, $pwd2 );
|
202 |
|
@@ -270,15 +274,14 @@ class WPUF_Registration {
|
|
270 |
$userdata['user_login'] = $log;
|
271 |
}
|
272 |
|
273 |
-
$dec_role
|
274 |
-
|
275 |
$userdata['first_name'] = $reg_fname;
|
276 |
$userdata['last_name'] = $reg_lname;
|
277 |
$userdata['user_email'] = $reg_email;
|
278 |
$userdata['user_pass'] = $pwd1;
|
279 |
|
280 |
if ( get_role( $dec_role ) ) {
|
281 |
-
$userdata['role'] = $dec_role;
|
282 |
}
|
283 |
|
284 |
$user = wp_insert_user( $userdata );
|
138 |
);
|
139 |
$userrole = $atts['role'];
|
140 |
|
141 |
+
$user_nonce = base64_encode( random_bytes( WPUF_Encryption_Helper::get_encryption_nonce_length() ) );
|
142 |
+
$roleencoded = wpuf_encryption( $userrole, $user_nonce );
|
143 |
|
144 |
$reg_page = $this->get_registration_url();
|
145 |
|
167 |
$args = [
|
168 |
'action_url' => add_query_arg( $queries, $reg_page ),
|
169 |
'userrole' => $roleencoded,
|
170 |
+
'user_nonce' => $user_nonce,
|
171 |
];
|
172 |
|
173 |
wpuf_load_template( 'registration-form.php', $args );
|
184 |
public function process_registration() {
|
185 |
if ( ! empty( $_POST['wpuf_registration'] ) && ! empty( $_POST['_wpnonce'] ) ) {
|
186 |
$userdata = [];
|
187 |
+
$user = '';
|
188 |
|
189 |
if ( isset( $_POST['_wpnonce'] ) ) {
|
190 |
$nonce = sanitize_key( wp_unslash( $_POST['_wpnonce'] ) );
|
193 |
|
194 |
$validation_error = new WP_Error();
|
195 |
|
196 |
+
$reg_fname = isset( $_POST['reg_fname'] ) ? sanitize_text_field( wp_unslash( $_POST['reg_fname'] ) ) : '';
|
197 |
+
$reg_lname = isset( $_POST['reg_lname'] ) ? sanitize_text_field( wp_unslash( $_POST['reg_lname'] ) ) : '';
|
198 |
+
$reg_email = isset( $_POST['reg_email'] ) ? sanitize_email( wp_unslash( $_POST['reg_email'] ) ) : '';
|
199 |
+
$pwd1 = isset( $_POST['pwd1'] ) ? sanitize_text_field( wp_unslash( $_POST['pwd1'] ) ) : '';
|
200 |
+
$pwd2 = isset( $_POST['pwd2'] ) ? sanitize_text_field( wp_unslash( $_POST['pwd2'] ) ) : '';
|
201 |
+
$log = isset( $_POST['log'] ) ? sanitize_text_field( wp_unslash( $_POST['log'] ) ) : '';
|
202 |
+
$urhidden = isset( $_POST['urhidden'] ) ? sanitize_text_field( wp_unslash( $_POST['urhidden'] ) ) : '';
|
203 |
+
$user_nonce = isset( $_POST['user_nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['user_nonce'] ) ) : '';
|
204 |
|
205 |
$validation_error = apply_filters( 'wpuf_process_registration_errors', $validation_error, $reg_fname, $reg_lname, $reg_email, $log, $pwd1, $pwd2 );
|
206 |
|
274 |
$userdata['user_login'] = $log;
|
275 |
}
|
276 |
|
277 |
+
$dec_role = wpuf_decryption( $urhidden, $user_nonce );
|
|
|
278 |
$userdata['first_name'] = $reg_fname;
|
279 |
$userdata['last_name'] = $reg_lname;
|
280 |
$userdata['user_email'] = $reg_email;
|
281 |
$userdata['user_pass'] = $pwd1;
|
282 |
|
283 |
if ( get_role( $dec_role ) ) {
|
284 |
+
$userdata['role'] = empty( $dec_role ) || 'administrator' === $dec_role ? get_option( 'default_role' ) : $dec_role;
|
285 |
}
|
286 |
|
287 |
$user = wp_insert_user( $userdata );
|
languages/wp-user-frontend.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP User Frontend 3.5.
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -178,7 +178,7 @@ msgstr ""
|
|
178 |
#: includes/fields/class-abstract-fields.php:468
|
179 |
#: includes/fields/class-field-checkbox.php:74
|
180 |
#: includes/fields/class-field-radio.php:83 includes/free/form-element.php:499
|
181 |
-
#: wpuf.php:
|
182 |
msgid "Yes"
|
183 |
msgstr ""
|
184 |
|
@@ -193,7 +193,7 @@ msgstr ""
|
|
193 |
#: includes/fields/class-abstract-fields.php:469
|
194 |
#: includes/fields/class-field-checkbox.php:75
|
195 |
#: includes/fields/class-field-radio.php:84 includes/free/form-element.php:500
|
196 |
-
#: wpuf.php:
|
197 |
msgid "No"
|
198 |
msgstr ""
|
199 |
|
@@ -383,7 +383,7 @@ msgstr ""
|
|
383 |
|
384 |
#: admin/class-tools.php:43 admin/class-tools.php:106
|
385 |
#: admin/post-forms-list-table.php:43 class/transactions-list-table.php:95
|
386 |
-
#: includes/class-list-table-subscribers.php:136 wpuf-functions.php:
|
387 |
msgid "All"
|
388 |
msgstr ""
|
389 |
|
@@ -610,12 +610,12 @@ msgid "Are you sure you want to delete this field?"
|
|
610 |
msgstr ""
|
611 |
|
612 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:283
|
613 |
-
#: admin/posting.php:73 class/asset-loader.php:56 wpuf.php:
|
614 |
msgid "Yes, delete it"
|
615 |
msgstr ""
|
616 |
|
617 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:284
|
618 |
-
#: admin/posting.php:74 class/asset-loader.php:57 wpuf.php:
|
619 |
msgid "No, cancel it"
|
620 |
msgstr ""
|
621 |
|
@@ -1437,925 +1437,929 @@ msgid "Contact Support"
|
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: admin/html/whats-new.php:8
|
|
|
|
|
|
|
|
|
1440 |
msgid "Updated compatibility with the latest version of WordPress 6.0"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: admin/html/whats-new.php:
|
1444 |
msgid "Improved some backend implementations"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: admin/html/whats-new.php:
|
1448 |
msgid "Email template enhanced for after activation"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: admin/html/whats-new.php:
|
1452 |
msgid "Read only option for custom field"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: admin/html/whats-new.php:
|
1456 |
msgid "Editor toolbar exclude option enhanced"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: admin/html/whats-new.php:
|
1460 |
msgid "Preview option enhanced for user profile"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: admin/html/whats-new.php:
|
1464 |
msgid "Meta key enhanced for user email notification"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: admin/html/whats-new.php:
|
1468 |
msgid "Global option for disable post edit on account"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: admin/html/whats-new.php:
|
1472 |
msgid "Filter for conditional logic for fields added"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: admin/html/whats-new.php:
|
1476 |
msgid "PHP 8 compatibility handled"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: admin/html/whats-new.php:
|
1480 |
msgid "Address / Billing address inconsistency handled"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: admin/html/whats-new.php:
|
1484 |
msgid "Content restriction several issue fixed"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: admin/html/whats-new.php:
|
1488 |
msgid "Tax calculation properly handled for all areas"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: admin/html/whats-new.php:
|
1492 |
msgid "Validation added for invalid email and URL formats"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: admin/html/whats-new.php:
|
1496 |
msgid "Special character password handled for login"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: admin/html/whats-new.php:
|
1500 |
msgid "Reset password handled for sidebar widget"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: admin/html/whats-new.php:
|
1504 |
msgid "Required google map issues handled"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: admin/html/whats-new.php:
|
1508 |
msgid "Translation related issue handled for admin menu"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: admin/html/whats-new.php:
|
1512 |
msgid "Label & query enhanced for transaction table"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: admin/html/whats-new.php:
|
1516 |
msgid "Template override for child theme fixed"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: admin/html/whats-new.php:
|
1520 |
msgid "Custom field modal handled for registration form"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: admin/html/whats-new.php:
|
1524 |
msgid "Redundant CSS issues handled"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: admin/html/whats-new.php:
|
1528 |
msgid "Address field inconsistency fixed"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: admin/html/whats-new.php:
|
1532 |
msgid "Plugin page spin loading issue handled"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: admin/html/whats-new.php:
|
1536 |
msgid "Warning on exit for draft post fixed"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: admin/html/whats-new.php:
|
1540 |
msgid "Unlimited expire on admin user profile handled"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: admin/html/whats-new.php:
|
1544 |
msgid "No value checkbox issue handled"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: admin/html/whats-new.php:
|
1548 |
msgid "Tag search security Vulnerability handled"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: admin/html/whats-new.php:
|
1552 |
msgid "Multi dropdown field error handled"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: admin/html/whats-new.php:
|
1556 |
msgid "Promotion notice enhanced through api"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: admin/html/whats-new.php:
|
1560 |
msgid "Security Vulnerability fixed"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: admin/html/whats-new.php:
|
1564 |
msgid "Featured item for subscriber"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: admin/html/whats-new.php:
|
1568 |
msgid "Warning added for unsaved form data on frontend"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: admin/html/whats-new.php:
|
1572 |
msgid "Settings page search implemented"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: admin/html/whats-new.php:
|
1576 |
msgid "Editor added for registration form email template"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: admin/html/whats-new.php:
|
1580 |
msgid "Fallback pay per post not working with when draft enabled"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: admin/html/whats-new.php:
|
1584 |
msgid "User Dashboard responsive issues fixed"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: admin/html/whats-new.php:
|
1588 |
msgid "Showing wrong license expire message handled"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: admin/html/whats-new.php:
|
1592 |
msgid "Remove expire cron handled for once daily"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: admin/html/whats-new.php:
|
1596 |
msgid "Billing address validation handled"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: admin/html/whats-new.php:
|
1600 |
msgid "Promotion notice restricted for WPUF menu"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: admin/html/whats-new.php:
|
1604 |
msgid "reCaptcha issue with other plugin handled"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: admin/html/whats-new.php:
|
1608 |
msgid "Multiple post type for wpuf dashboard not working fixed"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: admin/html/whats-new.php:
|
1612 |
msgid "Billing address ajax request issue handled"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: admin/html/whats-new.php:
|
1616 |
msgid "Halloween promotion notice added"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: admin/html/whats-new.php:
|
1620 |
msgid "Content restriction for minimum, maximum value enhanced"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: admin/html/whats-new.php:
|
1624 |
msgid "New option for redirection after pay per post payment in form setting"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: admin/html/whats-new.php:
|
1628 |
msgid "Controller added for various email notification"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: admin/html/whats-new.php:
|
1632 |
msgid "Placeholder added for unauth message option"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: admin/html/whats-new.php:
|
1636 |
msgid "Subscription Post expiration option change to input field"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: admin/html/whats-new.php:
|
1640 |
msgid "Content restriction message translatable"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: admin/html/whats-new.php:
|
1644 |
msgid "ACF integration inconsistency handled"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: admin/html/whats-new.php:
|
1648 |
msgid "Enable payment checkbox handled for child option"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: admin/html/whats-new.php:
|
1652 |
msgid "Broken asset link handled for custom field popup"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: admin/html/whats-new.php:
|
1656 |
msgid "Rollback inconsistency for CPT handled"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: admin/html/whats-new.php:
|
1660 |
msgid "Login form loaded after resetting password"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: admin/html/whats-new.php:
|
1664 |
msgid "Billing address inconsistency handled"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: admin/html/whats-new.php:
|
1668 |
msgid "Form duplication on creation handled"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: admin/html/whats-new.php:
|
1672 |
msgid "Field Dragging inconsistency fixed"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: admin/html/whats-new.php:
|
1676 |
msgid "Google Map field enhanced along with acf google map"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: admin/html/whats-new.php:
|
1680 |
msgid "Filter added for dashboard account menu"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: admin/html/whats-new.php:
|
1684 |
msgid "Fallback Pay Per Post inconsistency handled"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: admin/html/whats-new.php:
|
1688 |
msgid "Google map search field not showing"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: admin/html/whats-new.php:
|
1692 |
msgid "Form preview page inconsistency with builder"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: admin/html/whats-new.php:
|
1696 |
msgid "Category not showing as hierarchy"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: admin/html/whats-new.php:
|
1700 |
msgid "TOC field randering issue with registration form"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: admin/html/whats-new.php:
|
1704 |
msgid "Custom plupload filter inconsistency with file upload handled"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: admin/html/whats-new.php:
|
1708 |
msgid "Guest Pay Per Post inconsistency handled"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: admin/html/whats-new.php:
|
1712 |
msgid "Responsive and font issue handled"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: admin/html/whats-new.php:
|
1716 |
msgid "Preview page added for post form and registration form"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: admin/html/whats-new.php:
|
1720 |
msgid "Post types menu on account page added"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: admin/html/whats-new.php:
|
1724 |
msgid "Dashboard shortcode attributes enhanced"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: admin/html/whats-new.php:
|
1728 |
msgid "Account page post type list new design"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: admin/html/whats-new.php:
|
1732 |
msgid "Payment page restricted from direct unauthenticated access"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: admin/html/whats-new.php:
|
1736 |
msgid "Timepicker conflict with dokan handled"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: admin/html/whats-new.php:
|
1740 |
msgid "Trial inconsistency with paypal fixed"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: admin/html/whats-new.php:
|
1744 |
msgid "Subscription does not cancel with paypal due to profile missing id"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: admin/html/whats-new.php:
|
1748 |
msgid "Subscription email notification inconsistency fixed"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: admin/html/whats-new.php:
|
1752 |
msgid "Various issues on payment page for non-logged in user handled"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: admin/html/whats-new.php:
|
1756 |
msgid "Column inner field cloning inconsistency fixed"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: admin/html/whats-new.php:
|
1760 |
msgid "Popup z-index changed due to other plugin z-index"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: admin/html/whats-new.php:
|
1764 |
msgid "Added Mauritian Rupee for currency"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: admin/html/whats-new.php:
|
1768 |
msgid "Added eid promotional offer notice"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: admin/html/whats-new.php:
|
1772 |
msgid "Multiple google map validation for same form"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: admin/html/whats-new.php:
|
1776 |
msgid "Various issues on verification, autologin payments & address field"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: admin/html/whats-new.php:
|
1780 |
msgid "Docs update for file & attachments feature which is pro only"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: admin/html/whats-new.php:
|
1784 |
msgid "Overflow footer on form builder page"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: admin/html/whats-new.php:
|
1788 |
msgid "WordPress 5.7 compatibility"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: admin/html/whats-new.php:
|
1792 |
msgid "Limited time promotion for weDevs birthday"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: admin/html/whats-new.php:
|
1796 |
msgid "Meta key will not change if label update"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: admin/html/whats-new.php:
|
1800 |
msgid "Login redirect empty previous url"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: admin/html/whats-new.php:
|
1804 |
msgid "Email doesnt set as username"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: admin/html/whats-new.php:
|
1808 |
msgid "Post redirection to payment doesn't work"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: admin/html/whats-new.php:
|
1812 |
msgid "Address field not working when used with conditional logic"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: admin/html/whats-new.php:
|
1816 |
msgid "Ajax type category child of not working"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: admin/html/whats-new.php:
|
1820 |
msgid "Non recurring subscription did not work"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: admin/html/whats-new.php:
|
1824 |
msgid "Menu position has chenged due to dokan has same menu position"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: admin/html/whats-new.php:
|
1828 |
msgid "Drag and drop not working properly for new field"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: admin/html/whats-new.php:
|
1832 |
msgid "QR and math captcha added to pro feature list"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: admin/html/whats-new.php:
|
1836 |
msgid "Tooltip for category navigate"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: admin/html/whats-new.php:
|
1840 |
msgid "Understandable guest payment notice"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: admin/html/whats-new.php:
|
1844 |
msgid "Paypal non recurring pack id does not set"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: admin/html/whats-new.php:
|
1848 |
msgid "Once trial subscription is used, it couldn't reset"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: admin/html/whats-new.php:
|
1852 |
msgid "Subscription cancel doesn't work"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: admin/html/whats-new.php:
|
1856 |
msgid "The tax rate was not calculated with the total amount"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: admin/html/whats-new.php:
|
1860 |
msgid "The width of the column field was breaking"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: admin/html/whats-new.php:
|
1864 |
msgid "Paypal recurring payment"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: admin/html/whats-new.php:
|
1868 |
msgid "Updated codebase to fix timezone mismatch"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: admin/html/whats-new.php:
|
1872 |
msgid "Custom html content field's width"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: admin/html/whats-new.php:
|
1876 |
msgid "All states of New Zealand are added"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: admin/html/whats-new.php:
|
1880 |
msgid "Get appropriate user id when role based conditions are present"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: admin/html/whats-new.php:
|
1884 |
msgid "Show Invalid subscription message if wrong pack id passed"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: admin/html/whats-new.php:
|
1888 |
msgid "URL field new window not working"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: admin/html/whats-new.php:
|
1892 |
msgid "Option label not working when & use"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: admin/html/whats-new.php:
|
1896 |
msgid "Ajax type category not showing on edit"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: admin/html/whats-new.php:
|
1900 |
msgid "Multiple file image can't select"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: admin/html/whats-new.php:
|
1904 |
msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: admin/html/whats-new.php:
|
1908 |
msgid "Conflict image field with acf image field"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: admin/html/whats-new.php:
|
1912 |
msgid "Missing Auckland State for New Zealand country"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: admin/html/whats-new.php:
|
1916 |
msgid "Added support for WooCommerce product category value replacemen"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: admin/html/whats-new.php:
|
1920 |
msgid "Add character restriction feature"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: admin/html/whats-new.php:
|
1924 |
msgid "Make sure post author edit link works only in frontend"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: admin/html/whats-new.php:
|
1928 |
msgid "Inconsistency in lost password reset email message"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: admin/html/whats-new.php:
|
1932 |
msgid "Saving custom taxonomy terms when input type is text"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: admin/html/whats-new.php:
|
1936 |
msgid "Taxonomy field JS error in builder"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: admin/html/whats-new.php:
|
1940 |
msgid "Showing WPUF edit link for WP default roles"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: admin/html/whats-new.php:
|
1944 |
msgid "Upload button unresponsive issue in iOS"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: admin/html/whats-new.php:
|
1948 |
msgid "Add post edit link for post authors in single or archive pages"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: admin/html/whats-new.php:
|
1952 |
msgid "Enhance post delete message"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: admin/html/whats-new.php:
|
1956 |
msgid "Refactor control buttons visibility in form builder"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: admin/html/whats-new.php:
|
1960 |
msgid "Add missing colons after field label"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: admin/html/whats-new.php:
|
1964 |
msgid "Post edit map capability condition"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: admin/html/whats-new.php:
|
1968 |
msgid "Role based permission for accessing a post form"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: admin/html/whats-new.php:
|
1972 |
msgid "Section-break field alignment"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: admin/html/whats-new.php:
|
1976 |
msgid "Pay per post doesn't work if subscription pack is activated"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: admin/html/whats-new.php:
|
1980 |
msgid "Mime type for uploading JSON files"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: admin/html/whats-new.php:
|
1984 |
msgid "File upload with same file name"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: admin/html/whats-new.php:
|
1988 |
msgid "Post preview missing fields"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: admin/html/whats-new.php:
|
1992 |
msgid "Illigal variable declartion"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: admin/html/whats-new.php:
|
1996 |
msgid "Featured image updating issue"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: admin/html/whats-new.php:
|
2000 |
msgid "Conflict with Phlox theme"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: admin/html/whats-new.php:
|
2004 |
msgid "Textarea custom field data sanitization"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: admin/html/whats-new.php:
|
2008 |
msgid "exclude_type warning in wpuf_category_checklist"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: admin/html/whats-new.php:
|
2012 |
msgid "Category field not showing all child categories for selection type child of"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: admin/html/whats-new.php:
|
2016 |
msgid "Conflict between image and file upload custom fields"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: admin/html/whats-new.php:
|
2020 |
msgid "Login url when login page is not set"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: admin/html/whats-new.php:
|
2024 |
msgid ""
|
2025 |
"Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
|
2026 |
"their official names"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: admin/html/whats-new.php:
|
2030 |
msgid "Fix condition to use default avatar"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: admin/html/whats-new.php:
|
2034 |
msgid "Make Email and URL fields clickable"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: admin/html/whats-new.php:
|
2038 |
msgid "Fix redirect after user login"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: admin/html/whats-new.php:
|
2042 |
msgid "Sanitize textarea field data"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: admin/html/whats-new.php:
|
2046 |
msgid ""
|
2047 |
"Fix missing colon to email, URL, text and textarea labels when renders "
|
2048 |
"their data"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: admin/html/whats-new.php:
|
2052 |
msgid "Prevent showing empty labels for fields that have render_field_data method"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: admin/html/whats-new.php:
|
2056 |
msgid "Add Namibian Dollar in currency list"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: admin/html/whats-new.php:
|
2060 |
msgid "Add sync values option for option data fields"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: admin/html/whats-new.php:
|
2064 |
msgid "Allow uploading image that having filesize meets php ini settings"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: admin/html/whats-new.php:
|
2068 |
msgid "Limit the selection of one image at a time"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: admin/html/whats-new.php:
|
2072 |
msgid "Use file name and size to generate hash to prevent duplicant image upload"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: admin/html/whats-new.php:
|
2076 |
msgid "Sanitize text and textarea field data"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: admin/html/whats-new.php:
|
2080 |
msgid ""
|
2081 |
"Show label instead of values for radio, checkbox, dropdown and multiselect "
|
2082 |
"data"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: admin/html/whats-new.php:
|
2086 |
msgid "Saving custom taxonomies for type text input"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: admin/html/whats-new.php:
|
2090 |
msgid "Admin settings link for recaptcha helper text"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: admin/html/whats-new.php:
|
2094 |
msgid "Undefined name property for Custom HTML fields"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: admin/html/whats-new.php:
|
2098 |
msgid "Delete attachment process"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: admin/html/whats-new.php:
|
2102 |
msgid "Missing billing address in invoice PDF"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: admin/html/whats-new.php:
|
2106 |
msgid "Showing country field value in frontend post content"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: admin/html/whats-new.php:
|
2110 |
msgid "Avatar size display not complying with admin settings size"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: admin/html/whats-new.php:
|
2114 |
msgid "Display default avatars on admin settings discussion page"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: admin/html/whats-new.php:
|
2118 |
msgid "Redirect to subscription page at registration"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: admin/html/whats-new.php:
|
2122 |
msgid "Error notice regarding registration page redirect"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: admin/html/whats-new.php:
|
2126 |
msgid "Escaping html in registration errors"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: admin/html/whats-new.php:
|
2130 |
msgid "Default login redirect link"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: admin/html/whats-new.php:
|
2134 |
msgid "Implementing default WP login page override option"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: admin/html/whats-new.php:
|
2138 |
msgid "Transparent background of autosuggestion dropdown"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: admin/html/whats-new.php:
|
2142 |
msgid "Import forms system"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: admin/html/whats-new.php:
|
2146 |
msgid "Password reset system"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: admin/html/whats-new.php:
|
2150 |
msgid "Updated url validation regex to support modern tlds"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: admin/html/whats-new.php:
|
2154 |
msgid "Export WPUF forms individually from admin tools page"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: admin/html/whats-new.php:
|
2158 |
msgid "Subscription cycle label translation issue"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: admin/html/whats-new.php:
|
2162 |
msgid "ACF integration for checkbox fields"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
-
#: admin/html/whats-new.php:
|
2166 |
msgid "Illegal string offset warning while updating settings"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#: admin/html/whats-new.php:
|
2170 |
msgid "Conditional logic for Section Break field"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: admin/html/whats-new.php:
|
2174 |
msgid "Subscriptions cannot be deleted from backend"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: admin/html/whats-new.php:
|
2178 |
msgid "A regression regarding saving checkbox data"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: admin/html/whats-new.php:
|
2182 |
msgid "Default value of multi-select fields is not showing"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: admin/html/whats-new.php:
|
2186 |
msgid "Hide post edit option when subscription is expired"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: admin/html/whats-new.php:
|
2190 |
msgid "Hide post edit option from users whose subscription pack is expired."
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: admin/html/whats-new.php:
|
2194 |
msgid "Check files to prevent duplicity in media upload"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: admin/html/whats-new.php:
|
2198 |
msgid ""
|
2199 |
"A simple measure has been taken to prevent maliciously flooding the site by "
|
2200 |
"uploading same file multiple times. Though this won't work with already "
|
2201 |
"uploaded medias."
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: admin/html/whats-new.php:
|
2205 |
msgid "Refactor address fields in Account section"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: admin/html/whats-new.php:
|
2209 |
msgid "Address edit section from Account section has been rewritten to improve UX."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: admin/html/whats-new.php:
|
2213 |
msgid "Update Paypal payment gateway"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: admin/html/whats-new.php:
|
2217 |
msgid "Paypal payment gateway has seen some improvements."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: admin/html/whats-new.php:
|
2221 |
msgid "Default Category selection improvements"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: admin/html/whats-new.php:
|
2225 |
msgid ""
|
2226 |
"An intuitive way of selecting default category of a selected post type has "
|
2227 |
"been introduced."
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: admin/html/whats-new.php:
|
2231 |
msgid "Compatibility issue with ACF date time field"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: admin/html/whats-new.php:
|
2235 |
msgid "A Compatibility issue with ACF date time field has been addressed."
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: admin/html/whats-new.php:
|
2239 |
msgid "Media title, caption & description not saving"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: admin/html/whats-new.php:
|
2243 |
msgid ""
|
2244 |
"Media title, caption & description were not saving from frontend. They will "
|
2245 |
"now."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: admin/html/whats-new.php:
|
2249 |
msgid ""
|
2250 |
"The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
|
2251 |
"metabox"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: admin/html/whats-new.php:
|
2255 |
msgid ""
|
2256 |
"A workaround has been introduced to save The Events Calendar Venue and "
|
2257 |
"Organizer fields properly from WPUF Custom Fields metabox."
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: admin/html/whats-new.php:
|
2261 |
msgid "Checkbox data not saving from WPUF Custom Fields metabox"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: admin/html/whats-new.php:
|
2265 |
msgid ""
|
2266 |
"Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
|
2267 |
"fixed."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: admin/html/whats-new.php:
|
2271 |
msgid "Multi-column Repeater field data saving issue"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: admin/html/whats-new.php:
|
2275 |
msgid ""
|
2276 |
"Multi-column Repeater field data from a form was not saving. It has been "
|
2277 |
"fixed."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: admin/html/whats-new.php:
|
2281 |
msgid "Multistep form conflict with Elementor"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: admin/html/whats-new.php:
|
2285 |
msgid "Multistep form had a conflict with Elementor. It has been fixed."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: admin/html/whats-new.php:
|
2289 |
msgid "Multiple images showing issue in frontend"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: admin/html/whats-new.php:
|
2293 |
msgid "Multiple images in a post were not showing in frontend. Now they will."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: admin/html/whats-new.php:
|
2297 |
msgid "Nonce not verify on login"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: admin/html/whats-new.php:
|
2301 |
msgid "Return of function wp_verify_nonce() was ignored."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: admin/html/whats-new.php:
|
2305 |
msgid "Option to set which tab shows as active on the account page"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: admin/html/whats-new.php:
|
2309 |
msgid ""
|
2310 |
"Option to set which tab shows as active on the account page. To configure "
|
2311 |
"this setting navigate to wp-admin->User Frontend->Settings->My "
|
2312 |
"Account->Active Tab "
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: admin/html/whats-new.php:
|
2316 |
msgid "Unlock option was unavailable after the post being locked"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: admin/html/whats-new.php:
|
2320 |
msgid "Unlock option was unavailable after the post being locked."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: admin/html/whats-new.php:
|
2324 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: admin/html/whats-new.php:
|
2328 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: admin/html/whats-new.php:
|
2332 |
msgid "Sending admin payment received email twice"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: admin/html/whats-new.php:
|
2336 |
msgid ""
|
2337 |
"After processing payment admin & user was receiving payment received email "
|
2338 |
"twice."
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: admin/html/whats-new.php:
|
2342 |
msgid ""
|
2343 |
"Add shortcode support to display post information in the Post Expiration "
|
2344 |
"Message"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: admin/html/whats-new.php:
|
2348 |
msgid ""
|
2349 |
"Add shortcode support to display post information in the Post Expiration "
|
2350 |
"Message. You can use: <strong>{post_author} {post_url} {blogname} "
|
2351 |
"{post_title} {post_status}</strong>"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: admin/html/whats-new.php:
|
2355 |
msgid "Add optin on the setup wizard"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: admin/html/whats-new.php:
|
2359 |
msgid ""
|
2360 |
"Added optin on the setup wizard, admin can choose whether he/she wants to "
|
2361 |
"share server environment details (php, mysql, server, WordPress versions), "
|
@@ -2363,126 +2367,126 @@ msgid ""
|
|
2363 |
"name and url, admin name and email address. No sensitive data is tracked"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: admin/html/whats-new.php:
|
2367 |
msgid "Post Owner problem"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: admin/html/whats-new.php:
|
2371 |
msgid ""
|
2372 |
"Posts were not assigned to the selected default post owner, this issue has "
|
2373 |
"been fixed."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: admin/html/whats-new.php:
|
2377 |
msgid "Google reCaptcha was not working"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: admin/html/whats-new.php:
|
2381 |
msgid ""
|
2382 |
"Google reCaptcha was not working, users could submit the form without "
|
2383 |
"reCaptcha validation."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: admin/html/whats-new.php:
|
2387 |
msgid "Added column field"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: admin/html/whats-new.php:
|
2391 |
msgid "Unable to render the events on the front-end dashboard"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: admin/html/whats-new.php:
|
2395 |
msgid ""
|
2396 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
2397 |
"get it fixed in this version."
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: admin/html/whats-new.php:
|
2401 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: admin/html/whats-new.php:
|
2405 |
msgid ""
|
2406 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
2407 |
"fixed."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: admin/html/whats-new.php:
|
2411 |
msgid "Text input field for taxonomies not working"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: admin/html/whats-new.php:
|
2415 |
msgid ""
|
2416 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
2417 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: admin/html/whats-new.php:
|
2421 |
msgid ""
|
2422 |
"In radio and checkbox field use conditional logic that value does not save "
|
2423 |
"in database"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: admin/html/whats-new.php:
|
2427 |
msgid ""
|
2428 |
"The selected value of radio and checkbox field were not showing while "
|
2429 |
"editing posts from the backend or frontend, you can see the selected value "
|
2430 |
"in this version."
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: admin/html/whats-new.php:
|
2434 |
msgid "The args param not working with get_avatar filter"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: admin/html/whats-new.php:
|
2438 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: admin/html/whats-new.php:
|
2442 |
msgid "The item in ajax taxonomy field was not selected"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: admin/html/whats-new.php:
|
2446 |
msgid ""
|
2447 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
2448 |
"showing in the backend and frontend which have been fixed."
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: admin/html/whats-new.php:
|
2452 |
msgid "Unable to send new user registration email"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: admin/html/whats-new.php:
|
2456 |
msgid ""
|
2457 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
2458 |
"to send the new user registration email."
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: admin/html/whats-new.php:
|
2462 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: admin/html/whats-new.php:
|
2466 |
msgid ""
|
2467 |
"With the latest version of WordPress the gutenberg block of WP User "
|
2468 |
"Frontend were not working. In this version, you will get it fixed."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: admin/html/whats-new.php:
|
2472 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: admin/html/whats-new.php:
|
2476 |
msgid ""
|
2477 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
2478 |
"[wpuf dashboard]"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: admin/html/whats-new.php:
|
2482 |
msgid "Retain default when determining whether to display the admin bar"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: admin/html/whats-new.php:
|
2486 |
msgid ""
|
2487 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
2488 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
@@ -2492,11 +2496,11 @@ msgid ""
|
|
2492 |
"frontend."
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: admin/html/whats-new.php:
|
2496 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: admin/html/whats-new.php:
|
2500 |
msgid ""
|
2501 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
2502 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
@@ -2504,42 +2508,42 @@ msgid ""
|
|
2504 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: admin/html/whats-new.php:
|
2508 |
msgid "Product form was unable to show the single gallery image"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: admin/html/whats-new.php:
|
2512 |
msgid ""
|
2513 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
2514 |
"product form, that image were not showing on the frontend."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: admin/html/whats-new.php:
|
2518 |
msgid "WooCommerce gallery images not getting saved"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: admin/html/whats-new.php:
|
2522 |
msgid ""
|
2523 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
2524 |
"working. You will get it fixed in this version."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: admin/html/whats-new.php:
|
2528 |
msgid "The Events Calendar Integration Form"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: admin/html/whats-new.php:
|
2532 |
msgid ""
|
2533 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
2534 |
"has a one click pre-build event form that has been integrated with The "
|
2535 |
"Events Calendar plugin"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: admin/html/whats-new.php:
|
2539 |
msgid "Post Submission Facility From Account Page"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: admin/html/whats-new.php:
|
2543 |
msgid ""
|
2544 |
"On the frontend account page, added a new menu item named <b>Submit "
|
2545 |
"Post</b>. Now admin can allow users to submit post from their default "
|
@@ -2548,504 +2552,504 @@ msgid ""
|
|
2548 |
"you can assign any post form that will use to submit posts."
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: admin/html/whats-new.php:
|
2552 |
msgid "Login/Lost Password Link Under Registration Form"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: admin/html/whats-new.php:
|
2556 |
msgid "Added Login/Lost Password link under registration form"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: admin/html/whats-new.php:
|
2560 |
msgid "Added drag and drop image ordering on image upload"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: admin/html/whats-new.php:
|
2564 |
msgid ""
|
2565 |
"Now frontend users can drag & drop the images/files to change the order "
|
2566 |
"while uploading."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: admin/html/whats-new.php:
|
2570 |
msgid "Added reCAPTCHA field in login form"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: admin/html/whats-new.php:
|
2574 |
msgid ""
|
2575 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
2576 |
"related settings from <strong>User Frontend > Settings > "
|
2577 |
"Login/Registration</strong>"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: admin/html/whats-new.php:
|
2581 |
msgid "Added preview option in forms"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: admin/html/whats-new.php:
|
2585 |
msgid ""
|
2586 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
2587 |
"Form</strong> button, admin can take a quick look of the form without using "
|
2588 |
"shortcode"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: admin/html/whats-new.php:
|
2592 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: admin/html/whats-new.php:
|
2596 |
msgid ""
|
2597 |
"The upload button will not be hidden until the user selects max number of "
|
2598 |
"files "
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: admin/html/whats-new.php:
|
2602 |
msgid "Added form limit notice before form submission"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: admin/html/whats-new.php:
|
2606 |
msgid ""
|
2607 |
"Limit notice message was showing after submission, now it is showing when "
|
2608 |
"rendering the form"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: admin/html/whats-new.php:
|
2612 |
msgid "Fixed: default post category not saving"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: admin/html/whats-new.php:
|
2616 |
msgid ""
|
2617 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
2618 |
"category options were not saving. Now, it's fixed."
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: admin/html/whats-new.php:
|
2622 |
msgid ""
|
2623 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
2624 |
"properly"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: admin/html/whats-new.php:
|
2628 |
msgid ""
|
2629 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
2630 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: admin/html/whats-new.php:
|
2634 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: admin/html/whats-new.php:
|
2638 |
msgid ""
|
2639 |
"If you are using other language than English. Please <b>rename</b> your "
|
2640 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
2641 |
"change was made to support translations from translate.wordpress.org"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: admin/html/whats-new.php:
|
2645 |
msgid "Added WP User Frontend Data export and erase functionality."
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: admin/html/whats-new.php:
|
2649 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: admin/html/whats-new.php:
|
2653 |
msgid "Added billing address customizer."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: admin/html/whats-new.php:
|
2657 |
msgid "Added customizer options for billing address in payment page."
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: admin/html/whats-new.php:
|
2661 |
msgid "Make the payment page responsive."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: admin/html/whats-new.php:
|
2665 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: admin/html/whats-new.php:
|
2669 |
msgid "Fixed image upload issue in Safari."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: admin/html/whats-new.php:
|
2673 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: admin/html/whats-new.php:
|
2677 |
msgid "Post update issue after updating or removing post images."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: admin/html/whats-new.php:
|
2681 |
msgid ""
|
2682 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
2683 |
"now."
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: admin/html/whats-new.php:
|
2687 |
msgid "Allow overriding form input styles using theme styling."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: admin/html/whats-new.php:
|
2691 |
msgid "Overriding form input styles using theme style is now possible."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: admin/html/whats-new.php:
|
2695 |
msgid "Fixed Auto Login after registration."
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: admin/html/whats-new.php:
|
2699 |
msgid "Auto Login after registration was not working is fixed now."
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: admin/html/whats-new.php:
|
2703 |
msgid "Fixed fallback cost calculation"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: admin/html/whats-new.php:
|
2707 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: admin/html/whats-new.php:
|
2711 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: admin/html/whats-new.php:
|
2715 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: admin/html/whats-new.php:
|
2719 |
msgid "Show Free pack users in subscribers list."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: admin/html/whats-new.php:
|
2723 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: admin/html/whats-new.php:
|
2727 |
msgid "WP User Frontend Guten Block is added"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: admin/html/whats-new.php:
|
2731 |
msgid ""
|
2732 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
2733 |
"preview of the form. "
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: admin/html/whats-new.php:
|
2737 |
msgid "Advanced Custom Fields plugin compatibility"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: admin/html/whats-new.php:
|
2741 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: admin/html/whats-new.php:
|
2745 |
msgid "Taxonomy Terms not showing for custom post types"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: admin/html/whats-new.php:
|
2749 |
msgid ""
|
2750 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
2751 |
"within Form Settings and Dashboard Post Listing"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: admin/html/whats-new.php:
|
2755 |
msgid "Various other code optimizations"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: admin/html/whats-new.php:
|
2759 |
msgid "Code structure organization and optimization for better performance"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: admin/html/whats-new.php:
|
2763 |
msgid "WoooCommerce billing address Sync"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: admin/html/whats-new.php:
|
2767 |
msgid ""
|
2768 |
"If an existing customer has previously set his billing address, that will "
|
2769 |
"be imported into WPUF Billing address "
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: admin/html/whats-new.php:
|
2773 |
msgid "Trial subscription message not showing properly"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: admin/html/whats-new.php:
|
2777 |
msgid "Subscriptions with Trial now shows trial notices"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: admin/html/whats-new.php:
|
2781 |
msgid "Reset email Key not working"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: admin/html/whats-new.php:
|
2785 |
msgid "Reset Email key was not working in some cases"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: admin/html/whats-new.php:
|
2789 |
msgid "Post count not showing on the frontend dashboard"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: admin/html/whats-new.php:
|
2793 |
msgid ""
|
2794 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
2795 |
"now fixed and shows count for each post type"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: admin/html/whats-new.php:
|
2799 |
msgid "Login Redirect showing blank page is fixed"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: admin/html/whats-new.php:
|
2803 |
msgid ""
|
2804 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
2805 |
"redirecting to blank page for users who hit login page directly"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: admin/html/whats-new.php:
|
2809 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: admin/html/whats-new.php:
|
2813 |
msgid ""
|
2814 |
"You can choose Previous Page as Login Redirect page settings now to "
|
2815 |
"redirect users to the page from which they went for Login. "
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: admin/html/whats-new.php:
|
2819 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: admin/html/whats-new.php:
|
2823 |
msgid ""
|
2824 |
"For some clients emails were not rendering the HTML links properly, this is "
|
2825 |
"now fixed"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: admin/html/whats-new.php:
|
2829 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: admin/html/whats-new.php:
|
2833 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: admin/html/whats-new.php:
|
2837 |
msgid "Various other code improvements"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: admin/html/whats-new.php:
|
2841 |
msgid "Dashboard Post Listing now supports multiple post types"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: admin/html/whats-new.php:
|
2845 |
msgid ""
|
2846 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
2847 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: admin/html/whats-new.php:
|
2851 |
msgid "Added Login Redirect Settings"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: admin/html/whats-new.php:
|
2855 |
msgid ""
|
2856 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
2857 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
2858 |
"redirected to this page after login."
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: admin/html/whats-new.php:
|
2862 |
msgid "Image Upload field button text can be changed"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: admin/html/whats-new.php:
|
2866 |
msgid ""
|
2867 |
"The upload button text can now be changed for image upload fields which "
|
2868 |
"defaults to \"Select Image\" if not set. "
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: admin/html/whats-new.php:
|
2872 |
msgid "Multi Step Form styles made compatible with more themes"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: admin/html/whats-new.php:
|
2876 |
msgid "Multi Step form can now be styled more easily with other themes "
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: admin/html/whats-new.php:
|
2880 |
msgid "Required field condition for google map not working is fixed"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: admin/html/whats-new.php:
|
2884 |
msgid ""
|
2885 |
"If Google Map field was set as required users were able to submit form "
|
2886 |
"without changing the default value."
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: admin/html/whats-new.php:
|
2890 |
msgid "Admin form builder is now fully responsive."
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: admin/html/whats-new.php:
|
2894 |
msgid ""
|
2895 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
2896 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
2897 |
"the go."
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: admin/html/whats-new.php:
|
2901 |
msgid "Added color schemes for creating attractive form layouts."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: admin/html/whats-new.php:
|
2905 |
msgid ""
|
2906 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
2907 |
"from each form's new display settings."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: admin/html/whats-new.php:
|
2911 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: admin/html/whats-new.php:
|
2915 |
msgid ""
|
2916 |
"Free subscription packs now can only be purchased once and the limit "
|
2917 |
"applies properly"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: admin/html/whats-new.php:
|
2921 |
msgid "Various other bug fixes and improvements were made "
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: admin/html/whats-new.php:
|
2925 |
msgid "Please see the change log to see full details."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: admin/html/whats-new.php:
|
2929 |
msgid "Added upgrade function for default category"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: admin/html/whats-new.php:
|
2933 |
msgid "Upgrader added to upgrade previously set default post category."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: admin/html/whats-new.php:
|
2937 |
msgid "Subscription pack cannot be canceled"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: admin/html/whats-new.php:
|
2941 |
msgid ""
|
2942 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
2943 |
"in subscription details section."
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: admin/html/whats-new.php:
|
2947 |
msgid "page installer admin notice logic issue"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: admin/html/whats-new.php:
|
2951 |
msgid ""
|
2952 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
2953 |
"default value not set."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: admin/html/whats-new.php:
|
2957 |
msgid "Setup Wizard"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: admin/html/whats-new.php:
|
2961 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: admin/html/whats-new.php:
|
2965 |
msgid "Multi-select Category"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: admin/html/whats-new.php:
|
2969 |
msgid "Add multi-select to default category in post form settings."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: admin/html/whats-new.php:
|
2973 |
msgid "Select Text option for Taxonomy"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
-
#: admin/html/whats-new.php:
|
2977 |
msgid ""
|
2978 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
2979 |
"with empty value as first option for Taxonomy dropdown."
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: admin/html/whats-new.php:
|
2983 |
msgid "Taxonomy Checkbox Inline"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: admin/html/whats-new.php:
|
2987 |
msgid ""
|
2988 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
2989 |
"Taxonomy checkbox fields inline."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: admin/html/whats-new.php:
|
2993 |
msgid "Manage schedule for form submission"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: admin/html/whats-new.php:
|
2997 |
msgid ""
|
2998 |
"Do not accept form submission if the current date is not between the date "
|
2999 |
"range of the schedule."
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: admin/html/whats-new.php:
|
3003 |
msgid "Restrict form submission based on the user roles"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: admin/html/whats-new.php:
|
3007 |
msgid ""
|
3008 |
"Restrict form submission based on the user roles. Now you can manage user "
|
3009 |
"role base permission on form submission."
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: admin/html/whats-new.php:
|
3013 |
msgid "Limit how many entries a form will accept"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: admin/html/whats-new.php:
|
3017 |
msgid ""
|
3018 |
"Limit how many entries a form will accept and display a custom message when "
|
3019 |
"that limit is reached."
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: admin/html/whats-new.php:
|
3023 |
msgid "Show/hide Admin Bar"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: admin/html/whats-new.php:
|
3027 |
msgid "Control the admin bar visibility based on user roles."
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: admin/html/whats-new.php:
|
3031 |
msgid "Ajax Login widget"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: admin/html/whats-new.php:
|
3035 |
msgid ""
|
3036 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
3037 |
"form do not required page loading for login."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: admin/html/whats-new.php:
|
3041 |
msgid "Form submission with Captcha field"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: admin/html/whats-new.php:
|
3045 |
msgid "Form field validation process updated if form submits with captcha field."
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: admin/html/whats-new.php:
|
3049 |
msgid "What's New in WPUF?"
|
3050 |
msgstr ""
|
3051 |
|
@@ -3179,23 +3183,23 @@ msgid "Draft"
|
|
3179 |
msgstr ""
|
3180 |
|
3181 |
#: admin/posting.php:72 class/asset-loader.php:55 class/render-form.php:1682
|
3182 |
-
#: wpuf.php:
|
3183 |
msgid "Are you sure?"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: admin/posting.php:80 class/asset-loader.php:63 wpuf.php:
|
3187 |
msgid "Allowed Files"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: admin/posting.php:83 class/asset-loader.php:66 wpuf.php:
|
3191 |
msgid "Maximum number of files reached!"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: admin/posting.php:84 class/asset-loader.php:67 wpuf.php:
|
3195 |
msgid "The file you have uploaded exceeds the file size limit. Please try again."
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: admin/posting.php:85 class/asset-loader.php:68 wpuf.php:
|
3199 |
msgid "You have uploaded an incorrect file type. Please try again."
|
3200 |
msgstr ""
|
3201 |
|
@@ -4382,27 +4386,27 @@ msgstr ""
|
|
4382 |
msgid "Import"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#: class/asset-loader.php:32 wpuf.php:
|
4386 |
msgid "is required"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
-
#: class/asset-loader.php:33 wpuf.php:
|
4390 |
msgid "does not match"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: class/asset-loader.php:34 wpuf.php:
|
4394 |
msgid "is not valid"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: class/asset-loader.php:46 wpuf.php:
|
4398 |
msgid "Please fix the errors to proceed"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: class/asset-loader.php:48 wpuf.php:
|
4402 |
msgid "Word limit reached"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: class/asset-loader.php:49 wpuf.php:
|
4406 |
msgid "Are you sure you want to cancel your current subscription ?"
|
4407 |
msgstr ""
|
4408 |
|
@@ -5322,7 +5326,7 @@ msgid "Someone has requested a password reset for the following account:"
|
|
5322 |
msgstr ""
|
5323 |
|
5324 |
#: includes/class-login-widget.php:147 includes/free/class-login.php:872
|
5325 |
-
#: includes/free/class-login.php:972 includes/free/class-registration.php:
|
5326 |
#. translators: %s: username
|
5327 |
msgid "Username: %s"
|
5328 |
msgstr ""
|
@@ -6220,28 +6224,28 @@ msgstr ""
|
|
6220 |
msgid "Nonce is invalid"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
-
#: includes/free/class-login.php:436 includes/free/class-registration.php:
|
6224 |
msgid "Username is required."
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#: includes/free/class-login.php:442 includes/free/class-registration.php:
|
6228 |
msgid "Password is required."
|
6229 |
msgstr ""
|
6230 |
|
6231 |
-
#: includes/free/class-login.php:464 includes/free/class-registration.php:
|
6232 |
-
#: includes/free/class-registration.php:
|
6233 |
-
#: includes/free/class-registration.php:
|
6234 |
-
#: includes/free/class-registration.php:
|
6235 |
-
#: includes/free/class-registration.php:
|
6236 |
-
#: includes/free/class-registration.php:
|
6237 |
-
#: includes/free/class-registration.php:
|
6238 |
-
#: includes/free/class-registration.php:
|
6239 |
-
#: includes/free/class-registration.php:
|
6240 |
-
#: includes/free/class-registration.php:
|
6241 |
msgid "Error"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
-
#: includes/free/class-login.php:464 includes/free/class-registration.php:
|
6245 |
msgid "A user could not be found with this email address."
|
6246 |
msgstr ""
|
6247 |
|
@@ -6342,52 +6346,52 @@ msgstr ""
|
|
6342 |
msgid " Login "
|
6343 |
msgstr ""
|
6344 |
|
6345 |
-
#: includes/free/class-registration.php:
|
6346 |
msgid "First name is required."
|
6347 |
msgstr ""
|
6348 |
|
6349 |
-
#: includes/free/class-registration.php:
|
6350 |
msgid "Last name is required."
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: includes/free/class-registration.php:
|
6354 |
msgid "Email is required."
|
6355 |
msgstr ""
|
6356 |
|
6357 |
-
#: includes/free/class-registration.php:
|
6358 |
msgid "Confirm Password is required."
|
6359 |
msgstr ""
|
6360 |
|
6361 |
-
#: includes/free/class-registration.php:
|
6362 |
msgid "Passwords are not same."
|
6363 |
msgstr ""
|
6364 |
|
6365 |
-
#: includes/free/class-registration.php:
|
6366 |
msgid "A user with same username already exists."
|
6367 |
msgstr ""
|
6368 |
|
6369 |
-
#: includes/free/class-registration.php:
|
6370 |
#. translators: %s: site name
|
6371 |
msgid "New user registration on your site %s:"
|
6372 |
msgstr ""
|
6373 |
|
6374 |
-
#: includes/free/class-registration.php:
|
6375 |
#. translators: %s: email
|
6376 |
msgid "E-mail: %s"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
-
#: includes/free/class-registration.php:
|
6380 |
-
#: includes/free/class-registration.php:
|
6381 |
#. translators: %s %s: site name subject
|
6382 |
msgid "[%1$s] %2$s"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
-
#: includes/free/class-registration.php:
|
6386 |
#. translators: %s: username
|
6387 |
msgid "Hi, %s"
|
6388 |
msgstr ""
|
6389 |
|
6390 |
-
#: includes/free/class-registration.php:
|
6391 |
msgid "Subscription Page settings not set in admin settings"
|
6392 |
msgstr ""
|
6393 |
|
@@ -7453,7 +7457,7 @@ msgstr ""
|
|
7453 |
msgid "Jordanian dinar"
|
7454 |
msgstr ""
|
7455 |
|
7456 |
-
#: wpuf-functions.php:
|
7457 |
msgid "None"
|
7458 |
msgstr ""
|
7459 |
|
@@ -7473,7 +7477,7 @@ msgstr ""
|
|
7473 |
msgid "Your Post Has Been Expired"
|
7474 |
msgstr ""
|
7475 |
|
7476 |
-
#: wpuf.php:
|
7477 |
msgid ""
|
7478 |
"<p style=\"font-size: 13px\">\n"
|
7479 |
" <strong class=\"highlight-text\" "
|
@@ -7486,31 +7490,31 @@ msgid ""
|
|
7486 |
" </p>"
|
7487 |
msgstr ""
|
7488 |
|
7489 |
-
#: wpuf.php:
|
7490 |
msgid "Update WP User Frontend Pro Now"
|
7491 |
msgstr ""
|
7492 |
|
7493 |
-
#: wpuf.php:
|
7494 |
msgid "Update WP User Frontend Pro NOW"
|
7495 |
msgstr ""
|
7496 |
|
7497 |
-
#: wpuf.php:
|
7498 |
msgid "Character limit reached"
|
7499 |
msgstr ""
|
7500 |
|
7501 |
-
#: wpuf.php:
|
7502 |
msgid "Minimum character required "
|
7503 |
msgstr ""
|
7504 |
|
7505 |
-
#: wpuf.php:
|
7506 |
msgid "Minimum word required "
|
7507 |
msgstr ""
|
7508 |
|
7509 |
-
#: wpuf.php:
|
7510 |
msgid "Please Cancel Your Currently Active Pack first!"
|
7511 |
msgstr ""
|
7512 |
|
7513 |
-
#: wpuf.php:
|
7514 |
msgid "Error: Nonce verification failed"
|
7515 |
msgstr ""
|
7516 |
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP User Frontend 3.5.29\n"
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2022-09-15 12:06:37+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
178 |
#: includes/fields/class-abstract-fields.php:468
|
179 |
#: includes/fields/class-field-checkbox.php:74
|
180 |
#: includes/fields/class-field-radio.php:83 includes/free/form-element.php:499
|
181 |
+
#: wpuf.php:717
|
182 |
msgid "Yes"
|
183 |
msgstr ""
|
184 |
|
193 |
#: includes/fields/class-abstract-fields.php:469
|
194 |
#: includes/fields/class-field-checkbox.php:75
|
195 |
#: includes/fields/class-field-radio.php:84 includes/free/form-element.php:500
|
196 |
+
#: wpuf.php:718
|
197 |
msgid "No"
|
198 |
msgstr ""
|
199 |
|
383 |
|
384 |
#: admin/class-tools.php:43 admin/class-tools.php:106
|
385 |
#: admin/post-forms-list-table.php:43 class/transactions-list-table.php:95
|
386 |
+
#: includes/class-list-table-subscribers.php:136 wpuf-functions.php:3471
|
387 |
msgid "All"
|
388 |
msgstr ""
|
389 |
|
610 |
msgstr ""
|
611 |
|
612 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:283
|
613 |
+
#: admin/posting.php:73 class/asset-loader.php:56 wpuf.php:738
|
614 |
msgid "Yes, delete it"
|
615 |
msgstr ""
|
616 |
|
617 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:284
|
618 |
+
#: admin/posting.php:74 class/asset-loader.php:57 wpuf.php:739
|
619 |
msgid "No, cancel it"
|
620 |
msgstr ""
|
621 |
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: admin/html/whats-new.php:8
|
1440 |
+
msgid "Short-code encryption updated for registration page"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: admin/html/whats-new.php:18
|
1444 |
msgid "Updated compatibility with the latest version of WordPress 6.0"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: admin/html/whats-new.php:22
|
1448 |
msgid "Improved some backend implementations"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: admin/html/whats-new.php:32
|
1452 |
msgid "Email template enhanced for after activation"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: admin/html/whats-new.php:36
|
1456 |
msgid "Read only option for custom field"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: admin/html/whats-new.php:40
|
1460 |
msgid "Editor toolbar exclude option enhanced"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: admin/html/whats-new.php:44
|
1464 |
msgid "Preview option enhanced for user profile"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: admin/html/whats-new.php:48
|
1468 |
msgid "Meta key enhanced for user email notification"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: admin/html/whats-new.php:52
|
1472 |
msgid "Global option for disable post edit on account"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: admin/html/whats-new.php:56
|
1476 |
msgid "Filter for conditional logic for fields added"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: admin/html/whats-new.php:60
|
1480 |
msgid "PHP 8 compatibility handled"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: admin/html/whats-new.php:64
|
1484 |
msgid "Address / Billing address inconsistency handled"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: admin/html/whats-new.php:68
|
1488 |
msgid "Content restriction several issue fixed"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: admin/html/whats-new.php:72
|
1492 |
msgid "Tax calculation properly handled for all areas"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: admin/html/whats-new.php:76
|
1496 |
msgid "Validation added for invalid email and URL formats"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: admin/html/whats-new.php:80
|
1500 |
msgid "Special character password handled for login"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: admin/html/whats-new.php:84
|
1504 |
msgid "Reset password handled for sidebar widget"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: admin/html/whats-new.php:88
|
1508 |
msgid "Required google map issues handled"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: admin/html/whats-new.php:92
|
1512 |
msgid "Translation related issue handled for admin menu"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: admin/html/whats-new.php:96
|
1516 |
msgid "Label & query enhanced for transaction table"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: admin/html/whats-new.php:100
|
1520 |
msgid "Template override for child theme fixed"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: admin/html/whats-new.php:104
|
1524 |
msgid "Custom field modal handled for registration form"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: admin/html/whats-new.php:108
|
1528 |
msgid "Redundant CSS issues handled"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: admin/html/whats-new.php:112
|
1532 |
msgid "Address field inconsistency fixed"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: admin/html/whats-new.php:116
|
1536 |
msgid "Plugin page spin loading issue handled"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: admin/html/whats-new.php:120
|
1540 |
msgid "Warning on exit for draft post fixed"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: admin/html/whats-new.php:124
|
1544 |
msgid "Unlimited expire on admin user profile handled"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: admin/html/whats-new.php:128
|
1548 |
msgid "No value checkbox issue handled"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: admin/html/whats-new.php:132
|
1552 |
msgid "Tag search security Vulnerability handled"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: admin/html/whats-new.php:136
|
1556 |
msgid "Multi dropdown field error handled"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: admin/html/whats-new.php:147
|
1560 |
msgid "Promotion notice enhanced through api"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: admin/html/whats-new.php:158
|
1564 |
msgid "Security Vulnerability fixed"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: admin/html/whats-new.php:169
|
1568 |
msgid "Featured item for subscriber"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: admin/html/whats-new.php:173
|
1572 |
msgid "Warning added for unsaved form data on frontend"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: admin/html/whats-new.php:177
|
1576 |
msgid "Settings page search implemented"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: admin/html/whats-new.php:181
|
1580 |
msgid "Editor added for registration form email template"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: admin/html/whats-new.php:185
|
1584 |
msgid "Fallback pay per post not working with when draft enabled"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: admin/html/whats-new.php:189
|
1588 |
msgid "User Dashboard responsive issues fixed"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: admin/html/whats-new.php:193
|
1592 |
msgid "Showing wrong license expire message handled"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: admin/html/whats-new.php:197
|
1596 |
msgid "Remove expire cron handled for once daily"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: admin/html/whats-new.php:201
|
1600 |
msgid "Billing address validation handled"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: admin/html/whats-new.php:205
|
1604 |
msgid "Promotion notice restricted for WPUF menu"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: admin/html/whats-new.php:216
|
1608 |
msgid "reCaptcha issue with other plugin handled"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: admin/html/whats-new.php:220
|
1612 |
msgid "Multiple post type for wpuf dashboard not working fixed"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: admin/html/whats-new.php:224
|
1616 |
msgid "Billing address ajax request issue handled"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: admin/html/whats-new.php:228
|
1620 |
msgid "Halloween promotion notice added"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: admin/html/whats-new.php:239
|
1624 |
msgid "Content restriction for minimum, maximum value enhanced"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: admin/html/whats-new.php:243
|
1628 |
msgid "New option for redirection after pay per post payment in form setting"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: admin/html/whats-new.php:247
|
1632 |
msgid "Controller added for various email notification"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: admin/html/whats-new.php:251
|
1636 |
msgid "Placeholder added for unauth message option"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: admin/html/whats-new.php:255
|
1640 |
msgid "Subscription Post expiration option change to input field"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: admin/html/whats-new.php:259
|
1644 |
msgid "Content restriction message translatable"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: admin/html/whats-new.php:263
|
1648 |
msgid "ACF integration inconsistency handled"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: admin/html/whats-new.php:267
|
1652 |
msgid "Enable payment checkbox handled for child option"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: admin/html/whats-new.php:271
|
1656 |
msgid "Broken asset link handled for custom field popup"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: admin/html/whats-new.php:275
|
1660 |
msgid "Rollback inconsistency for CPT handled"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: admin/html/whats-new.php:279
|
1664 |
msgid "Login form loaded after resetting password"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: admin/html/whats-new.php:283
|
1668 |
msgid "Billing address inconsistency handled"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: admin/html/whats-new.php:287
|
1672 |
msgid "Form duplication on creation handled"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: admin/html/whats-new.php:291
|
1676 |
msgid "Field Dragging inconsistency fixed"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: admin/html/whats-new.php:302
|
1680 |
msgid "Google Map field enhanced along with acf google map"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: admin/html/whats-new.php:306
|
1684 |
msgid "Filter added for dashboard account menu"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: admin/html/whats-new.php:310
|
1688 |
msgid "Fallback Pay Per Post inconsistency handled"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: admin/html/whats-new.php:314
|
1692 |
msgid "Google map search field not showing"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: admin/html/whats-new.php:318
|
1696 |
msgid "Form preview page inconsistency with builder"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: admin/html/whats-new.php:322
|
1700 |
msgid "Category not showing as hierarchy"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: admin/html/whats-new.php:326
|
1704 |
msgid "TOC field randering issue with registration form"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: admin/html/whats-new.php:330
|
1708 |
msgid "Custom plupload filter inconsistency with file upload handled"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: admin/html/whats-new.php:334
|
1712 |
msgid "Guest Pay Per Post inconsistency handled"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: admin/html/whats-new.php:338
|
1716 |
msgid "Responsive and font issue handled"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: admin/html/whats-new.php:349
|
1720 |
msgid "Preview page added for post form and registration form"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: admin/html/whats-new.php:353
|
1724 |
msgid "Post types menu on account page added"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: admin/html/whats-new.php:357
|
1728 |
msgid "Dashboard shortcode attributes enhanced"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: admin/html/whats-new.php:361
|
1732 |
msgid "Account page post type list new design"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: admin/html/whats-new.php:365
|
1736 |
msgid "Payment page restricted from direct unauthenticated access"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: admin/html/whats-new.php:369
|
1740 |
msgid "Timepicker conflict with dokan handled"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: admin/html/whats-new.php:373
|
1744 |
msgid "Trial inconsistency with paypal fixed"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: admin/html/whats-new.php:377
|
1748 |
msgid "Subscription does not cancel with paypal due to profile missing id"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: admin/html/whats-new.php:381
|
1752 |
msgid "Subscription email notification inconsistency fixed"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: admin/html/whats-new.php:385
|
1756 |
msgid "Various issues on payment page for non-logged in user handled"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: admin/html/whats-new.php:389
|
1760 |
msgid "Column inner field cloning inconsistency fixed"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: admin/html/whats-new.php:393
|
1764 |
msgid "Popup z-index changed due to other plugin z-index"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: admin/html/whats-new.php:405
|
1768 |
msgid "Added Mauritian Rupee for currency"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: admin/html/whats-new.php:409
|
1772 |
msgid "Added eid promotional offer notice"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: admin/html/whats-new.php:413
|
1776 |
msgid "Multiple google map validation for same form"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: admin/html/whats-new.php:417
|
1780 |
msgid "Various issues on verification, autologin payments & address field"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: admin/html/whats-new.php:421
|
1784 |
msgid "Docs update for file & attachments feature which is pro only"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: admin/html/whats-new.php:432
|
1788 |
msgid "Overflow footer on form builder page"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: admin/html/whats-new.php:436
|
1792 |
msgid "WordPress 5.7 compatibility"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: admin/html/whats-new.php:440
|
1796 |
msgid "Limited time promotion for weDevs birthday"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: admin/html/whats-new.php:451
|
1800 |
msgid "Meta key will not change if label update"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: admin/html/whats-new.php:455
|
1804 |
msgid "Login redirect empty previous url"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: admin/html/whats-new.php:459
|
1808 |
msgid "Email doesnt set as username"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: admin/html/whats-new.php:463
|
1812 |
msgid "Post redirection to payment doesn't work"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: admin/html/whats-new.php:467
|
1816 |
msgid "Address field not working when used with conditional logic"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: admin/html/whats-new.php:471
|
1820 |
msgid "Ajax type category child of not working"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: admin/html/whats-new.php:475
|
1824 |
msgid "Non recurring subscription did not work"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: admin/html/whats-new.php:486
|
1828 |
msgid "Menu position has chenged due to dokan has same menu position"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: admin/html/whats-new.php:490
|
1832 |
msgid "Drag and drop not working properly for new field"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: admin/html/whats-new.php:501
|
1836 |
msgid "QR and math captcha added to pro feature list"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: admin/html/whats-new.php:505
|
1840 |
msgid "Tooltip for category navigate"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: admin/html/whats-new.php:509
|
1844 |
msgid "Understandable guest payment notice"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: admin/html/whats-new.php:513
|
1848 |
msgid "Paypal non recurring pack id does not set"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: admin/html/whats-new.php:524
|
1852 |
msgid "Once trial subscription is used, it couldn't reset"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: admin/html/whats-new.php:528
|
1856 |
msgid "Subscription cancel doesn't work"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: admin/html/whats-new.php:532
|
1860 |
msgid "The tax rate was not calculated with the total amount"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: admin/html/whats-new.php:536
|
1864 |
msgid "The width of the column field was breaking"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: admin/html/whats-new.php:540
|
1868 |
msgid "Paypal recurring payment"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: admin/html/whats-new.php:551
|
1872 |
msgid "Updated codebase to fix timezone mismatch"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: admin/html/whats-new.php:562
|
1876 |
msgid "Custom html content field's width"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: admin/html/whats-new.php:566
|
1880 |
msgid "All states of New Zealand are added"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: admin/html/whats-new.php:577
|
1884 |
msgid "Get appropriate user id when role based conditions are present"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: admin/html/whats-new.php:581
|
1888 |
msgid "Show Invalid subscription message if wrong pack id passed"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: admin/html/whats-new.php:585
|
1892 |
msgid "URL field new window not working"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: admin/html/whats-new.php:589
|
1896 |
msgid "Option label not working when & use"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: admin/html/whats-new.php:593
|
1900 |
msgid "Ajax type category not showing on edit"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: admin/html/whats-new.php:597
|
1904 |
msgid "Multiple file image can't select"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: admin/html/whats-new.php:601
|
1908 |
msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: admin/html/whats-new.php:605
|
1912 |
msgid "Conflict image field with acf image field"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: admin/html/whats-new.php:609
|
1916 |
msgid "Missing Auckland State for New Zealand country"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: admin/html/whats-new.php:613
|
1920 |
msgid "Added support for WooCommerce product category value replacemen"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: admin/html/whats-new.php:623
|
1924 |
msgid "Add character restriction feature"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: admin/html/whats-new.php:627
|
1928 |
msgid "Make sure post author edit link works only in frontend"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: admin/html/whats-new.php:631
|
1932 |
msgid "Inconsistency in lost password reset email message"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: admin/html/whats-new.php:635
|
1936 |
msgid "Saving custom taxonomy terms when input type is text"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: admin/html/whats-new.php:639
|
1940 |
msgid "Taxonomy field JS error in builder"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: admin/html/whats-new.php:643
|
1944 |
msgid "Showing WPUF edit link for WP default roles"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: admin/html/whats-new.php:647
|
1948 |
msgid "Upload button unresponsive issue in iOS"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: admin/html/whats-new.php:657
|
1952 |
msgid "Add post edit link for post authors in single or archive pages"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: admin/html/whats-new.php:661
|
1956 |
msgid "Enhance post delete message"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: admin/html/whats-new.php:665
|
1960 |
msgid "Refactor control buttons visibility in form builder"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: admin/html/whats-new.php:669
|
1964 |
msgid "Add missing colons after field label"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: admin/html/whats-new.php:673
|
1968 |
msgid "Post edit map capability condition"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: admin/html/whats-new.php:677
|
1972 |
msgid "Role based permission for accessing a post form"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: admin/html/whats-new.php:681
|
1976 |
msgid "Section-break field alignment"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: admin/html/whats-new.php:685
|
1980 |
msgid "Pay per post doesn't work if subscription pack is activated"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: admin/html/whats-new.php:689
|
1984 |
msgid "Mime type for uploading JSON files"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: admin/html/whats-new.php:693
|
1988 |
msgid "File upload with same file name"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: admin/html/whats-new.php:697
|
1992 |
msgid "Post preview missing fields"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: admin/html/whats-new.php:701
|
1996 |
msgid "Illigal variable declartion"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: admin/html/whats-new.php:705
|
2000 |
msgid "Featured image updating issue"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: admin/html/whats-new.php:709
|
2004 |
msgid "Conflict with Phlox theme"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: admin/html/whats-new.php:713
|
2008 |
msgid "Textarea custom field data sanitization"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: admin/html/whats-new.php:717
|
2012 |
msgid "exclude_type warning in wpuf_category_checklist"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: admin/html/whats-new.php:721
|
2016 |
msgid "Category field not showing all child categories for selection type child of"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: admin/html/whats-new.php:725
|
2020 |
msgid "Conflict between image and file upload custom fields"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: admin/html/whats-new.php:729
|
2024 |
msgid "Login url when login page is not set"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: admin/html/whats-new.php:739
|
2028 |
msgid ""
|
2029 |
"Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
|
2030 |
"their official names"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: admin/html/whats-new.php:743
|
2034 |
msgid "Fix condition to use default avatar"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: admin/html/whats-new.php:747
|
2038 |
msgid "Make Email and URL fields clickable"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: admin/html/whats-new.php:751
|
2042 |
msgid "Fix redirect after user login"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: admin/html/whats-new.php:755
|
2046 |
msgid "Sanitize textarea field data"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: admin/html/whats-new.php:759
|
2050 |
msgid ""
|
2051 |
"Fix missing colon to email, URL, text and textarea labels when renders "
|
2052 |
"their data"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: admin/html/whats-new.php:763
|
2056 |
msgid "Prevent showing empty labels for fields that have render_field_data method"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: admin/html/whats-new.php:773
|
2060 |
msgid "Add Namibian Dollar in currency list"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: admin/html/whats-new.php:777
|
2064 |
msgid "Add sync values option for option data fields"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: admin/html/whats-new.php:781
|
2068 |
msgid "Allow uploading image that having filesize meets php ini settings"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: admin/html/whats-new.php:785
|
2072 |
msgid "Limit the selection of one image at a time"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: admin/html/whats-new.php:789
|
2076 |
msgid "Use file name and size to generate hash to prevent duplicant image upload"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: admin/html/whats-new.php:793
|
2080 |
msgid "Sanitize text and textarea field data"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: admin/html/whats-new.php:797
|
2084 |
msgid ""
|
2085 |
"Show label instead of values for radio, checkbox, dropdown and multiselect "
|
2086 |
"data"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: admin/html/whats-new.php:801
|
2090 |
msgid "Saving custom taxonomies for type text input"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: admin/html/whats-new.php:805
|
2094 |
msgid "Admin settings link for recaptcha helper text"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: admin/html/whats-new.php:809
|
2098 |
msgid "Undefined name property for Custom HTML fields"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: admin/html/whats-new.php:813
|
2102 |
msgid "Delete attachment process"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: admin/html/whats-new.php:817
|
2106 |
msgid "Missing billing address in invoice PDF"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: admin/html/whats-new.php:821
|
2110 |
msgid "Showing country field value in frontend post content"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: admin/html/whats-new.php:825
|
2114 |
msgid "Avatar size display not complying with admin settings size"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: admin/html/whats-new.php:829
|
2118 |
msgid "Display default avatars on admin settings discussion page"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: admin/html/whats-new.php:833
|
2122 |
msgid "Redirect to subscription page at registration"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: admin/html/whats-new.php:837
|
2126 |
msgid "Error notice regarding registration page redirect"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: admin/html/whats-new.php:841
|
2130 |
msgid "Escaping html in registration errors"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: admin/html/whats-new.php:845
|
2134 |
msgid "Default login redirect link"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: admin/html/whats-new.php:849
|
2138 |
msgid "Implementing default WP login page override option"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: admin/html/whats-new.php:853
|
2142 |
msgid "Transparent background of autosuggestion dropdown"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: admin/html/whats-new.php:863
|
2146 |
msgid "Import forms system"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: admin/html/whats-new.php:867
|
2150 |
msgid "Password reset system"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: admin/html/whats-new.php:871
|
2154 |
msgid "Updated url validation regex to support modern tlds"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: admin/html/whats-new.php:875
|
2158 |
msgid "Export WPUF forms individually from admin tools page"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: admin/html/whats-new.php:879
|
2162 |
msgid "Subscription cycle label translation issue"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: admin/html/whats-new.php:883
|
2166 |
msgid "ACF integration for checkbox fields"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: admin/html/whats-new.php:887
|
2170 |
msgid "Illegal string offset warning while updating settings"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: admin/html/whats-new.php:891
|
2174 |
msgid "Conditional logic for Section Break field"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: admin/html/whats-new.php:895
|
2178 |
msgid "Subscriptions cannot be deleted from backend"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: admin/html/whats-new.php:899
|
2182 |
msgid "A regression regarding saving checkbox data"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: admin/html/whats-new.php:903
|
2186 |
msgid "Default value of multi-select fields is not showing"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: admin/html/whats-new.php:913
|
2190 |
msgid "Hide post edit option when subscription is expired"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: admin/html/whats-new.php:915
|
2194 |
msgid "Hide post edit option from users whose subscription pack is expired."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: admin/html/whats-new.php:918
|
2198 |
msgid "Check files to prevent duplicity in media upload"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: admin/html/whats-new.php:920
|
2202 |
msgid ""
|
2203 |
"A simple measure has been taken to prevent maliciously flooding the site by "
|
2204 |
"uploading same file multiple times. Though this won't work with already "
|
2205 |
"uploaded medias."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: admin/html/whats-new.php:923
|
2209 |
msgid "Refactor address fields in Account section"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: admin/html/whats-new.php:925
|
2213 |
msgid "Address edit section from Account section has been rewritten to improve UX."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: admin/html/whats-new.php:928
|
2217 |
msgid "Update Paypal payment gateway"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: admin/html/whats-new.php:930
|
2221 |
msgid "Paypal payment gateway has seen some improvements."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: admin/html/whats-new.php:933
|
2225 |
msgid "Default Category selection improvements"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: admin/html/whats-new.php:935
|
2229 |
msgid ""
|
2230 |
"An intuitive way of selecting default category of a selected post type has "
|
2231 |
"been introduced."
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: admin/html/whats-new.php:938
|
2235 |
msgid "Compatibility issue with ACF date time field"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: admin/html/whats-new.php:940
|
2239 |
msgid "A Compatibility issue with ACF date time field has been addressed."
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: admin/html/whats-new.php:943
|
2243 |
msgid "Media title, caption & description not saving"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: admin/html/whats-new.php:945
|
2247 |
msgid ""
|
2248 |
"Media title, caption & description were not saving from frontend. They will "
|
2249 |
"now."
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: admin/html/whats-new.php:948
|
2253 |
msgid ""
|
2254 |
"The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
|
2255 |
"metabox"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: admin/html/whats-new.php:950
|
2259 |
msgid ""
|
2260 |
"A workaround has been introduced to save The Events Calendar Venue and "
|
2261 |
"Organizer fields properly from WPUF Custom Fields metabox."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: admin/html/whats-new.php:953
|
2265 |
msgid "Checkbox data not saving from WPUF Custom Fields metabox"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: admin/html/whats-new.php:955
|
2269 |
msgid ""
|
2270 |
"Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
|
2271 |
"fixed."
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: admin/html/whats-new.php:958
|
2275 |
msgid "Multi-column Repeater field data saving issue"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: admin/html/whats-new.php:960
|
2279 |
msgid ""
|
2280 |
"Multi-column Repeater field data from a form was not saving. It has been "
|
2281 |
"fixed."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: admin/html/whats-new.php:963
|
2285 |
msgid "Multistep form conflict with Elementor"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: admin/html/whats-new.php:965
|
2289 |
msgid "Multistep form had a conflict with Elementor. It has been fixed."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: admin/html/whats-new.php:968
|
2293 |
msgid "Multiple images showing issue in frontend"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: admin/html/whats-new.php:970
|
2297 |
msgid "Multiple images in a post were not showing in frontend. Now they will."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: admin/html/whats-new.php:979
|
2301 |
msgid "Nonce not verify on login"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: admin/html/whats-new.php:981
|
2305 |
msgid "Return of function wp_verify_nonce() was ignored."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: admin/html/whats-new.php:990
|
2309 |
msgid "Option to set which tab shows as active on the account page"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: admin/html/whats-new.php:992
|
2313 |
msgid ""
|
2314 |
"Option to set which tab shows as active on the account page. To configure "
|
2315 |
"this setting navigate to wp-admin->User Frontend->Settings->My "
|
2316 |
"Account->Active Tab "
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: admin/html/whats-new.php:995
|
2320 |
msgid "Unlock option was unavailable after the post being locked"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: admin/html/whats-new.php:997
|
2324 |
msgid "Unlock option was unavailable after the post being locked."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: admin/html/whats-new.php:1000
|
2328 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: admin/html/whats-new.php:1002
|
2332 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: admin/html/whats-new.php:1005
|
2336 |
msgid "Sending admin payment received email twice"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: admin/html/whats-new.php:1007
|
2340 |
msgid ""
|
2341 |
"After processing payment admin & user was receiving payment received email "
|
2342 |
"twice."
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: admin/html/whats-new.php:1010
|
2346 |
msgid ""
|
2347 |
"Add shortcode support to display post information in the Post Expiration "
|
2348 |
"Message"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: admin/html/whats-new.php:1012
|
2352 |
msgid ""
|
2353 |
"Add shortcode support to display post information in the Post Expiration "
|
2354 |
"Message. You can use: <strong>{post_author} {post_url} {blogname} "
|
2355 |
"{post_title} {post_status}</strong>"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: admin/html/whats-new.php:1015
|
2359 |
msgid "Add optin on the setup wizard"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: admin/html/whats-new.php:1017
|
2363 |
msgid ""
|
2364 |
"Added optin on the setup wizard, admin can choose whether he/she wants to "
|
2365 |
"share server environment details (php, mysql, server, WordPress versions), "
|
2367 |
"name and url, admin name and email address. No sensitive data is tracked"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: admin/html/whats-new.php:1026
|
2371 |
msgid "Post Owner problem"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: admin/html/whats-new.php:1028
|
2375 |
msgid ""
|
2376 |
"Posts were not assigned to the selected default post owner, this issue has "
|
2377 |
"been fixed."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: admin/html/whats-new.php:1031
|
2381 |
msgid "Google reCaptcha was not working"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: admin/html/whats-new.php:1033
|
2385 |
msgid ""
|
2386 |
"Google reCaptcha was not working, users could submit the form without "
|
2387 |
"reCaptcha validation."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: admin/html/whats-new.php:1042
|
2391 |
msgid "Added column field"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: admin/html/whats-new.php:1047
|
2395 |
msgid "Unable to render the events on the front-end dashboard"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: admin/html/whats-new.php:1049
|
2399 |
msgid ""
|
2400 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
2401 |
"get it fixed in this version."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: admin/html/whats-new.php:1052
|
2405 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: admin/html/whats-new.php:1054
|
2409 |
msgid ""
|
2410 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
2411 |
"fixed."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: admin/html/whats-new.php:1057
|
2415 |
msgid "Text input field for taxonomies not working"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: admin/html/whats-new.php:1059
|
2419 |
msgid ""
|
2420 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
2421 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: admin/html/whats-new.php:1062
|
2425 |
msgid ""
|
2426 |
"In radio and checkbox field use conditional logic that value does not save "
|
2427 |
"in database"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: admin/html/whats-new.php:1064
|
2431 |
msgid ""
|
2432 |
"The selected value of radio and checkbox field were not showing while "
|
2433 |
"editing posts from the backend or frontend, you can see the selected value "
|
2434 |
"in this version."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: admin/html/whats-new.php:1067
|
2438 |
msgid "The args param not working with get_avatar filter"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: admin/html/whats-new.php:1069
|
2442 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: admin/html/whats-new.php:1072
|
2446 |
msgid "The item in ajax taxonomy field was not selected"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: admin/html/whats-new.php:1074
|
2450 |
msgid ""
|
2451 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
2452 |
"showing in the backend and frontend which have been fixed."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: admin/html/whats-new.php:1083
|
2456 |
msgid "Unable to send new user registration email"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: admin/html/whats-new.php:1085
|
2460 |
msgid ""
|
2461 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
2462 |
"to send the new user registration email."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: admin/html/whats-new.php:1088
|
2466 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: admin/html/whats-new.php:1090
|
2470 |
msgid ""
|
2471 |
"With the latest version of WordPress the gutenberg block of WP User "
|
2472 |
"Frontend were not working. In this version, you will get it fixed."
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: admin/html/whats-new.php:1093
|
2476 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: admin/html/whats-new.php:1095
|
2480 |
msgid ""
|
2481 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
2482 |
"[wpuf dashboard]"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: admin/html/whats-new.php:1098
|
2486 |
msgid "Retain default when determining whether to display the admin bar"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: admin/html/whats-new.php:1100
|
2490 |
msgid ""
|
2491 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
2492 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
2496 |
"frontend."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: admin/html/whats-new.php:1103
|
2500 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: admin/html/whats-new.php:1105
|
2504 |
msgid ""
|
2505 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
2506 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
2508 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: admin/html/whats-new.php:1108
|
2512 |
msgid "Product form was unable to show the single gallery image"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: admin/html/whats-new.php:1110
|
2516 |
msgid ""
|
2517 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
2518 |
"product form, that image were not showing on the frontend."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: admin/html/whats-new.php:1119
|
2522 |
msgid "WooCommerce gallery images not getting saved"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: admin/html/whats-new.php:1121
|
2526 |
msgid ""
|
2527 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
2528 |
"working. You will get it fixed in this version."
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: admin/html/whats-new.php:1130
|
2532 |
msgid "The Events Calendar Integration Form"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: admin/html/whats-new.php:1132
|
2536 |
msgid ""
|
2537 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
2538 |
"has a one click pre-build event form that has been integrated with The "
|
2539 |
"Events Calendar plugin"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: admin/html/whats-new.php:1135
|
2543 |
msgid "Post Submission Facility From Account Page"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: admin/html/whats-new.php:1137
|
2547 |
msgid ""
|
2548 |
"On the frontend account page, added a new menu item named <b>Submit "
|
2549 |
"Post</b>. Now admin can allow users to submit post from their default "
|
2552 |
"you can assign any post form that will use to submit posts."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: admin/html/whats-new.php:1140
|
2556 |
msgid "Login/Lost Password Link Under Registration Form"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: admin/html/whats-new.php:1142
|
2560 |
msgid "Added Login/Lost Password link under registration form"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: admin/html/whats-new.php:1151
|
2564 |
msgid "Added drag and drop image ordering on image upload"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: admin/html/whats-new.php:1153
|
2568 |
msgid ""
|
2569 |
"Now frontend users can drag & drop the images/files to change the order "
|
2570 |
"while uploading."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: admin/html/whats-new.php:1156
|
2574 |
msgid "Added reCAPTCHA field in login form"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: admin/html/whats-new.php:1158
|
2578 |
msgid ""
|
2579 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
2580 |
"related settings from <strong>User Frontend > Settings > "
|
2581 |
"Login/Registration</strong>"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: admin/html/whats-new.php:1161
|
2585 |
msgid "Added preview option in forms"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: admin/html/whats-new.php:1163
|
2589 |
msgid ""
|
2590 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
2591 |
"Form</strong> button, admin can take a quick look of the form without using "
|
2592 |
"shortcode"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: admin/html/whats-new.php:1166
|
2596 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: admin/html/whats-new.php:1168
|
2600 |
msgid ""
|
2601 |
"The upload button will not be hidden until the user selects max number of "
|
2602 |
"files "
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: admin/html/whats-new.php:1171
|
2606 |
msgid "Added form limit notice before form submission"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: admin/html/whats-new.php:1173
|
2610 |
msgid ""
|
2611 |
"Limit notice message was showing after submission, now it is showing when "
|
2612 |
"rendering the form"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: admin/html/whats-new.php:1176
|
2616 |
msgid "Fixed: default post category not saving"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: admin/html/whats-new.php:1178
|
2620 |
msgid ""
|
2621 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
2622 |
"category options were not saving. Now, it's fixed."
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: admin/html/whats-new.php:1181
|
2626 |
msgid ""
|
2627 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
2628 |
"properly"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: admin/html/whats-new.php:1183
|
2632 |
msgid ""
|
2633 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
2634 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: admin/html/whats-new.php:1192
|
2638 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: admin/html/whats-new.php:1194
|
2642 |
msgid ""
|
2643 |
"If you are using other language than English. Please <b>rename</b> your "
|
2644 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
2645 |
"change was made to support translations from translate.wordpress.org"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: admin/html/whats-new.php:1197
|
2649 |
msgid "Added WP User Frontend Data export and erase functionality."
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: admin/html/whats-new.php:1199
|
2653 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: admin/html/whats-new.php:1202
|
2657 |
msgid "Added billing address customizer."
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: admin/html/whats-new.php:1204
|
2661 |
msgid "Added customizer options for billing address in payment page."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: admin/html/whats-new.php:1207
|
2665 |
msgid "Make the payment page responsive."
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: admin/html/whats-new.php:1209
|
2669 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: admin/html/whats-new.php:1212
|
2673 |
msgid "Fixed image upload issue in Safari."
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: admin/html/whats-new.php:1214
|
2677 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: admin/html/whats-new.php:1217
|
2681 |
msgid "Post update issue after updating or removing post images."
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: admin/html/whats-new.php:1219
|
2685 |
msgid ""
|
2686 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
2687 |
"now."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: admin/html/whats-new.php:1228
|
2691 |
msgid "Allow overriding form input styles using theme styling."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: admin/html/whats-new.php:1230
|
2695 |
msgid "Overriding form input styles using theme style is now possible."
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: admin/html/whats-new.php:1233
|
2699 |
msgid "Fixed Auto Login after registration."
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: admin/html/whats-new.php:1235
|
2703 |
msgid "Auto Login after registration was not working is fixed now."
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: admin/html/whats-new.php:1238
|
2707 |
msgid "Fixed fallback cost calculation"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: admin/html/whats-new.php:1240
|
2711 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: admin/html/whats-new.php:1243
|
2715 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: admin/html/whats-new.php:1245
|
2719 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: admin/html/whats-new.php:1248
|
2723 |
msgid "Show Free pack users in subscribers list."
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: admin/html/whats-new.php:1250
|
2727 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: admin/html/whats-new.php:1259
|
2731 |
msgid "WP User Frontend Guten Block is added"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: admin/html/whats-new.php:1261
|
2735 |
msgid ""
|
2736 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
2737 |
"preview of the form. "
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: admin/html/whats-new.php:1264
|
2741 |
msgid "Advanced Custom Fields plugin compatibility"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: admin/html/whats-new.php:1266
|
2745 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: admin/html/whats-new.php:1269
|
2749 |
msgid "Taxonomy Terms not showing for custom post types"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: admin/html/whats-new.php:1271
|
2753 |
msgid ""
|
2754 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
2755 |
"within Form Settings and Dashboard Post Listing"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: admin/html/whats-new.php:1274
|
2759 |
msgid "Various other code optimizations"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: admin/html/whats-new.php:1276 admin/html/whats-new.php:1333
|
2763 |
msgid "Code structure organization and optimization for better performance"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: admin/html/whats-new.php:1285
|
2767 |
msgid "WoooCommerce billing address Sync"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: admin/html/whats-new.php:1287
|
2771 |
msgid ""
|
2772 |
"If an existing customer has previously set his billing address, that will "
|
2773 |
"be imported into WPUF Billing address "
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: admin/html/whats-new.php:1290
|
2777 |
msgid "Trial subscription message not showing properly"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: admin/html/whats-new.php:1292
|
2781 |
msgid "Subscriptions with Trial now shows trial notices"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: admin/html/whats-new.php:1295
|
2785 |
msgid "Reset email Key not working"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: admin/html/whats-new.php:1297
|
2789 |
msgid "Reset Email key was not working in some cases"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: admin/html/whats-new.php:1300
|
2793 |
msgid "Post count not showing on the frontend dashboard"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: admin/html/whats-new.php:1302
|
2797 |
msgid ""
|
2798 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
2799 |
"now fixed and shows count for each post type"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: admin/html/whats-new.php:1305
|
2803 |
msgid "Login Redirect showing blank page is fixed"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: admin/html/whats-new.php:1307
|
2807 |
msgid ""
|
2808 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
2809 |
"redirecting to blank page for users who hit login page directly"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: admin/html/whats-new.php:1316
|
2813 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: admin/html/whats-new.php:1318
|
2817 |
msgid ""
|
2818 |
"You can choose Previous Page as Login Redirect page settings now to "
|
2819 |
"redirect users to the page from which they went for Login. "
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: admin/html/whats-new.php:1321
|
2823 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: admin/html/whats-new.php:1323
|
2827 |
msgid ""
|
2828 |
"For some clients emails were not rendering the HTML links properly, this is "
|
2829 |
"now fixed"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: admin/html/whats-new.php:1326
|
2833 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: admin/html/whats-new.php:1328
|
2837 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: admin/html/whats-new.php:1331
|
2841 |
msgid "Various other code improvements"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: admin/html/whats-new.php:1342
|
2845 |
msgid "Dashboard Post Listing now supports multiple post types"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: admin/html/whats-new.php:1344
|
2849 |
msgid ""
|
2850 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
2851 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: admin/html/whats-new.php:1347
|
2855 |
msgid "Added Login Redirect Settings"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: admin/html/whats-new.php:1349
|
2859 |
msgid ""
|
2860 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
2861 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
2862 |
"redirected to this page after login."
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: admin/html/whats-new.php:1352
|
2866 |
msgid "Image Upload field button text can be changed"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: admin/html/whats-new.php:1354
|
2870 |
msgid ""
|
2871 |
"The upload button text can now be changed for image upload fields which "
|
2872 |
"defaults to \"Select Image\" if not set. "
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: admin/html/whats-new.php:1357
|
2876 |
msgid "Multi Step Form styles made compatible with more themes"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
#: admin/html/whats-new.php:1359
|
2880 |
msgid "Multi Step form can now be styled more easily with other themes "
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: admin/html/whats-new.php:1362
|
2884 |
msgid "Required field condition for google map not working is fixed"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: admin/html/whats-new.php:1364
|
2888 |
msgid ""
|
2889 |
"If Google Map field was set as required users were able to submit form "
|
2890 |
"without changing the default value."
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: admin/html/whats-new.php:1373
|
2894 |
msgid "Admin form builder is now fully responsive."
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: admin/html/whats-new.php:1375
|
2898 |
msgid ""
|
2899 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
2900 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
2901 |
"the go."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: admin/html/whats-new.php:1378
|
2905 |
msgid "Added color schemes for creating attractive form layouts."
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: admin/html/whats-new.php:1380
|
2909 |
msgid ""
|
2910 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
2911 |
"from each form's new display settings."
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: admin/html/whats-new.php:1383
|
2915 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: admin/html/whats-new.php:1385
|
2919 |
msgid ""
|
2920 |
"Free subscription packs now can only be purchased once and the limit "
|
2921 |
"applies properly"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: admin/html/whats-new.php:1388
|
2925 |
msgid "Various other bug fixes and improvements were made "
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: admin/html/whats-new.php:1390
|
2929 |
msgid "Please see the change log to see full details."
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: admin/html/whats-new.php:1399
|
2933 |
msgid "Added upgrade function for default category"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: admin/html/whats-new.php:1401
|
2937 |
msgid "Upgrader added to upgrade previously set default post category."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: admin/html/whats-new.php:1404
|
2941 |
msgid "Subscription pack cannot be canceled"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: admin/html/whats-new.php:1406
|
2945 |
msgid ""
|
2946 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
2947 |
"in subscription details section."
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: admin/html/whats-new.php:1409
|
2951 |
msgid "page installer admin notice logic issue"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: admin/html/whats-new.php:1411
|
2955 |
msgid ""
|
2956 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
2957 |
"default value not set."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: admin/html/whats-new.php:1421
|
2961 |
msgid "Setup Wizard"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: admin/html/whats-new.php:1423
|
2965 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: admin/html/whats-new.php:1427
|
2969 |
msgid "Multi-select Category"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: admin/html/whats-new.php:1429
|
2973 |
msgid "Add multi-select to default category in post form settings."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: admin/html/whats-new.php:1433
|
2977 |
msgid "Select Text option for Taxonomy"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: admin/html/whats-new.php:1435
|
2981 |
msgid ""
|
2982 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
2983 |
"with empty value as first option for Taxonomy dropdown."
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: admin/html/whats-new.php:1438
|
2987 |
msgid "Taxonomy Checkbox Inline"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: admin/html/whats-new.php:1440
|
2991 |
msgid ""
|
2992 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
2993 |
"Taxonomy checkbox fields inline."
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: admin/html/whats-new.php:1450
|
2997 |
msgid "Manage schedule for form submission"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: admin/html/whats-new.php:1452
|
3001 |
msgid ""
|
3002 |
"Do not accept form submission if the current date is not between the date "
|
3003 |
"range of the schedule."
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: admin/html/whats-new.php:1456
|
3007 |
msgid "Restrict form submission based on the user roles"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: admin/html/whats-new.php:1458
|
3011 |
msgid ""
|
3012 |
"Restrict form submission based on the user roles. Now you can manage user "
|
3013 |
"role base permission on form submission."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: admin/html/whats-new.php:1462
|
3017 |
msgid "Limit how many entries a form will accept"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: admin/html/whats-new.php:1464
|
3021 |
msgid ""
|
3022 |
"Limit how many entries a form will accept and display a custom message when "
|
3023 |
"that limit is reached."
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: admin/html/whats-new.php:1468
|
3027 |
msgid "Show/hide Admin Bar"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: admin/html/whats-new.php:1470
|
3031 |
msgid "Control the admin bar visibility based on user roles."
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: admin/html/whats-new.php:1474
|
3035 |
msgid "Ajax Login widget"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: admin/html/whats-new.php:1476
|
3039 |
msgid ""
|
3040 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
3041 |
"form do not required page loading for login."
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: admin/html/whats-new.php:1480
|
3045 |
msgid "Form submission with Captcha field"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: admin/html/whats-new.php:1482
|
3049 |
msgid "Form field validation process updated if form submits with captcha field."
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: admin/html/whats-new.php:1496
|
3053 |
msgid "What's New in WPUF?"
|
3054 |
msgstr ""
|
3055 |
|
3183 |
msgstr ""
|
3184 |
|
3185 |
#: admin/posting.php:72 class/asset-loader.php:55 class/render-form.php:1682
|
3186 |
+
#: wpuf.php:737
|
3187 |
msgid "Are you sure?"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: admin/posting.php:80 class/asset-loader.php:63 wpuf.php:748
|
3191 |
msgid "Allowed Files"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: admin/posting.php:83 class/asset-loader.php:66 wpuf.php:754
|
3195 |
msgid "Maximum number of files reached!"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: admin/posting.php:84 class/asset-loader.php:67 wpuf.php:755
|
3199 |
msgid "The file you have uploaded exceeds the file size limit. Please try again."
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: admin/posting.php:85 class/asset-loader.php:68 wpuf.php:756
|
3203 |
msgid "You have uploaded an incorrect file type. Please try again."
|
3204 |
msgstr ""
|
3205 |
|
4386 |
msgid "Import"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: class/asset-loader.php:32 wpuf.php:634
|
4390 |
msgid "is required"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: class/asset-loader.php:33 wpuf.php:635
|
4394 |
msgid "does not match"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: class/asset-loader.php:34 wpuf.php:636
|
4398 |
msgid "is not valid"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#: class/asset-loader.php:46 wpuf.php:714
|
4402 |
msgid "Please fix the errors to proceed"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: class/asset-loader.php:48 wpuf.php:721
|
4406 |
msgid "Word limit reached"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: class/asset-loader.php:49 wpuf.php:716
|
4410 |
msgid "Are you sure you want to cancel your current subscription ?"
|
4411 |
msgstr ""
|
4412 |
|
5326 |
msgstr ""
|
5327 |
|
5328 |
#: includes/class-login-widget.php:147 includes/free/class-login.php:872
|
5329 |
+
#: includes/free/class-login.php:972 includes/free/class-registration.php:302
|
5330 |
#. translators: %s: username
|
5331 |
msgid "Username: %s"
|
5332 |
msgstr ""
|
6224 |
msgid "Nonce is invalid"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
+
#: includes/free/class-login.php:436 includes/free/class-registration.php:232
|
6228 |
msgid "Username is required."
|
6229 |
msgstr ""
|
6230 |
|
6231 |
+
#: includes/free/class-login.php:442 includes/free/class-registration.php:238
|
6232 |
msgid "Password is required."
|
6233 |
msgstr ""
|
6234 |
|
6235 |
+
#: includes/free/class-login.php:464 includes/free/class-registration.php:208
|
6236 |
+
#: includes/free/class-registration.php:214
|
6237 |
+
#: includes/free/class-registration.php:220
|
6238 |
+
#: includes/free/class-registration.php:226
|
6239 |
+
#: includes/free/class-registration.php:232
|
6240 |
+
#: includes/free/class-registration.php:238
|
6241 |
+
#: includes/free/class-registration.php:244
|
6242 |
+
#: includes/free/class-registration.php:250
|
6243 |
+
#: includes/free/class-registration.php:256
|
6244 |
+
#: includes/free/class-registration.php:269
|
6245 |
msgid "Error"
|
6246 |
msgstr ""
|
6247 |
|
6248 |
+
#: includes/free/class-login.php:464 includes/free/class-registration.php:269
|
6249 |
msgid "A user could not be found with this email address."
|
6250 |
msgstr ""
|
6251 |
|
6346 |
msgid " Login "
|
6347 |
msgstr ""
|
6348 |
|
6349 |
+
#: includes/free/class-registration.php:214
|
6350 |
msgid "First name is required."
|
6351 |
msgstr ""
|
6352 |
|
6353 |
+
#: includes/free/class-registration.php:220
|
6354 |
msgid "Last name is required."
|
6355 |
msgstr ""
|
6356 |
|
6357 |
+
#: includes/free/class-registration.php:226
|
6358 |
msgid "Email is required."
|
6359 |
msgstr ""
|
6360 |
|
6361 |
+
#: includes/free/class-registration.php:244
|
6362 |
msgid "Confirm Password is required."
|
6363 |
msgstr ""
|
6364 |
|
6365 |
+
#: includes/free/class-registration.php:250
|
6366 |
msgid "Passwords are not same."
|
6367 |
msgstr ""
|
6368 |
|
6369 |
+
#: includes/free/class-registration.php:256
|
6370 |
msgid "A user with same username already exists."
|
6371 |
msgstr ""
|
6372 |
|
6373 |
+
#: includes/free/class-registration.php:300
|
6374 |
#. translators: %s: site name
|
6375 |
msgid "New user registration on your site %s:"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
+
#: includes/free/class-registration.php:304
|
6379 |
#. translators: %s: email
|
6380 |
msgid "E-mail: %s"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
+
#: includes/free/class-registration.php:310
|
6384 |
+
#: includes/free/class-registration.php:320
|
6385 |
#. translators: %s %s: site name subject
|
6386 |
msgid "[%1$s] %2$s"
|
6387 |
msgstr ""
|
6388 |
|
6389 |
+
#: includes/free/class-registration.php:312
|
6390 |
#. translators: %s: username
|
6391 |
msgid "Hi, %s"
|
6392 |
msgstr ""
|
6393 |
|
6394 |
+
#: includes/free/class-registration.php:388
|
6395 |
msgid "Subscription Page settings not set in admin settings"
|
6396 |
msgstr ""
|
6397 |
|
7457 |
msgid "Jordanian dinar"
|
7458 |
msgstr ""
|
7459 |
|
7460 |
+
#: wpuf-functions.php:3472
|
7461 |
msgid "None"
|
7462 |
msgstr ""
|
7463 |
|
7477 |
msgid "Your Post Has Been Expired"
|
7478 |
msgstr ""
|
7479 |
|
7480 |
+
#: wpuf.php:455
|
7481 |
msgid ""
|
7482 |
"<p style=\"font-size: 13px\">\n"
|
7483 |
" <strong class=\"highlight-text\" "
|
7490 |
" </p>"
|
7491 |
msgstr ""
|
7492 |
|
7493 |
+
#: wpuf.php:472
|
7494 |
msgid "Update WP User Frontend Pro Now"
|
7495 |
msgstr ""
|
7496 |
|
7497 |
+
#: wpuf.php:476
|
7498 |
msgid "Update WP User Frontend Pro NOW"
|
7499 |
msgstr ""
|
7500 |
|
7501 |
+
#: wpuf.php:719
|
7502 |
msgid "Character limit reached"
|
7503 |
msgstr ""
|
7504 |
|
7505 |
+
#: wpuf.php:720
|
7506 |
msgid "Minimum character required "
|
7507 |
msgstr ""
|
7508 |
|
7509 |
+
#: wpuf.php:722
|
7510 |
msgid "Minimum word required "
|
7511 |
msgstr ""
|
7512 |
|
7513 |
+
#: wpuf.php:730
|
7514 |
msgid "Please Cancel Your Currently Active Pack first!"
|
7515 |
msgstr ""
|
7516 |
|
7517 |
+
#: wpuf.php:901
|
7518 |
msgid "Error: Nonce verification failed"
|
7519 |
msgstr ""
|
7520 |
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: tareq1988, nizamuddinbabu, wedevs
|
|
3 |
Donate link: https://tareq.co/donate/
|
4 |
Tags: Forms, registration, profile-builder, login, membership, frontend-post
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 3.5.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -263,6 +263,10 @@ First you need to go to the dashboard, then when you click "edit", you'll be
|
|
263 |
redirected to the edit page with that post id. Then you'll see the edit post form.
|
264 |
|
265 |
== Changelog ==
|
|
|
|
|
|
|
|
|
266 |
= v3.5.28 (17 Jun, 2022) =
|
267 |
|
268 |
* Tweak - Updated compatibility with the latest version of WordPress 6.0
|
3 |
Donate link: https://tareq.co/donate/
|
4 |
Tags: Forms, registration, profile-builder, login, membership, frontend-post
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 6.0.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.5.29
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
263 |
redirected to the edit page with that post id. Then you'll see the edit post form.
|
264 |
|
265 |
== Changelog ==
|
266 |
+
v3.5.29 (15 Sep, 2022) =
|
267 |
+
|
268 |
+
* Enhancement - Short-code encryption updated for registration page
|
269 |
+
|
270 |
= v3.5.28 (17 Jun, 2022) =
|
271 |
|
272 |
* Tweak - Updated compatibility with the latest version of WordPress 6.0
|
templates/registration-form.php
CHANGED
@@ -73,7 +73,8 @@
|
|
73 |
|
74 |
<li class="wpuf-submit">
|
75 |
<input type="submit" name="wp-submit" id="wp-submit" value="<?php echo esc_attr( 'Register', 'wp-user-frontend' ); ?>" />
|
76 |
-
<input type="hidden" name="urhidden" value="
|
|
|
77 |
<input type="hidden" name="redirect_to" value="<?php echo esc_attr( wpuf()->registration->get_posted_value( 'redirect_to' ) ); ?>" />
|
78 |
<input type="hidden" name="wpuf_registration" value="true" />
|
79 |
<input type="hidden" name="action" value="registration" />
|
73 |
|
74 |
<li class="wpuf-submit">
|
75 |
<input type="submit" name="wp-submit" id="wp-submit" value="<?php echo esc_attr( 'Register', 'wp-user-frontend' ); ?>" />
|
76 |
+
<input type="hidden" name="urhidden" value="<?php echo esc_attr( $userrole ); ?>" />
|
77 |
+
<input type="hidden" name="user_nonce" value="<?php echo esc_attr( $user_nonce ); ?>" />
|
78 |
<input type="hidden" name="redirect_to" value="<?php echo esc_attr( wpuf()->registration->get_posted_value( 'redirect_to' ) ); ?>" />
|
79 |
<input type="hidden" name="wpuf_registration" value="true" />
|
80 |
<input type="hidden" name="action" value="registration" />
|
wpuf-functions.php
CHANGED
@@ -3114,42 +3114,78 @@ add_filter( 'display_post_states', 'wpuf_admin_page_states', 10, 2 );
|
|
3114 |
* Encryption function for various usage
|
3115 |
*
|
3116 |
* @since 2.5.8
|
|
|
3117 |
*
|
3118 |
* @param string $id
|
|
|
3119 |
*
|
3120 |
-
* @return string
|
3121 |
*/
|
3122 |
-
function wpuf_encryption( $id ) {
|
3123 |
-
$
|
3124 |
-
$
|
|
|
3125 |
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
|
|
|
|
|
|
|
|
3130 |
|
3131 |
-
|
|
|
|
|
|
|
3132 |
}
|
3133 |
|
3134 |
/**
|
3135 |
* Decryption function for various usage
|
3136 |
*
|
3137 |
* @since 2.5.8
|
|
|
3138 |
*
|
3139 |
* @param string $id
|
|
|
3140 |
*
|
3141 |
-
* @return string
|
3142 |
*/
|
3143 |
-
function wpuf_decryption( $id ) {
|
3144 |
-
|
3145 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
3146 |
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
|
|
|
|
|
|
|
|
|
|
3151 |
|
3152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3153 |
}
|
3154 |
|
3155 |
/**
|
3114 |
* Encryption function for various usage
|
3115 |
*
|
3116 |
* @since 2.5.8
|
3117 |
+
* @since WPUF param $nonce added
|
3118 |
*
|
3119 |
* @param string $id
|
3120 |
+
* @param string $nonce
|
3121 |
*
|
3122 |
+
* @return string|bool encoded string or false if encryption failed
|
3123 |
*/
|
3124 |
+
function wpuf_encryption( $id, $nonce = null ) {
|
3125 |
+
$auth_keys = WPUF_Encryption_Helper::get_encryption_auth_keys();
|
3126 |
+
$secret_key = $auth_keys['auth_key'];
|
3127 |
+
$secret_iv = ! empty( $nonce ) ? base64_decode( $nonce ) : $auth_keys['auth_salt'];
|
3128 |
|
3129 |
+
if ( function_exists( 'sodium_crypto_secretbox' ) ) {
|
3130 |
+
try {
|
3131 |
+
return base64_encode( sodium_crypto_secretbox( $id, $secret_iv, $secret_key ) );
|
3132 |
+
} catch ( Exception $e ) {
|
3133 |
+
delete_option( 'wpuf_auth_keys' );
|
3134 |
+
return false;
|
3135 |
+
}
|
3136 |
+
}
|
3137 |
|
3138 |
+
$ciphertext_raw = openssl_encrypt( $id, WPUF_Encryption_Helper::get_encryption_method(), $secret_key, OPENSSL_RAW_DATA, $secret_iv );
|
3139 |
+
$hmac = hash_hmac( 'sha256', $ciphertext_raw, $secret_key, true );
|
3140 |
+
|
3141 |
+
return base64_encode( $secret_iv.$hmac.$ciphertext_raw );
|
3142 |
}
|
3143 |
|
3144 |
/**
|
3145 |
* Decryption function for various usage
|
3146 |
*
|
3147 |
* @since 2.5.8
|
3148 |
+
* @since WPUF param $nonce added
|
3149 |
*
|
3150 |
* @param string $id
|
3151 |
+
* @param string $nonce
|
3152 |
*
|
3153 |
+
* @return string|bool decrypted string or false if decryption failed
|
3154 |
*/
|
3155 |
+
function wpuf_decryption( $id, $nonce = null ) {
|
3156 |
+
// get auth keys
|
3157 |
+
$auth_keys = WPUF_Encryption_Helper::get_encryption_auth_keys();
|
3158 |
+
if ( empty( $auth_keys ) ) {
|
3159 |
+
return false;
|
3160 |
+
}
|
3161 |
+
|
3162 |
+
$secret_key = $auth_keys['auth_key'];
|
3163 |
+
$secret_iv = ! empty( $nonce ) ? base64_decode( $nonce ) : $auth_keys['auth_salt'];
|
3164 |
|
3165 |
+
// should we use sodium_crypto_secretbox_open
|
3166 |
+
if ( function_exists( 'sodium_crypto_secretbox_open') ) {
|
3167 |
+
try {
|
3168 |
+
return sodium_crypto_secretbox_open( base64_decode( $id ), $secret_iv, $secret_key );
|
3169 |
+
} catch ( Exception $e ) {
|
3170 |
+
delete_option( 'wpuf_auth_keys' );
|
3171 |
+
return false;
|
3172 |
+
}
|
3173 |
+
}
|
3174 |
|
3175 |
+
$c = base64_decode( $id );
|
3176 |
+
$ivlen = WPUF_Encryption_Helper::get_encryption_nonce_length();
|
3177 |
+
$secret_iv = substr( $c, 0, $ivlen );
|
3178 |
+
$hmac = substr( $c, $ivlen, 32 );
|
3179 |
+
$ciphertext_raw = substr( $c, $ivlen + 32 );
|
3180 |
+
$original_text = openssl_decrypt( $ciphertext_raw, WPUF_Encryption_Helper::get_encryption_method(), $secret_key, OPENSSL_RAW_DATA, $secret_iv );
|
3181 |
+
$calcmac = hash_hmac( 'sha256', $ciphertext_raw, $secret_key, true );
|
3182 |
+
|
3183 |
+
// timing attack safe comparison
|
3184 |
+
if ( hash_equals( $hmac, $calcmac ) ) {
|
3185 |
+
return $original_text;
|
3186 |
+
}
|
3187 |
+
|
3188 |
+
return false;
|
3189 |
}
|
3190 |
|
3191 |
/**
|
wpuf.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP User Frontend
|
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: weDevs
|
7 |
-
Version: 3.5.
|
8 |
Author URI: https://wedevs.com/?utm_source=WPUF_Author_URI
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -12,7 +12,7 @@ Text Domain: wp-user-frontend
|
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
-
define( 'WPUF_VERSION', '3.5.
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', __DIR__ );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|
@@ -255,6 +255,7 @@ final class WP_User_Frontend {
|
|
255 |
* @return void
|
256 |
*/
|
257 |
public function includes() {
|
|
|
258 |
require_once __DIR__ . '/wpuf-functions.php';
|
259 |
require_once __DIR__ . '/lib/gateway/paypal.php';
|
260 |
require_once __DIR__ . '/lib/gateway/bank.php';
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: weDevs
|
7 |
+
Version: 3.5.29
|
8 |
Author URI: https://wedevs.com/?utm_source=WPUF_Author_URI
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
+
define( 'WPUF_VERSION', '3.5.29' );
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', __DIR__ );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|
255 |
* @return void
|
256 |
*/
|
257 |
public function includes() {
|
258 |
+
require_once __DIR__ . '/class/encryption-helper.php';
|
259 |
require_once __DIR__ . '/wpuf-functions.php';
|
260 |
require_once __DIR__ . '/lib/gateway/paypal.php';
|
261 |
require_once __DIR__ . '/lib/gateway/bank.php';
|