Version Description
Download this release
Release Info
Developer | tareq1988 |
Plugin | WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress |
Version | 3.5.8 |
Comparing to | |
See all releases |
Code changes from version 3.5.7 to 3.5.8
- admin/html/whats-new.php +11 -0
- admin/promotion.php +17 -14
- changelog.txt +3 -0
- languages/wp-user-frontend.pot +271 -267
- readme.txt +4 -1
- wpuf.php +2 -2
admin/html/whats-new.php
CHANGED
@@ -1,5 +1,16 @@
|
|
1 |
<?php
|
2 |
$changelog = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
[
|
4 |
'version' => 'Version 3.5.7',
|
5 |
'released' => '2020-11-21',
|
1 |
<?php
|
2 |
$changelog = [
|
3 |
+
[
|
4 |
+
'version' => 'Version 3.5.8',
|
5 |
+
'released' => '2020-11-21',
|
6 |
+
'changes' => [
|
7 |
+
|
8 |
+
[
|
9 |
+
'title' => __( 'Updated codebase to fix timezone mismatch', 'wp-user-frontend' ),
|
10 |
+
'type' => 'Fix',
|
11 |
+
],
|
12 |
+
],
|
13 |
+
],
|
14 |
[
|
15 |
'version' => 'Version 3.5.7',
|
16 |
'released' => '2020-11-21',
|
admin/promotion.php
CHANGED
@@ -20,18 +20,22 @@ class WPUF_Admin_Promotion {
|
|
20 |
* @return void
|
21 |
*/
|
22 |
public function promotional_offer() {
|
23 |
-
|
|
|
|
|
|
|
|
|
24 |
|
25 |
-
|
26 |
-
$current_time > strtotime( '2020-12-04 23:59:00' )
|
27 |
-
|| $current_time < strtotime( '2020-11-23 09:00:00' )
|
28 |
) {
|
29 |
return;
|
30 |
-
|
31 |
|
32 |
if (
|
33 |
-
strtotime( '2020-11-23 09:00:00' ) < strtotime( $current_time )
|
34 |
-
&& strtotime( $current_time ) < strtotime( '2020-11-23 13:59:00' )
|
35 |
) {
|
36 |
$option_name = 'wpuf_2020_early_black_friday';
|
37 |
$notice = __( 'Enjoy Flat 50% OFF on WP User Frontend Pro. Get Your Early Bird Black Friday', 'wp-user-frontend' );
|
@@ -39,8 +43,8 @@ class WPUF_Admin_Promotion {
|
|
39 |
}
|
40 |
|
41 |
if (
|
42 |
-
strtotime( '2020-11-23 14:00:00' ) < strtotime( $current_time )
|
43 |
-
&& strtotime( $current_time ) < strtotime( '2020-11-27 23:59:00' )
|
44 |
) {
|
45 |
$option_name = 'wpuf_2020_black_friday';
|
46 |
$notice = __( 'Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Black Friday', 'wp-user-frontend' );
|
@@ -48,8 +52,8 @@ class WPUF_Admin_Promotion {
|
|
48 |
}
|
49 |
|
50 |
if (
|
51 |
-
strtotime( '2020-11-28 00:00:00' ) < strtotime( $current_time )
|
52 |
-
&& strtotime( $current_time ) < strtotime( '2020-12-04 23:59:00' )
|
53 |
) {
|
54 |
$option_name = 'wpuf_2020_cyber_monday';
|
55 |
$notice = __( 'Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Cyber Monday', 'wp-user-frontend' );
|
@@ -63,9 +67,8 @@ class WPUF_Admin_Promotion {
|
|
63 |
* @param string $date_time
|
64 |
* @return string
|
65 |
*/
|
66 |
-
public function convert_utc_to_est(
|
67 |
-
$dt = new DateTime(
|
68 |
-
|
69 |
$dt->setTimezone(new DateTimeZone('EST'));
|
70 |
|
71 |
return $dt->format('Y-m-d H:i:s T');
|
20 |
* @return void
|
21 |
*/
|
22 |
public function promotional_offer() {
|
23 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
24 |
+
return;
|
25 |
+
}
|
26 |
+
|
27 |
+
$current_time = $this->convert_utc_to_est();
|
28 |
|
29 |
+
if (
|
30 |
+
strtotime( $current_time ) > strtotime( '2020-12-04 23:59:00 EST' )
|
31 |
+
|| strtotime( $current_time ) < strtotime( '2020-11-23 09:00:00 EST' )
|
32 |
) {
|
33 |
return;
|
34 |
+
}
|
35 |
|
36 |
if (
|
37 |
+
strtotime( '2020-11-23 09:00:00 EST' ) < strtotime( $current_time )
|
38 |
+
&& strtotime( $current_time ) < strtotime( '2020-11-23 13:59:00 EST' )
|
39 |
) {
|
40 |
$option_name = 'wpuf_2020_early_black_friday';
|
41 |
$notice = __( 'Enjoy Flat 50% OFF on WP User Frontend Pro. Get Your Early Bird Black Friday', 'wp-user-frontend' );
|
43 |
}
|
44 |
|
45 |
if (
|
46 |
+
strtotime( '2020-11-23 14:00:00 EST' ) < strtotime( $current_time )
|
47 |
+
&& strtotime( $current_time ) < strtotime( '2020-11-27 23:59:00 EST' )
|
48 |
) {
|
49 |
$option_name = 'wpuf_2020_black_friday';
|
50 |
$notice = __( 'Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Black Friday', 'wp-user-frontend' );
|
52 |
}
|
53 |
|
54 |
if (
|
55 |
+
strtotime( '2020-11-28 00:00:00 EST' ) < strtotime( $current_time )
|
56 |
+
&& strtotime( $current_time ) < strtotime( '2020-12-04 23:59:00 EST' )
|
57 |
) {
|
58 |
$option_name = 'wpuf_2020_cyber_monday';
|
59 |
$notice = __( 'Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Cyber Monday', 'wp-user-frontend' );
|
67 |
* @param string $date_time
|
68 |
* @return string
|
69 |
*/
|
70 |
+
public function convert_utc_to_est() {
|
71 |
+
$dt = new DateTime('now', new DateTimeZone('UTC'));
|
|
|
72 |
$dt->setTimezone(new DateTimeZone('EST'));
|
73 |
|
74 |
return $dt->format('Y-m-d H:i:s T');
|
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= v3.5.7 (21 November, 2020) =
|
2 |
* Enhancement - Custom html content field's width
|
3 |
* Enhancement - All states of New Zealand are added
|
1 |
+
= v3.5.8 (21 November, 2020) =
|
2 |
+
* Fix - Updated codebase to fix timezone mismatch
|
3 |
+
|
4 |
= v3.5.7 (21 November, 2020) =
|
5 |
* Enhancement - Custom html content field's width
|
6 |
* Enhancement - All states of New Zealand are added
|
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: 2020-11-21
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -569,8 +569,8 @@ msgstr ""
|
|
569 |
|
570 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:35
|
571 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:82
|
572 |
-
#: admin/promotion.php:
|
573 |
-
#: admin/promotion.php:
|
574 |
msgid "Unauthorized operation"
|
575 |
msgstr ""
|
576 |
|
@@ -1412,493 +1412,497 @@ msgid "Contact Support"
|
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: admin/html/whats-new.php:9
|
|
|
|
|
|
|
|
|
1415 |
msgid "Custom html content field's width"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: admin/html/whats-new.php:
|
1419 |
msgid "All states of New Zealand are added"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: admin/html/whats-new.php:
|
1423 |
msgid "Get appropriate user id when role based conditions are present"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: admin/html/whats-new.php:
|
1427 |
msgid "Show Invalid subscription message if wrong pack id passed"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: admin/html/whats-new.php:
|
1431 |
msgid "URL field new window not working"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: admin/html/whats-new.php:
|
1435 |
msgid "Option label not working when & use"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: admin/html/whats-new.php:
|
1439 |
msgid "Ajax type category not showing on edit"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: admin/html/whats-new.php:
|
1443 |
msgid "Multiple file image can't select"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: admin/html/whats-new.php:
|
1447 |
msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: admin/html/whats-new.php:
|
1451 |
msgid "Conflict image field with acf image field"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: admin/html/whats-new.php:
|
1455 |
msgid "Missing Auckland State for New Zealand country"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: admin/html/whats-new.php:
|
1459 |
msgid "Added support for WooCommerce product category value replacemen"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: admin/html/whats-new.php:
|
1463 |
msgid "Add character restriction feature"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: admin/html/whats-new.php:
|
1467 |
msgid "Make sure post author edit link works only in frontend"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: admin/html/whats-new.php:
|
1471 |
msgid "Inconsistency in lost password reset email message"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: admin/html/whats-new.php:
|
1475 |
msgid "Saving custom taxonomy terms when input type is text"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: admin/html/whats-new.php:
|
1479 |
msgid "Taxonomy field JS error in builder"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: admin/html/whats-new.php:
|
1483 |
msgid "Showing WPUF edit link for WP default roles"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: admin/html/whats-new.php:
|
1487 |
msgid "Upload button unresponsive issue in iOS"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: admin/html/whats-new.php:
|
1491 |
msgid "Add post edit link for post authors in single or archive pages"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: admin/html/whats-new.php:
|
1495 |
msgid "Enhance post delete message"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: admin/html/whats-new.php:
|
1499 |
msgid "Refactor control buttons visibility in form builder"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: admin/html/whats-new.php:
|
1503 |
msgid "Add missing colons after field label"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: admin/html/whats-new.php:
|
1507 |
msgid "Post edit map capability condition"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: admin/html/whats-new.php:
|
1511 |
msgid "Role based permission for accessing a post form"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: admin/html/whats-new.php:
|
1515 |
msgid "Section-break field alignment"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: admin/html/whats-new.php:
|
1519 |
msgid "Pay per post doesn't work if subscription pack is activated"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: admin/html/whats-new.php:
|
1523 |
msgid "Mime type for uploading JSON files"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: admin/html/whats-new.php:
|
1527 |
msgid "File upload with same file name"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: admin/html/whats-new.php:
|
1531 |
msgid "Post preview missing fields"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: admin/html/whats-new.php:
|
1535 |
msgid "Illigal variable declartion"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: admin/html/whats-new.php:
|
1539 |
msgid "Featured image updating issue"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: admin/html/whats-new.php:
|
1543 |
msgid "Conflict with Phlox theme"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: admin/html/whats-new.php:
|
1547 |
msgid "Textarea custom field data sanitization"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: admin/html/whats-new.php:
|
1551 |
msgid "exclude_type warning in wpuf_category_checklist"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: admin/html/whats-new.php:
|
1555 |
msgid "Category field not showing all child categories for selection type child of"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: admin/html/whats-new.php:
|
1559 |
msgid "Conflict between image and file upload custom fields"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: admin/html/whats-new.php:
|
1563 |
msgid "Login url when login page is not set"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: admin/html/whats-new.php:
|
1567 |
msgid ""
|
1568 |
"Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
|
1569 |
"their official names"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: admin/html/whats-new.php:
|
1573 |
msgid "Fix condition to use default avatar"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: admin/html/whats-new.php:
|
1577 |
msgid "Make Email and URL fields clickable"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: admin/html/whats-new.php:
|
1581 |
msgid "Fix redirect after user login"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: admin/html/whats-new.php:
|
1585 |
msgid "Sanitize textarea field data"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: admin/html/whats-new.php:
|
1589 |
msgid ""
|
1590 |
"Fix missing colon to email, URL, text and textarea labels when renders "
|
1591 |
"their data"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: admin/html/whats-new.php:
|
1595 |
msgid "Prevent showing empty labels for fields that have render_field_data method"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: admin/html/whats-new.php:
|
1599 |
msgid "Add Namibian Dollar in currency list"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: admin/html/whats-new.php:
|
1603 |
msgid "Add sync values option for option data fields"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: admin/html/whats-new.php:
|
1607 |
msgid "Allow uploading image that having filesize meets php ini settings"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: admin/html/whats-new.php:
|
1611 |
msgid "Limit the selection of one image at a time"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: admin/html/whats-new.php:
|
1615 |
msgid "Use file name and size to generate hash to prevent duplicant image upload"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: admin/html/whats-new.php:
|
1619 |
msgid "Sanitize text and textarea field data"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: admin/html/whats-new.php:
|
1623 |
msgid ""
|
1624 |
"Show label instead of values for radio, checkbox, dropdown and multiselect "
|
1625 |
"data"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: admin/html/whats-new.php:
|
1629 |
msgid "Saving custom taxonomies for type text input"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: admin/html/whats-new.php:
|
1633 |
msgid "Admin settings link for recaptcha helper text"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: admin/html/whats-new.php:
|
1637 |
msgid "Undefined name property for Custom HTML fields"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: admin/html/whats-new.php:
|
1641 |
msgid "Delete attachment process"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: admin/html/whats-new.php:
|
1645 |
msgid "Missing billing address in invoice PDF"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: admin/html/whats-new.php:
|
1649 |
msgid "Showing country field value in frontend post content"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: admin/html/whats-new.php:
|
1653 |
msgid "Avatar size display not complying with admin settings size"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: admin/html/whats-new.php:
|
1657 |
msgid "Display default avatars on admin settings discussion page"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: admin/html/whats-new.php:
|
1661 |
msgid "Redirect to subscription page at registration"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: admin/html/whats-new.php:
|
1665 |
msgid "Error notice regarding registration page redirect"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: admin/html/whats-new.php:
|
1669 |
msgid "Escaping html in registration errors"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: admin/html/whats-new.php:
|
1673 |
msgid "Default login redirect link"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: admin/html/whats-new.php:
|
1677 |
msgid "Implementing default WP login page override option"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: admin/html/whats-new.php:
|
1681 |
msgid "Transparent background of autosuggestion dropdown"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: admin/html/whats-new.php:
|
1685 |
msgid "Import forms system"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: admin/html/whats-new.php:
|
1689 |
msgid "Password reset system"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: admin/html/whats-new.php:
|
1693 |
msgid "Updated url validation regex to support modern tlds"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: admin/html/whats-new.php:
|
1697 |
msgid "Export WPUF forms individually from admin tools page"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: admin/html/whats-new.php:
|
1701 |
msgid "Subscription cycle label translation issue"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: admin/html/whats-new.php:
|
1705 |
msgid "ACF integration for checkbox fields"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: admin/html/whats-new.php:
|
1709 |
msgid "Illegal string offset warning while updating settings"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: admin/html/whats-new.php:
|
1713 |
msgid "Conditional logic for Section Break field"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: admin/html/whats-new.php:
|
1717 |
msgid "Subscriptions cannot be deleted from backend"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: admin/html/whats-new.php:
|
1721 |
msgid "A regression regarding saving checkbox data"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: admin/html/whats-new.php:
|
1725 |
msgid "Default value of multi-select fields is not showing"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: admin/html/whats-new.php:
|
1729 |
msgid "Hide post edit option when subscription is expired"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: admin/html/whats-new.php:
|
1733 |
msgid "Hide post edit option from users whose subscription pack is expired."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: admin/html/whats-new.php:
|
1737 |
msgid "Check files to prevent duplicity in media upload"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: admin/html/whats-new.php:
|
1741 |
msgid ""
|
1742 |
"A simple measure has been taken to prevent maliciously flooding the site by "
|
1743 |
"uploading same file multiple times. Though this won't work with already "
|
1744 |
"uploaded medias."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: admin/html/whats-new.php:
|
1748 |
msgid "Refactor address fields in Account section"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: admin/html/whats-new.php:
|
1752 |
msgid "Address edit section from Account section has been rewritten to improve UX."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: admin/html/whats-new.php:
|
1756 |
msgid "Update Paypal payment gateway"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: admin/html/whats-new.php:
|
1760 |
msgid "Paypal payment gateway has seen some improvements."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: admin/html/whats-new.php:
|
1764 |
msgid "Default Category selection improvements"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: admin/html/whats-new.php:
|
1768 |
msgid ""
|
1769 |
"An intuitive way of selecting default category of a selected post type has "
|
1770 |
"been introduced."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: admin/html/whats-new.php:
|
1774 |
msgid "Compatibility issue with ACF date time field"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: admin/html/whats-new.php:
|
1778 |
msgid "A Compatibility issue with ACF date time field has been addressed."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: admin/html/whats-new.php:
|
1782 |
msgid "Media title, caption & description not saving"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: admin/html/whats-new.php:
|
1786 |
msgid ""
|
1787 |
"Media title, caption & description were not saving from frontend. They will "
|
1788 |
"now."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: admin/html/whats-new.php:
|
1792 |
msgid ""
|
1793 |
"The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
|
1794 |
"metabox"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: admin/html/whats-new.php:
|
1798 |
msgid ""
|
1799 |
"A workaround has been introduced to save The Events Calendar Venue and "
|
1800 |
"Organizer fields properly from WPUF Custom Fields metabox."
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: admin/html/whats-new.php:
|
1804 |
msgid "Checkbox data not saving from WPUF Custom Fields metabox"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: admin/html/whats-new.php:
|
1808 |
msgid ""
|
1809 |
"Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
|
1810 |
"fixed."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: admin/html/whats-new.php:
|
1814 |
msgid "Multi-column Repeater field data saving issue"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: admin/html/whats-new.php:
|
1818 |
msgid ""
|
1819 |
"Multi-column Repeater field data from a form was not saving. It has been "
|
1820 |
"fixed."
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: admin/html/whats-new.php:
|
1824 |
msgid "Multistep form conflict with Elementor"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: admin/html/whats-new.php:
|
1828 |
msgid "Multistep form had a conflict with Elementor. It has been fixed."
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: admin/html/whats-new.php:
|
1832 |
msgid "Multiple images showing issue in frontend"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: admin/html/whats-new.php:
|
1836 |
msgid "Multiple images in a post were not showing in frontend. Now they will."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: admin/html/whats-new.php:
|
1840 |
msgid "Nonce not verify on login"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: admin/html/whats-new.php:
|
1844 |
msgid "Return of function wp_verify_nonce() was ignored."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: admin/html/whats-new.php:
|
1848 |
msgid "Option to set which tab shows as active on the account page"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: admin/html/whats-new.php:
|
1852 |
msgid ""
|
1853 |
"Option to set which tab shows as active on the account page. To configure "
|
1854 |
"this setting navigate to wp-admin->User Frontend->Settings->My "
|
1855 |
"Account->Active Tab "
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: admin/html/whats-new.php:
|
1859 |
msgid "Unlock option was unavailable after the post being locked"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: admin/html/whats-new.php:
|
1863 |
msgid "Unlock option was unavailable after the post being locked."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: admin/html/whats-new.php:
|
1867 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: admin/html/whats-new.php:
|
1871 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: admin/html/whats-new.php:
|
1875 |
msgid "Sending admin payment received email twice"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: admin/html/whats-new.php:
|
1879 |
msgid ""
|
1880 |
"After processing payment admin & user was receiving payment received email "
|
1881 |
"twice."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: admin/html/whats-new.php:
|
1885 |
msgid ""
|
1886 |
"Add shortcode support to display post information in the Post Expiration "
|
1887 |
"Message"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: admin/html/whats-new.php:
|
1891 |
msgid ""
|
1892 |
"Add shortcode support to display post information in the Post Expiration "
|
1893 |
"Message. You can use: <strong>{post_author} {post_url} {blogname} "
|
1894 |
"{post_title} {post_status}</strong>"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: admin/html/whats-new.php:
|
1898 |
msgid "Add optin on the setup wizard"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: admin/html/whats-new.php:
|
1902 |
msgid ""
|
1903 |
"Added optin on the setup wizard, admin can choose whether he/she wants to "
|
1904 |
"share server environment details (php, mysql, server, WordPress versions), "
|
@@ -1906,126 +1910,126 @@ msgid ""
|
|
1906 |
"name and url, admin name and email address. No sensitive data is tracked"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: admin/html/whats-new.php:
|
1910 |
msgid "Post Owner problem"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: admin/html/whats-new.php:
|
1914 |
msgid ""
|
1915 |
"Posts were not assigned to the selected default post owner, this issue has "
|
1916 |
"been fixed."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: admin/html/whats-new.php:
|
1920 |
msgid "Google reCaptcha was not working"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: admin/html/whats-new.php:
|
1924 |
msgid ""
|
1925 |
"Google reCaptcha was not working, users could submit the form without "
|
1926 |
"reCaptcha validation."
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: admin/html/whats-new.php:
|
1930 |
msgid "Added column field"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: admin/html/whats-new.php:
|
1934 |
msgid "Unable to render the events on the front-end dashboard"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: admin/html/whats-new.php:
|
1938 |
msgid ""
|
1939 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
1940 |
"get it fixed in this version."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: admin/html/whats-new.php:
|
1944 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: admin/html/whats-new.php:
|
1948 |
msgid ""
|
1949 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
1950 |
"fixed."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: admin/html/whats-new.php:
|
1954 |
msgid "Text input field for taxonomies not working"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: admin/html/whats-new.php:
|
1958 |
msgid ""
|
1959 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
1960 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: admin/html/whats-new.php:
|
1964 |
msgid ""
|
1965 |
"In radio and checkbox field use conditional logic that value does not save "
|
1966 |
"in database"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: admin/html/whats-new.php:
|
1970 |
msgid ""
|
1971 |
"The selected value of radio and checkbox field were not showing while "
|
1972 |
"editing posts from the backend or frontend, you can see the selected value "
|
1973 |
"in this version."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: admin/html/whats-new.php:
|
1977 |
msgid "The args param not working with get_avatar filter"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: admin/html/whats-new.php:
|
1981 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: admin/html/whats-new.php:
|
1985 |
msgid "The item in ajax taxonomy field was not selected"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: admin/html/whats-new.php:
|
1989 |
msgid ""
|
1990 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
1991 |
"showing in the backend and frontend which have been fixed."
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: admin/html/whats-new.php:
|
1995 |
msgid "Unable to send new user registration email"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: admin/html/whats-new.php:
|
1999 |
msgid ""
|
2000 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
2001 |
"to send the new user registration email."
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: admin/html/whats-new.php:
|
2005 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: admin/html/whats-new.php:
|
2009 |
msgid ""
|
2010 |
"With the latest version of WordPress the gutenberg block of WP User "
|
2011 |
"Frontend were not working. In this version, you will get it fixed."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: admin/html/whats-new.php:
|
2015 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: admin/html/whats-new.php:
|
2019 |
msgid ""
|
2020 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
2021 |
"[wpuf dashboard]"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: admin/html/whats-new.php:
|
2025 |
msgid "Retain default when determining whether to display the admin bar"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: admin/html/whats-new.php:
|
2029 |
msgid ""
|
2030 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
2031 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
@@ -2035,11 +2039,11 @@ msgid ""
|
|
2035 |
"frontend."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: admin/html/whats-new.php:
|
2039 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: admin/html/whats-new.php:
|
2043 |
msgid ""
|
2044 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
2045 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
@@ -2047,42 +2051,42 @@ msgid ""
|
|
2047 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: admin/html/whats-new.php:
|
2051 |
msgid "Product form was unable to show the single gallery image"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: admin/html/whats-new.php:
|
2055 |
msgid ""
|
2056 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
2057 |
"product form, that image were not showing on the frontend."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: admin/html/whats-new.php:
|
2061 |
msgid "WooCommerce gallery images not getting saved"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: admin/html/whats-new.php:
|
2065 |
msgid ""
|
2066 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
2067 |
"working. You will get it fixed in this version."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: admin/html/whats-new.php:
|
2071 |
msgid "The Events Calendar Integration Form"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: admin/html/whats-new.php:
|
2075 |
msgid ""
|
2076 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
2077 |
"has a one click pre-build event form that has been integrated with The "
|
2078 |
"Events Calendar plugin"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: admin/html/whats-new.php:
|
2082 |
msgid "Post Submission Facility From Account Page"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: admin/html/whats-new.php:
|
2086 |
msgid ""
|
2087 |
"On the frontend account page, added a new menu item named <b>Submit "
|
2088 |
"Post</b>. Now admin can allow users to submit post from their default "
|
@@ -2091,504 +2095,504 @@ msgid ""
|
|
2091 |
"you can assign any post form that will use to submit posts."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: admin/html/whats-new.php:
|
2095 |
msgid "Login/Lost Password Link Under Registration Form"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: admin/html/whats-new.php:
|
2099 |
msgid "Added Login/Lost Password link under registration form"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: admin/html/whats-new.php:
|
2103 |
msgid "Added drag and drop image ordering on image upload"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: admin/html/whats-new.php:
|
2107 |
msgid ""
|
2108 |
"Now frontend users can drag & drop the images/files to change the order "
|
2109 |
"while uploading."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: admin/html/whats-new.php:
|
2113 |
msgid "Added reCAPTCHA field in login form"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: admin/html/whats-new.php:
|
2117 |
msgid ""
|
2118 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
2119 |
"related settings from <strong>User Frontend > Settings > "
|
2120 |
"Login/Registration</strong>"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: admin/html/whats-new.php:
|
2124 |
msgid "Added preview option in forms"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: admin/html/whats-new.php:
|
2128 |
msgid ""
|
2129 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
2130 |
"Form</strong> button, admin can take a quick look of the form without using "
|
2131 |
"shortcode"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: admin/html/whats-new.php:
|
2135 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: admin/html/whats-new.php:
|
2139 |
msgid ""
|
2140 |
"The upload button will not be hidden until the user selects max number of "
|
2141 |
"files "
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: admin/html/whats-new.php:
|
2145 |
msgid "Added form limit notice before form submission"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: admin/html/whats-new.php:
|
2149 |
msgid ""
|
2150 |
"Limit notice message was showing after submission, now it is showing when "
|
2151 |
"rendering the form"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: admin/html/whats-new.php:
|
2155 |
msgid "Fixed: default post category not saving"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: admin/html/whats-new.php:
|
2159 |
msgid ""
|
2160 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
2161 |
"category options were not saving. Now, it's fixed."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: admin/html/whats-new.php:
|
2165 |
msgid ""
|
2166 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
2167 |
"properly"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: admin/html/whats-new.php:
|
2171 |
msgid ""
|
2172 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
2173 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: admin/html/whats-new.php:
|
2177 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: admin/html/whats-new.php:
|
2181 |
msgid ""
|
2182 |
"If you are using other language than English. Please <b>rename</b> your "
|
2183 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
2184 |
"change was made to support translations from translate.wordpress.org"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: admin/html/whats-new.php:
|
2188 |
msgid "Added WP User Frontend Data export and erase functionality."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: admin/html/whats-new.php:
|
2192 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: admin/html/whats-new.php:
|
2196 |
msgid "Added billing address customizer."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: admin/html/whats-new.php:
|
2200 |
msgid "Added customizer options for billing address in payment page."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: admin/html/whats-new.php:
|
2204 |
msgid "Make the payment page responsive."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: admin/html/whats-new.php:
|
2208 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: admin/html/whats-new.php:
|
2212 |
msgid "Fixed image upload issue in Safari."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: admin/html/whats-new.php:
|
2216 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: admin/html/whats-new.php:
|
2220 |
msgid "Post update issue after updating or removing post images."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: admin/html/whats-new.php:
|
2224 |
msgid ""
|
2225 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
2226 |
"now."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: admin/html/whats-new.php:
|
2230 |
msgid "Allow overriding form input styles using theme styling."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: admin/html/whats-new.php:
|
2234 |
msgid "Overriding form input styles using theme style is now possible."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: admin/html/whats-new.php:
|
2238 |
msgid "Fixed Auto Login after registration."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: admin/html/whats-new.php:
|
2242 |
msgid "Auto Login after registration was not working is fixed now."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: admin/html/whats-new.php:
|
2246 |
msgid "Fixed fallback cost calculation"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: admin/html/whats-new.php:
|
2250 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: admin/html/whats-new.php:
|
2254 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: admin/html/whats-new.php:
|
2258 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: admin/html/whats-new.php:
|
2262 |
msgid "Show Free pack users in subscribers list."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: admin/html/whats-new.php:
|
2266 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: admin/html/whats-new.php:
|
2270 |
msgid "WP User Frontend Guten Block is added"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: admin/html/whats-new.php:
|
2274 |
msgid ""
|
2275 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
2276 |
"preview of the form. "
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: admin/html/whats-new.php:
|
2280 |
msgid "Advanced Custom Fields plugin compatibility"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: admin/html/whats-new.php:
|
2284 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: admin/html/whats-new.php:
|
2288 |
msgid "Taxonomy Terms not showing for custom post types"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: admin/html/whats-new.php:
|
2292 |
msgid ""
|
2293 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
2294 |
"within Form Settings and Dashboard Post Listing"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: admin/html/whats-new.php:
|
2298 |
msgid "Various other code optimizations"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: admin/html/whats-new.php:
|
2302 |
msgid "Code structure organization and optimization for better performance"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: admin/html/whats-new.php:
|
2306 |
msgid "WoooCommerce billing address Sync"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: admin/html/whats-new.php:
|
2310 |
msgid ""
|
2311 |
"If an existing customer has previously set his billing address, that will "
|
2312 |
"be imported into WPUF Billing address "
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: admin/html/whats-new.php:
|
2316 |
msgid "Trial subscription message not showing properly"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: admin/html/whats-new.php:
|
2320 |
msgid "Subscriptions with Trial now shows trial notices"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: admin/html/whats-new.php:
|
2324 |
msgid "Reset email Key not working"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: admin/html/whats-new.php:
|
2328 |
msgid "Reset Email key was not working in some cases"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: admin/html/whats-new.php:
|
2332 |
msgid "Post count not showing on the frontend dashboard"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: admin/html/whats-new.php:
|
2336 |
msgid ""
|
2337 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
2338 |
"now fixed and shows count for each post type"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: admin/html/whats-new.php:
|
2342 |
msgid "Login Redirect showing blank page is fixed"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: admin/html/whats-new.php:
|
2346 |
msgid ""
|
2347 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
2348 |
"redirecting to blank page for users who hit login page directly"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: admin/html/whats-new.php:
|
2352 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: admin/html/whats-new.php:
|
2356 |
msgid ""
|
2357 |
"You can choose Previous Page as Login Redirect page settings now to "
|
2358 |
"redirect users to the page from which they went for Login. "
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: admin/html/whats-new.php:
|
2362 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: admin/html/whats-new.php:
|
2366 |
msgid ""
|
2367 |
"For some clients emails were not rendering the HTML links properly, this is "
|
2368 |
"now fixed"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: admin/html/whats-new.php:
|
2372 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: admin/html/whats-new.php:
|
2376 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: admin/html/whats-new.php:
|
2380 |
msgid "Various other code improvements"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: admin/html/whats-new.php:
|
2384 |
msgid "Dashboard Post Listing now supports multiple post types"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: admin/html/whats-new.php:
|
2388 |
msgid ""
|
2389 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
2390 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: admin/html/whats-new.php:
|
2394 |
msgid "Added Login Redirect Settings"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: admin/html/whats-new.php:
|
2398 |
msgid ""
|
2399 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
2400 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
2401 |
"redirected to this page after login."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: admin/html/whats-new.php:
|
2405 |
msgid "Image Upload field button text can be changed"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: admin/html/whats-new.php:
|
2409 |
msgid ""
|
2410 |
"The upload button text can now be changed for image upload fields which "
|
2411 |
"defaults to \"Select Image\" if not set. "
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: admin/html/whats-new.php:
|
2415 |
msgid "Multi Step Form styles made compatible with more themes"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: admin/html/whats-new.php:
|
2419 |
msgid "Multi Step form can now be styled more easily with other themes "
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: admin/html/whats-new.php:
|
2423 |
msgid "Required field condition for google map not working is fixed"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: admin/html/whats-new.php:
|
2427 |
msgid ""
|
2428 |
"If Google Map field was set as required users were able to submit form "
|
2429 |
"without changing the default value."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: admin/html/whats-new.php:
|
2433 |
msgid "Admin form builder is now fully responsive."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: admin/html/whats-new.php:
|
2437 |
msgid ""
|
2438 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
2439 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
2440 |
"the go."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: admin/html/whats-new.php:
|
2444 |
msgid "Added color schemes for creating attractive form layouts."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: admin/html/whats-new.php:
|
2448 |
msgid ""
|
2449 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
2450 |
"from each form's new display settings."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: admin/html/whats-new.php:
|
2454 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: admin/html/whats-new.php:
|
2458 |
msgid ""
|
2459 |
"Free subscription packs now can only be purchased once and the limit "
|
2460 |
"applies properly"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: admin/html/whats-new.php:
|
2464 |
msgid "Various other bug fixes and improvements were made "
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: admin/html/whats-new.php:
|
2468 |
msgid "Please see the change log to see full details."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: admin/html/whats-new.php:
|
2472 |
msgid "Added upgrade function for default category"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: admin/html/whats-new.php:
|
2476 |
msgid "Upgrader added to upgrade previously set default post category."
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: admin/html/whats-new.php:
|
2480 |
msgid "Subscription pack cannot be canceled"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: admin/html/whats-new.php:
|
2484 |
msgid ""
|
2485 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
2486 |
"in subscription details section."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: admin/html/whats-new.php:
|
2490 |
msgid "page installer admin notice logic issue"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: admin/html/whats-new.php:
|
2494 |
msgid ""
|
2495 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
2496 |
"default value not set."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: admin/html/whats-new.php:
|
2500 |
msgid "Setup Wizard"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: admin/html/whats-new.php:
|
2504 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: admin/html/whats-new.php:
|
2508 |
msgid "Multi-select Category"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: admin/html/whats-new.php:
|
2512 |
msgid "Add multi-select to default category in post form settings."
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: admin/html/whats-new.php:
|
2516 |
msgid "Select Text option for Taxonomy"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: admin/html/whats-new.php:
|
2520 |
msgid ""
|
2521 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
2522 |
"with empty value as first option for Taxonomy dropdown."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: admin/html/whats-new.php:
|
2526 |
msgid "Taxonomy Checkbox Inline"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: admin/html/whats-new.php:
|
2530 |
msgid ""
|
2531 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
2532 |
"Taxonomy checkbox fields inline."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: admin/html/whats-new.php:
|
2536 |
msgid "Manage schedule for form submission"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: admin/html/whats-new.php:
|
2540 |
msgid ""
|
2541 |
"Do not accept form submission if the current date is not between the date "
|
2542 |
"range of the schedule."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: admin/html/whats-new.php:
|
2546 |
msgid "Restrict form submission based on the user roles"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: admin/html/whats-new.php:
|
2550 |
msgid ""
|
2551 |
"Restrict form submission based on the user roles. Now you can manage user "
|
2552 |
"role base permission on form submission."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: admin/html/whats-new.php:
|
2556 |
msgid "Limit how many entries a form will accept"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: admin/html/whats-new.php:
|
2560 |
msgid ""
|
2561 |
"Limit how many entries a form will accept and display a custom message when "
|
2562 |
"that limit is reached."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: admin/html/whats-new.php:
|
2566 |
msgid "Show/hide Admin Bar"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: admin/html/whats-new.php:
|
2570 |
msgid "Control the admin bar visibility based on user roles."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: admin/html/whats-new.php:
|
2574 |
msgid "Ajax Login widget"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: admin/html/whats-new.php:
|
2578 |
msgid ""
|
2579 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
2580 |
"form do not required page loading for login."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: admin/html/whats-new.php:
|
2584 |
msgid "Form submission with Captcha field"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: admin/html/whats-new.php:
|
2588 |
msgid "Form field validation process updated if form submits with captcha field."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: admin/html/whats-new.php:
|
2592 |
msgid "What's New in WPUF?"
|
2593 |
msgstr ""
|
2594 |
|
@@ -3034,27 +3038,27 @@ msgstr ""
|
|
3034 |
msgid "WP User Frontend Pro is the most powerful solution for your frontend needs."
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: admin/promotion.php:
|
3038 |
msgid "Enjoy Flat 50% OFF on WP User Frontend Pro. Get Your Early Bird Black Friday"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: admin/promotion.php:
|
3042 |
msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Black Friday"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: admin/promotion.php:
|
3046 |
msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Cyber Monday"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: admin/promotion.php:
|
3050 |
msgid "Sure! I'd love to!"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: admin/promotion.php:
|
3054 |
msgid "I've already left a review"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: admin/promotion.php:
|
3058 |
msgid "Never show again"
|
3059 |
msgstr ""
|
3060 |
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP User Frontend 3.5.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2020-11-21 17:16:18+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
569 |
|
570 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:35
|
571 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:82
|
572 |
+
#: admin/promotion.php:208 admin/promotion.php:212 admin/promotion.php:269
|
573 |
+
#: admin/promotion.php:273
|
574 |
msgid "Unauthorized operation"
|
575 |
msgstr ""
|
576 |
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: admin/html/whats-new.php:9
|
1415 |
+
msgid "Updated codebase to fix timezone mismatch"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: admin/html/whats-new.php:20
|
1419 |
msgid "Custom html content field's width"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: admin/html/whats-new.php:24
|
1423 |
msgid "All states of New Zealand are added"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: admin/html/whats-new.php:35
|
1427 |
msgid "Get appropriate user id when role based conditions are present"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: admin/html/whats-new.php:39
|
1431 |
msgid "Show Invalid subscription message if wrong pack id passed"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: admin/html/whats-new.php:43
|
1435 |
msgid "URL field new window not working"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: admin/html/whats-new.php:47
|
1439 |
msgid "Option label not working when & use"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: admin/html/whats-new.php:51
|
1443 |
msgid "Ajax type category not showing on edit"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: admin/html/whats-new.php:55
|
1447 |
msgid "Multiple file image can't select"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: admin/html/whats-new.php:59
|
1451 |
msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: admin/html/whats-new.php:63
|
1455 |
msgid "Conflict image field with acf image field"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: admin/html/whats-new.php:67
|
1459 |
msgid "Missing Auckland State for New Zealand country"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: admin/html/whats-new.php:71
|
1463 |
msgid "Added support for WooCommerce product category value replacemen"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: admin/html/whats-new.php:81
|
1467 |
msgid "Add character restriction feature"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: admin/html/whats-new.php:85
|
1471 |
msgid "Make sure post author edit link works only in frontend"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: admin/html/whats-new.php:89
|
1475 |
msgid "Inconsistency in lost password reset email message"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: admin/html/whats-new.php:93
|
1479 |
msgid "Saving custom taxonomy terms when input type is text"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: admin/html/whats-new.php:97
|
1483 |
msgid "Taxonomy field JS error in builder"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: admin/html/whats-new.php:101
|
1487 |
msgid "Showing WPUF edit link for WP default roles"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: admin/html/whats-new.php:105
|
1491 |
msgid "Upload button unresponsive issue in iOS"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: admin/html/whats-new.php:115
|
1495 |
msgid "Add post edit link for post authors in single or archive pages"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: admin/html/whats-new.php:119
|
1499 |
msgid "Enhance post delete message"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: admin/html/whats-new.php:123
|
1503 |
msgid "Refactor control buttons visibility in form builder"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: admin/html/whats-new.php:127
|
1507 |
msgid "Add missing colons after field label"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: admin/html/whats-new.php:131
|
1511 |
msgid "Post edit map capability condition"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: admin/html/whats-new.php:135
|
1515 |
msgid "Role based permission for accessing a post form"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: admin/html/whats-new.php:139
|
1519 |
msgid "Section-break field alignment"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: admin/html/whats-new.php:143
|
1523 |
msgid "Pay per post doesn't work if subscription pack is activated"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: admin/html/whats-new.php:147
|
1527 |
msgid "Mime type for uploading JSON files"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: admin/html/whats-new.php:151
|
1531 |
msgid "File upload with same file name"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: admin/html/whats-new.php:155
|
1535 |
msgid "Post preview missing fields"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: admin/html/whats-new.php:159
|
1539 |
msgid "Illigal variable declartion"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: admin/html/whats-new.php:163
|
1543 |
msgid "Featured image updating issue"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: admin/html/whats-new.php:167
|
1547 |
msgid "Conflict with Phlox theme"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: admin/html/whats-new.php:171
|
1551 |
msgid "Textarea custom field data sanitization"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: admin/html/whats-new.php:175
|
1555 |
msgid "exclude_type warning in wpuf_category_checklist"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: admin/html/whats-new.php:179
|
1559 |
msgid "Category field not showing all child categories for selection type child of"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: admin/html/whats-new.php:183
|
1563 |
msgid "Conflict between image and file upload custom fields"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: admin/html/whats-new.php:187
|
1567 |
msgid "Login url when login page is not set"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: admin/html/whats-new.php:197
|
1571 |
msgid ""
|
1572 |
"Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
|
1573 |
"their official names"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: admin/html/whats-new.php:201
|
1577 |
msgid "Fix condition to use default avatar"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: admin/html/whats-new.php:205
|
1581 |
msgid "Make Email and URL fields clickable"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: admin/html/whats-new.php:209
|
1585 |
msgid "Fix redirect after user login"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: admin/html/whats-new.php:213
|
1589 |
msgid "Sanitize textarea field data"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: admin/html/whats-new.php:217
|
1593 |
msgid ""
|
1594 |
"Fix missing colon to email, URL, text and textarea labels when renders "
|
1595 |
"their data"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: admin/html/whats-new.php:221
|
1599 |
msgid "Prevent showing empty labels for fields that have render_field_data method"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: admin/html/whats-new.php:231
|
1603 |
msgid "Add Namibian Dollar in currency list"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: admin/html/whats-new.php:235
|
1607 |
msgid "Add sync values option for option data fields"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: admin/html/whats-new.php:239
|
1611 |
msgid "Allow uploading image that having filesize meets php ini settings"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: admin/html/whats-new.php:243
|
1615 |
msgid "Limit the selection of one image at a time"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: admin/html/whats-new.php:247
|
1619 |
msgid "Use file name and size to generate hash to prevent duplicant image upload"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: admin/html/whats-new.php:251
|
1623 |
msgid "Sanitize text and textarea field data"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: admin/html/whats-new.php:255
|
1627 |
msgid ""
|
1628 |
"Show label instead of values for radio, checkbox, dropdown and multiselect "
|
1629 |
"data"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: admin/html/whats-new.php:259
|
1633 |
msgid "Saving custom taxonomies for type text input"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: admin/html/whats-new.php:263
|
1637 |
msgid "Admin settings link for recaptcha helper text"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: admin/html/whats-new.php:267
|
1641 |
msgid "Undefined name property for Custom HTML fields"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: admin/html/whats-new.php:271
|
1645 |
msgid "Delete attachment process"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: admin/html/whats-new.php:275
|
1649 |
msgid "Missing billing address in invoice PDF"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: admin/html/whats-new.php:279
|
1653 |
msgid "Showing country field value in frontend post content"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: admin/html/whats-new.php:283
|
1657 |
msgid "Avatar size display not complying with admin settings size"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: admin/html/whats-new.php:287
|
1661 |
msgid "Display default avatars on admin settings discussion page"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: admin/html/whats-new.php:291
|
1665 |
msgid "Redirect to subscription page at registration"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: admin/html/whats-new.php:295
|
1669 |
msgid "Error notice regarding registration page redirect"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: admin/html/whats-new.php:299
|
1673 |
msgid "Escaping html in registration errors"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: admin/html/whats-new.php:303
|
1677 |
msgid "Default login redirect link"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: admin/html/whats-new.php:307
|
1681 |
msgid "Implementing default WP login page override option"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: admin/html/whats-new.php:311
|
1685 |
msgid "Transparent background of autosuggestion dropdown"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: admin/html/whats-new.php:321
|
1689 |
msgid "Import forms system"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: admin/html/whats-new.php:325
|
1693 |
msgid "Password reset system"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: admin/html/whats-new.php:329
|
1697 |
msgid "Updated url validation regex to support modern tlds"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: admin/html/whats-new.php:333
|
1701 |
msgid "Export WPUF forms individually from admin tools page"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: admin/html/whats-new.php:337
|
1705 |
msgid "Subscription cycle label translation issue"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: admin/html/whats-new.php:341
|
1709 |
msgid "ACF integration for checkbox fields"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: admin/html/whats-new.php:345
|
1713 |
msgid "Illegal string offset warning while updating settings"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: admin/html/whats-new.php:349
|
1717 |
msgid "Conditional logic for Section Break field"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: admin/html/whats-new.php:353
|
1721 |
msgid "Subscriptions cannot be deleted from backend"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: admin/html/whats-new.php:357
|
1725 |
msgid "A regression regarding saving checkbox data"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: admin/html/whats-new.php:361
|
1729 |
msgid "Default value of multi-select fields is not showing"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: admin/html/whats-new.php:371
|
1733 |
msgid "Hide post edit option when subscription is expired"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: admin/html/whats-new.php:373
|
1737 |
msgid "Hide post edit option from users whose subscription pack is expired."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: admin/html/whats-new.php:376
|
1741 |
msgid "Check files to prevent duplicity in media upload"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: admin/html/whats-new.php:378
|
1745 |
msgid ""
|
1746 |
"A simple measure has been taken to prevent maliciously flooding the site by "
|
1747 |
"uploading same file multiple times. Though this won't work with already "
|
1748 |
"uploaded medias."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: admin/html/whats-new.php:381
|
1752 |
msgid "Refactor address fields in Account section"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: admin/html/whats-new.php:383
|
1756 |
msgid "Address edit section from Account section has been rewritten to improve UX."
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: admin/html/whats-new.php:386
|
1760 |
msgid "Update Paypal payment gateway"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: admin/html/whats-new.php:388
|
1764 |
msgid "Paypal payment gateway has seen some improvements."
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: admin/html/whats-new.php:391
|
1768 |
msgid "Default Category selection improvements"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: admin/html/whats-new.php:393
|
1772 |
msgid ""
|
1773 |
"An intuitive way of selecting default category of a selected post type has "
|
1774 |
"been introduced."
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: admin/html/whats-new.php:396
|
1778 |
msgid "Compatibility issue with ACF date time field"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: admin/html/whats-new.php:398
|
1782 |
msgid "A Compatibility issue with ACF date time field has been addressed."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: admin/html/whats-new.php:401
|
1786 |
msgid "Media title, caption & description not saving"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: admin/html/whats-new.php:403
|
1790 |
msgid ""
|
1791 |
"Media title, caption & description were not saving from frontend. They will "
|
1792 |
"now."
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: admin/html/whats-new.php:406
|
1796 |
msgid ""
|
1797 |
"The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
|
1798 |
"metabox"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: admin/html/whats-new.php:408
|
1802 |
msgid ""
|
1803 |
"A workaround has been introduced to save The Events Calendar Venue and "
|
1804 |
"Organizer fields properly from WPUF Custom Fields metabox."
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: admin/html/whats-new.php:411
|
1808 |
msgid "Checkbox data not saving from WPUF Custom Fields metabox"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: admin/html/whats-new.php:413
|
1812 |
msgid ""
|
1813 |
"Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
|
1814 |
"fixed."
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: admin/html/whats-new.php:416
|
1818 |
msgid "Multi-column Repeater field data saving issue"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: admin/html/whats-new.php:418
|
1822 |
msgid ""
|
1823 |
"Multi-column Repeater field data from a form was not saving. It has been "
|
1824 |
"fixed."
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: admin/html/whats-new.php:421
|
1828 |
msgid "Multistep form conflict with Elementor"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: admin/html/whats-new.php:423
|
1832 |
msgid "Multistep form had a conflict with Elementor. It has been fixed."
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: admin/html/whats-new.php:426
|
1836 |
msgid "Multiple images showing issue in frontend"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: admin/html/whats-new.php:428
|
1840 |
msgid "Multiple images in a post were not showing in frontend. Now they will."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: admin/html/whats-new.php:437
|
1844 |
msgid "Nonce not verify on login"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: admin/html/whats-new.php:439
|
1848 |
msgid "Return of function wp_verify_nonce() was ignored."
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: admin/html/whats-new.php:448
|
1852 |
msgid "Option to set which tab shows as active on the account page"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: admin/html/whats-new.php:450
|
1856 |
msgid ""
|
1857 |
"Option to set which tab shows as active on the account page. To configure "
|
1858 |
"this setting navigate to wp-admin->User Frontend->Settings->My "
|
1859 |
"Account->Active Tab "
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: admin/html/whats-new.php:453
|
1863 |
msgid "Unlock option was unavailable after the post being locked"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: admin/html/whats-new.php:455
|
1867 |
msgid "Unlock option was unavailable after the post being locked."
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: admin/html/whats-new.php:458
|
1871 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: admin/html/whats-new.php:460
|
1875 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: admin/html/whats-new.php:463
|
1879 |
msgid "Sending admin payment received email twice"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: admin/html/whats-new.php:465
|
1883 |
msgid ""
|
1884 |
"After processing payment admin & user was receiving payment received email "
|
1885 |
"twice."
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: admin/html/whats-new.php:468
|
1889 |
msgid ""
|
1890 |
"Add shortcode support to display post information in the Post Expiration "
|
1891 |
"Message"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: admin/html/whats-new.php:470
|
1895 |
msgid ""
|
1896 |
"Add shortcode support to display post information in the Post Expiration "
|
1897 |
"Message. You can use: <strong>{post_author} {post_url} {blogname} "
|
1898 |
"{post_title} {post_status}</strong>"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: admin/html/whats-new.php:473
|
1902 |
msgid "Add optin on the setup wizard"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: admin/html/whats-new.php:475
|
1906 |
msgid ""
|
1907 |
"Added optin on the setup wizard, admin can choose whether he/she wants to "
|
1908 |
"share server environment details (php, mysql, server, WordPress versions), "
|
1910 |
"name and url, admin name and email address. No sensitive data is tracked"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: admin/html/whats-new.php:484
|
1914 |
msgid "Post Owner problem"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: admin/html/whats-new.php:486
|
1918 |
msgid ""
|
1919 |
"Posts were not assigned to the selected default post owner, this issue has "
|
1920 |
"been fixed."
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: admin/html/whats-new.php:489
|
1924 |
msgid "Google reCaptcha was not working"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: admin/html/whats-new.php:491
|
1928 |
msgid ""
|
1929 |
"Google reCaptcha was not working, users could submit the form without "
|
1930 |
"reCaptcha validation."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: admin/html/whats-new.php:500
|
1934 |
msgid "Added column field"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: admin/html/whats-new.php:505
|
1938 |
msgid "Unable to render the events on the front-end dashboard"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: admin/html/whats-new.php:507
|
1942 |
msgid ""
|
1943 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
1944 |
"get it fixed in this version."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: admin/html/whats-new.php:510
|
1948 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: admin/html/whats-new.php:512
|
1952 |
msgid ""
|
1953 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
1954 |
"fixed."
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: admin/html/whats-new.php:515
|
1958 |
msgid "Text input field for taxonomies not working"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: admin/html/whats-new.php:517
|
1962 |
msgid ""
|
1963 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
1964 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: admin/html/whats-new.php:520
|
1968 |
msgid ""
|
1969 |
"In radio and checkbox field use conditional logic that value does not save "
|
1970 |
"in database"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: admin/html/whats-new.php:522
|
1974 |
msgid ""
|
1975 |
"The selected value of radio and checkbox field were not showing while "
|
1976 |
"editing posts from the backend or frontend, you can see the selected value "
|
1977 |
"in this version."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: admin/html/whats-new.php:525
|
1981 |
msgid "The args param not working with get_avatar filter"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: admin/html/whats-new.php:527
|
1985 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: admin/html/whats-new.php:530
|
1989 |
msgid "The item in ajax taxonomy field was not selected"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: admin/html/whats-new.php:532
|
1993 |
msgid ""
|
1994 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
1995 |
"showing in the backend and frontend which have been fixed."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: admin/html/whats-new.php:541
|
1999 |
msgid "Unable to send new user registration email"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: admin/html/whats-new.php:543
|
2003 |
msgid ""
|
2004 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
2005 |
"to send the new user registration email."
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: admin/html/whats-new.php:546
|
2009 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: admin/html/whats-new.php:548
|
2013 |
msgid ""
|
2014 |
"With the latest version of WordPress the gutenberg block of WP User "
|
2015 |
"Frontend were not working. In this version, you will get it fixed."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: admin/html/whats-new.php:551
|
2019 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: admin/html/whats-new.php:553
|
2023 |
msgid ""
|
2024 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
2025 |
"[wpuf dashboard]"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: admin/html/whats-new.php:556
|
2029 |
msgid "Retain default when determining whether to display the admin bar"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: admin/html/whats-new.php:558
|
2033 |
msgid ""
|
2034 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
2035 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
2039 |
"frontend."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: admin/html/whats-new.php:561
|
2043 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: admin/html/whats-new.php:563
|
2047 |
msgid ""
|
2048 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
2049 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
2051 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: admin/html/whats-new.php:566
|
2055 |
msgid "Product form was unable to show the single gallery image"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: admin/html/whats-new.php:568
|
2059 |
msgid ""
|
2060 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
2061 |
"product form, that image were not showing on the frontend."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: admin/html/whats-new.php:577
|
2065 |
msgid "WooCommerce gallery images not getting saved"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: admin/html/whats-new.php:579
|
2069 |
msgid ""
|
2070 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
2071 |
"working. You will get it fixed in this version."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: admin/html/whats-new.php:588
|
2075 |
msgid "The Events Calendar Integration Form"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: admin/html/whats-new.php:590
|
2079 |
msgid ""
|
2080 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
2081 |
"has a one click pre-build event form that has been integrated with The "
|
2082 |
"Events Calendar plugin"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: admin/html/whats-new.php:593
|
2086 |
msgid "Post Submission Facility From Account Page"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: admin/html/whats-new.php:595
|
2090 |
msgid ""
|
2091 |
"On the frontend account page, added a new menu item named <b>Submit "
|
2092 |
"Post</b>. Now admin can allow users to submit post from their default "
|
2095 |
"you can assign any post form that will use to submit posts."
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: admin/html/whats-new.php:598
|
2099 |
msgid "Login/Lost Password Link Under Registration Form"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: admin/html/whats-new.php:600
|
2103 |
msgid "Added Login/Lost Password link under registration form"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: admin/html/whats-new.php:609
|
2107 |
msgid "Added drag and drop image ordering on image upload"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: admin/html/whats-new.php:611
|
2111 |
msgid ""
|
2112 |
"Now frontend users can drag & drop the images/files to change the order "
|
2113 |
"while uploading."
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: admin/html/whats-new.php:614
|
2117 |
msgid "Added reCAPTCHA field in login form"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: admin/html/whats-new.php:616
|
2121 |
msgid ""
|
2122 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
2123 |
"related settings from <strong>User Frontend > Settings > "
|
2124 |
"Login/Registration</strong>"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: admin/html/whats-new.php:619
|
2128 |
msgid "Added preview option in forms"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: admin/html/whats-new.php:621
|
2132 |
msgid ""
|
2133 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
2134 |
"Form</strong> button, admin can take a quick look of the form without using "
|
2135 |
"shortcode"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: admin/html/whats-new.php:624
|
2139 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: admin/html/whats-new.php:626
|
2143 |
msgid ""
|
2144 |
"The upload button will not be hidden until the user selects max number of "
|
2145 |
"files "
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: admin/html/whats-new.php:629
|
2149 |
msgid "Added form limit notice before form submission"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: admin/html/whats-new.php:631
|
2153 |
msgid ""
|
2154 |
"Limit notice message was showing after submission, now it is showing when "
|
2155 |
"rendering the form"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: admin/html/whats-new.php:634
|
2159 |
msgid "Fixed: default post category not saving"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: admin/html/whats-new.php:636
|
2163 |
msgid ""
|
2164 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
2165 |
"category options were not saving. Now, it's fixed."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: admin/html/whats-new.php:639
|
2169 |
msgid ""
|
2170 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
2171 |
"properly"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: admin/html/whats-new.php:641
|
2175 |
msgid ""
|
2176 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
2177 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: admin/html/whats-new.php:650
|
2181 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: admin/html/whats-new.php:652
|
2185 |
msgid ""
|
2186 |
"If you are using other language than English. Please <b>rename</b> your "
|
2187 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
2188 |
"change was made to support translations from translate.wordpress.org"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: admin/html/whats-new.php:655
|
2192 |
msgid "Added WP User Frontend Data export and erase functionality."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: admin/html/whats-new.php:657
|
2196 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: admin/html/whats-new.php:660
|
2200 |
msgid "Added billing address customizer."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: admin/html/whats-new.php:662
|
2204 |
msgid "Added customizer options for billing address in payment page."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: admin/html/whats-new.php:665
|
2208 |
msgid "Make the payment page responsive."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: admin/html/whats-new.php:667
|
2212 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: admin/html/whats-new.php:670
|
2216 |
msgid "Fixed image upload issue in Safari."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: admin/html/whats-new.php:672
|
2220 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: admin/html/whats-new.php:675
|
2224 |
msgid "Post update issue after updating or removing post images."
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: admin/html/whats-new.php:677
|
2228 |
msgid ""
|
2229 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
2230 |
"now."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: admin/html/whats-new.php:686
|
2234 |
msgid "Allow overriding form input styles using theme styling."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: admin/html/whats-new.php:688
|
2238 |
msgid "Overriding form input styles using theme style is now possible."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: admin/html/whats-new.php:691
|
2242 |
msgid "Fixed Auto Login after registration."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: admin/html/whats-new.php:693
|
2246 |
msgid "Auto Login after registration was not working is fixed now."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: admin/html/whats-new.php:696
|
2250 |
msgid "Fixed fallback cost calculation"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: admin/html/whats-new.php:698
|
2254 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: admin/html/whats-new.php:701
|
2258 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: admin/html/whats-new.php:703
|
2262 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: admin/html/whats-new.php:706
|
2266 |
msgid "Show Free pack users in subscribers list."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: admin/html/whats-new.php:708
|
2270 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: admin/html/whats-new.php:717
|
2274 |
msgid "WP User Frontend Guten Block is added"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: admin/html/whats-new.php:719
|
2278 |
msgid ""
|
2279 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
2280 |
"preview of the form. "
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: admin/html/whats-new.php:722
|
2284 |
msgid "Advanced Custom Fields plugin compatibility"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: admin/html/whats-new.php:724
|
2288 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: admin/html/whats-new.php:727
|
2292 |
msgid "Taxonomy Terms not showing for custom post types"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: admin/html/whats-new.php:729
|
2296 |
msgid ""
|
2297 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
2298 |
"within Form Settings and Dashboard Post Listing"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: admin/html/whats-new.php:732
|
2302 |
msgid "Various other code optimizations"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: admin/html/whats-new.php:734 admin/html/whats-new.php:791
|
2306 |
msgid "Code structure organization and optimization for better performance"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: admin/html/whats-new.php:743
|
2310 |
msgid "WoooCommerce billing address Sync"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: admin/html/whats-new.php:745
|
2314 |
msgid ""
|
2315 |
"If an existing customer has previously set his billing address, that will "
|
2316 |
"be imported into WPUF Billing address "
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: admin/html/whats-new.php:748
|
2320 |
msgid "Trial subscription message not showing properly"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: admin/html/whats-new.php:750
|
2324 |
msgid "Subscriptions with Trial now shows trial notices"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: admin/html/whats-new.php:753
|
2328 |
msgid "Reset email Key not working"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: admin/html/whats-new.php:755
|
2332 |
msgid "Reset Email key was not working in some cases"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: admin/html/whats-new.php:758
|
2336 |
msgid "Post count not showing on the frontend dashboard"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: admin/html/whats-new.php:760
|
2340 |
msgid ""
|
2341 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
2342 |
"now fixed and shows count for each post type"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: admin/html/whats-new.php:763
|
2346 |
msgid "Login Redirect showing blank page is fixed"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: admin/html/whats-new.php:765
|
2350 |
msgid ""
|
2351 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
2352 |
"redirecting to blank page for users who hit login page directly"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: admin/html/whats-new.php:774
|
2356 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: admin/html/whats-new.php:776
|
2360 |
msgid ""
|
2361 |
"You can choose Previous Page as Login Redirect page settings now to "
|
2362 |
"redirect users to the page from which they went for Login. "
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: admin/html/whats-new.php:779
|
2366 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: admin/html/whats-new.php:781
|
2370 |
msgid ""
|
2371 |
"For some clients emails were not rendering the HTML links properly, this is "
|
2372 |
"now fixed"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: admin/html/whats-new.php:784
|
2376 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: admin/html/whats-new.php:786
|
2380 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: admin/html/whats-new.php:789
|
2384 |
msgid "Various other code improvements"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: admin/html/whats-new.php:800
|
2388 |
msgid "Dashboard Post Listing now supports multiple post types"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: admin/html/whats-new.php:802
|
2392 |
msgid ""
|
2393 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
2394 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: admin/html/whats-new.php:805
|
2398 |
msgid "Added Login Redirect Settings"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: admin/html/whats-new.php:807
|
2402 |
msgid ""
|
2403 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
2404 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
2405 |
"redirected to this page after login."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: admin/html/whats-new.php:810
|
2409 |
msgid "Image Upload field button text can be changed"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: admin/html/whats-new.php:812
|
2413 |
msgid ""
|
2414 |
"The upload button text can now be changed for image upload fields which "
|
2415 |
"defaults to \"Select Image\" if not set. "
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: admin/html/whats-new.php:815
|
2419 |
msgid "Multi Step Form styles made compatible with more themes"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: admin/html/whats-new.php:817
|
2423 |
msgid "Multi Step form can now be styled more easily with other themes "
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: admin/html/whats-new.php:820
|
2427 |
msgid "Required field condition for google map not working is fixed"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: admin/html/whats-new.php:822
|
2431 |
msgid ""
|
2432 |
"If Google Map field was set as required users were able to submit form "
|
2433 |
"without changing the default value."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: admin/html/whats-new.php:831
|
2437 |
msgid "Admin form builder is now fully responsive."
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: admin/html/whats-new.php:833
|
2441 |
msgid ""
|
2442 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
2443 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
2444 |
"the go."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: admin/html/whats-new.php:836
|
2448 |
msgid "Added color schemes for creating attractive form layouts."
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: admin/html/whats-new.php:838
|
2452 |
msgid ""
|
2453 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
2454 |
"from each form's new display settings."
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: admin/html/whats-new.php:841
|
2458 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: admin/html/whats-new.php:843
|
2462 |
msgid ""
|
2463 |
"Free subscription packs now can only be purchased once and the limit "
|
2464 |
"applies properly"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: admin/html/whats-new.php:846
|
2468 |
msgid "Various other bug fixes and improvements were made "
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: admin/html/whats-new.php:848
|
2472 |
msgid "Please see the change log to see full details."
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: admin/html/whats-new.php:857
|
2476 |
msgid "Added upgrade function for default category"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: admin/html/whats-new.php:859
|
2480 |
msgid "Upgrader added to upgrade previously set default post category."
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: admin/html/whats-new.php:862
|
2484 |
msgid "Subscription pack cannot be canceled"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: admin/html/whats-new.php:864
|
2488 |
msgid ""
|
2489 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
2490 |
"in subscription details section."
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: admin/html/whats-new.php:867
|
2494 |
msgid "page installer admin notice logic issue"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: admin/html/whats-new.php:869
|
2498 |
msgid ""
|
2499 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
2500 |
"default value not set."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: admin/html/whats-new.php:879
|
2504 |
msgid "Setup Wizard"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: admin/html/whats-new.php:881
|
2508 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: admin/html/whats-new.php:885
|
2512 |
msgid "Multi-select Category"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: admin/html/whats-new.php:887
|
2516 |
msgid "Add multi-select to default category in post form settings."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: admin/html/whats-new.php:891
|
2520 |
msgid "Select Text option for Taxonomy"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: admin/html/whats-new.php:893
|
2524 |
msgid ""
|
2525 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
2526 |
"with empty value as first option for Taxonomy dropdown."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: admin/html/whats-new.php:896
|
2530 |
msgid "Taxonomy Checkbox Inline"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: admin/html/whats-new.php:898
|
2534 |
msgid ""
|
2535 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
2536 |
"Taxonomy checkbox fields inline."
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: admin/html/whats-new.php:908
|
2540 |
msgid "Manage schedule for form submission"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: admin/html/whats-new.php:910
|
2544 |
msgid ""
|
2545 |
"Do not accept form submission if the current date is not between the date "
|
2546 |
"range of the schedule."
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: admin/html/whats-new.php:914
|
2550 |
msgid "Restrict form submission based on the user roles"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: admin/html/whats-new.php:916
|
2554 |
msgid ""
|
2555 |
"Restrict form submission based on the user roles. Now you can manage user "
|
2556 |
"role base permission on form submission."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: admin/html/whats-new.php:920
|
2560 |
msgid "Limit how many entries a form will accept"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: admin/html/whats-new.php:922
|
2564 |
msgid ""
|
2565 |
"Limit how many entries a form will accept and display a custom message when "
|
2566 |
"that limit is reached."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: admin/html/whats-new.php:926
|
2570 |
msgid "Show/hide Admin Bar"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: admin/html/whats-new.php:928
|
2574 |
msgid "Control the admin bar visibility based on user roles."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: admin/html/whats-new.php:932
|
2578 |
msgid "Ajax Login widget"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: admin/html/whats-new.php:934
|
2582 |
msgid ""
|
2583 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
2584 |
"form do not required page loading for login."
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: admin/html/whats-new.php:938
|
2588 |
msgid "Form submission with Captcha field"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: admin/html/whats-new.php:940
|
2592 |
msgid "Form field validation process updated if form submits with captcha field."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: admin/html/whats-new.php:954
|
2596 |
msgid "What's New in WPUF?"
|
2597 |
msgstr ""
|
2598 |
|
3038 |
msgid "WP User Frontend Pro is the most powerful solution for your frontend needs."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: admin/promotion.php:41
|
3042 |
msgid "Enjoy Flat 50% OFF on WP User Frontend Pro. Get Your Early Bird Black Friday"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: admin/promotion.php:50
|
3046 |
msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Black Friday"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: admin/promotion.php:59
|
3050 |
msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Cyber Monday"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: admin/promotion.php:109
|
3054 |
msgid "Sure! I'd love to!"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: admin/promotion.php:110
|
3058 |
msgid "I've already left a review"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: admin/promotion.php:111
|
3062 |
msgid "Never show again"
|
3063 |
msgstr ""
|
3064 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: Forms, registration, profile-builder, login, membership, frontend-post
|
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.5.3
|
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,9 @@ redirected to the edit page with that post id. Then you'll see the edit post for
|
|
263 |
|
264 |
== Changelog ==
|
265 |
|
|
|
|
|
|
|
266 |
= v3.5.7 (21 November, 2020) =
|
267 |
* Enhancement - Custom html content field's width
|
268 |
* Enhancement - All states of New Zealand are added
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.5.3
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.5.8
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
263 |
|
264 |
== Changelog ==
|
265 |
|
266 |
+
= v3.5.8 (21 November, 2020) =
|
267 |
+
* Fix - Updated codebase to fix timezone mismatch
|
268 |
+
|
269 |
= v3.5.7 (21 November, 2020) =
|
270 |
* Enhancement - Custom html content field's width
|
271 |
* Enhancement - All states of New Zealand are added
|
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__ ) );
|
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
|
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.8' );
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', __DIR__ );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|