WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress - Version 3.5.15

Version Description

Download this release

Release Info

Developer tareq1988
Plugin Icon 128x128 WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress
Version 3.5.15
Comparing to
See all releases

Code changes from version 3.5.14 to 3.5.15

admin/html/whats-new.php CHANGED
@@ -1,5 +1,24 @@
1
  <?php
2
  $changelog = [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  [
4
  'version' => 'Version 3.5.14',
5
  'released' => '2021-03-08',
1
  <?php
2
  $changelog = [
3
+ [
4
+ 'version' => 'Version 3.5.15',
5
+ 'released' => '2021-03-15',
6
+ 'changes' => [
7
+
8
+ [
9
+ 'title' => __( 'Overflow footer on form builder page', 'wp-user-frontend' ),
10
+ 'type' => 'Fix',
11
+ ],
12
+ [
13
+ 'title' => __( 'WordPress 5.7 compatibility', 'wp-user-frontend' ),
14
+ 'type' => 'Fix',
15
+ ],
16
+ [
17
+ 'title' => __( 'Limited time promotion for weDevs birthday', 'wp-user-frontend' ),
18
+ 'type' => 'Notice',
19
+ ],
20
+ ],
21
+ ],
22
  [
23
  'version' => 'Version 3.5.14',
24
  'released' => '2021-03-08',
admin/promotion.php CHANGED
@@ -27,46 +27,12 @@ class WPUF_Admin_Promotion {
27
  $current_time = $this->convert_utc_to_est();
28
 
29
  if (
30
- strtotime( $current_time ) > strtotime( '2021-01-08 23:59:00 EST' )
31
- || strtotime( $current_time ) < strtotime( '2020-12-22 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' );
42
- $this->generate_notice( $notice, $option_name );
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' );
51
- $this->generate_notice( $notice, $option_name );
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' );
60
- $this->generate_notice( $notice, $option_name );
61
- }
62
-
63
- if (
64
- strtotime( '2020-12-22 09:00:00 EST' ) < strtotime( $current_time )
65
- && strtotime( $current_time ) < strtotime( '2021-01-08 23:59:00 EST' )
66
- ) {
67
- $option_name = 'wpuf_2020_chrismas';
68
- $notice = __( 'Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your ', 'wp-user-frontend' );
69
- $this->generate_notice( $notice, $option_name );
70
  }
71
  }
72
 
@@ -243,19 +209,14 @@ class WPUF_Admin_Promotion {
243
  }
244
  ?>
245
  <div class="notice notice-success is-dismissible" id="wpuf-bfcm-notice">
246
- <p>
247
- <?php echo $message; ?>
248
- <a
249
- href="https://wedevs.com/wp-user-frontend-pro/pricing?utm_medium=text&utm_source=wordpress-wpuf-holidays"
250
- target="_blank">Holiday Deals Now.</a>
251
- </p>
252
  <button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
253
  </div>
254
 
255
  <script type='text/javascript'>
256
  jQuery('body').on('click', '#wpuf-bfcm-notice .notice-dismiss', function (e) {
257
  e.preventDefault();
258
-
259
  wp.ajax.post('wpuf-dismiss-promotional-offer-notice', {
260
  dismissed: true,
261
  option_name: '<?php echo esc_html( $option_name ); ?>',
27
  $current_time = $this->convert_utc_to_est();
28
 
29
  if (
30
+ strtotime( '2021-03-15 09:00:00 EST' ) < strtotime( $current_time )
31
+ && strtotime( $current_time ) < strtotime( '2021-03-22 23:59:00 EST' )
 
 
 
 
 
 
 
32
  ) {
33
+ $option_name = 'wpuf_2021_wedevs_birthday';
34
+ $notice = sprintf( '<p>%s <a href="%s" target="_blank">%s</a></p>', __( 'It\'s Our Birthday! Enjoy Up To 45% OFF on WP User Frontend Pro', 'wp-user-frontend' ), 'https://wedevs.com/wp-user-frontend-pro/pricing?utm_medium=text&utm_source=wordpress-wpuf-wedevs-birthday', __( 'Get Now', 'wp-user-frontend' ) );
35
+ $this->generate_notice( $notice, $option_name );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  }
37
  }
38
 
209
  }
210
  ?>
211
  <div class="notice notice-success is-dismissible" id="wpuf-bfcm-notice">
212
+ <?php echo $message; ?>
 
 
 
 
 
213
  <button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
214
  </div>
215
 
216
  <script type='text/javascript'>
217
  jQuery('body').on('click', '#wpuf-bfcm-notice .notice-dismiss', function (e) {
218
  e.preventDefault();
219
+ jQuery('#wpuf-bfcm-notice').remove();
220
  wp.ajax.post('wpuf-dismiss-promotional-offer-notice', {
221
  dismissed: true,
222
  option_name: '<?php echo esc_html( $option_name ); ?>',
assets/css/frontend-forms.css CHANGED
@@ -1,4 +1,7 @@
1
  /* DivTable.com */
 
 
 
2
  .wpufTable {
3
  display: table;
4
  width: 100%;
1
  /* DivTable.com */
2
+ #wpfooter {
3
+ position: fixed !important;
4
+ }
5
  .wpufTable {
6
  display: table;
7
  width: 100%;
assets/js/wpuf-tmc-button.js CHANGED
@@ -3,7 +3,7 @@ jQuery(document).ready(function($) {
3
  tinymce.create('tinymce.plugins.wpuf_button', {
4
  init : function(editor, url) {
5
  var menuItem = [];
6
- var ds_img = wpuf_assets_url +'/images/ufp.png';
7
  $.each( wpuf_shortcodes, function( i, val ){
8
  var tempObj = {
9
  text : val.title,
3
  tinymce.create('tinymce.plugins.wpuf_button', {
4
  init : function(editor, url) {
5
  var menuItem = [];
6
+ var ds_img = wpuf_assets_url.url +'/images/ufp.png';
7
  $.each( wpuf_shortcodes, function( i, val ){
8
  var tempObj = {
9
  text : val.title,
assets/less/frontend-forms.less CHANGED
@@ -5,6 +5,9 @@
5
  @mediaMD: 1200px;
6
 
7
  /* DivTable.com */
 
 
 
8
  .wpufTable{
9
  display: table;
10
  width: 100%;
5
  @mediaMD: 1200px;
6
 
7
  /* DivTable.com */
8
+ #wpfooter {
9
+ position: fixed !important
10
+ }
11
  .wpufTable{
12
  display: table;
13
  width: 100%;
changelog.txt CHANGED
@@ -1,3 +1,9 @@
 
 
 
 
 
 
1
  = v3.5.14 (08 March, 2021) =
2
 
3
  * Fix - Meta key will not change if label update
1
+ = v3.5.15 (15 March, 2021) =
2
+
3
+ * Notice - Limited time promotion for weDevs birthday
4
+ * Fix - Overflow footer on form builder page
5
+ * Fix - WordPress 5.7 compatibility
6
+
7
  = v3.5.14 (08 March, 2021) =
8
 
9
  * Fix - Meta key will not change if label update
includes/free/admin/shortcode-button.php CHANGED
@@ -104,7 +104,7 @@ class WPUF_Shortcodes_Button {
104
  $assets_url = WPUF_ASSET_URI;
105
 
106
  wp_localize_script( 'wpuf-subscriptions', 'wpuf_shortcodes', apply_filters( 'wpuf_button_shortcodes', $shortcodes ) );
107
- wp_localize_script( 'wpuf-subscriptions', 'wpuf_assets_url', $assets_url );
108
  }
109
 
110
  /**
104
  $assets_url = WPUF_ASSET_URI;
105
 
106
  wp_localize_script( 'wpuf-subscriptions', 'wpuf_shortcodes', apply_filters( 'wpuf_button_shortcodes', $shortcodes ) );
107
+ wp_localize_script( 'wpuf-subscriptions', 'wpuf_assets_url', [ 'url' => $assets_url ] );
108
  }
109
 
110
  /**
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.14\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2021-03-08 11:19:00+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,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:217 admin/promotion.php:221 admin/promotion.php:278
573
- #: admin/promotion.php:282
574
  msgid "Unauthorized operation"
575
  msgstr ""
576
 
@@ -1412,569 +1412,581 @@ msgid "Contact Support"
1412
  msgstr ""
1413
 
1414
  #: admin/html/whats-new.php:9
1415
- msgid "Meta key will not change if label update"
1416
  msgstr ""
1417
 
1418
  #: admin/html/whats-new.php:13
1419
- msgid "Login redirect empty previous url"
1420
  msgstr ""
1421
 
1422
  #: admin/html/whats-new.php:17
 
 
 
 
 
 
 
 
 
 
 
 
1423
  msgid "Email doesnt set as username"
1424
  msgstr ""
1425
 
1426
- #: admin/html/whats-new.php:21
1427
  msgid "Post redirection to payment doesn't work"
1428
  msgstr ""
1429
 
1430
- #: admin/html/whats-new.php:25
1431
  msgid "Address field not working when used with conditional logic"
1432
  msgstr ""
1433
 
1434
- #: admin/html/whats-new.php:29
1435
  msgid "Ajax type category child of not working"
1436
  msgstr ""
1437
 
1438
- #: admin/html/whats-new.php:33
1439
  msgid "Non recurring subscription did not work"
1440
  msgstr ""
1441
 
1442
- #: admin/html/whats-new.php:44
1443
  msgid "Menu position has chenged due to dokan has same menu position"
1444
  msgstr ""
1445
 
1446
- #: admin/html/whats-new.php:48
1447
  msgid "Drag and drop not working properly for new field"
1448
  msgstr ""
1449
 
1450
- #: admin/html/whats-new.php:59
1451
  msgid "QR and math captcha added to pro feature list"
1452
  msgstr ""
1453
 
1454
- #: admin/html/whats-new.php:63
1455
  msgid "Tooltip for category navigate"
1456
  msgstr ""
1457
 
1458
- #: admin/html/whats-new.php:67
1459
  msgid "Understandable guest payment notice"
1460
  msgstr ""
1461
 
1462
- #: admin/html/whats-new.php:71
1463
  msgid "Paypal non recurring pack id does not set"
1464
  msgstr ""
1465
 
1466
- #: admin/html/whats-new.php:82
1467
  msgid "Once trial subscription is used, it couldn't reset"
1468
  msgstr ""
1469
 
1470
- #: admin/html/whats-new.php:86
1471
  msgid "Subscription cancel doesn't work"
1472
  msgstr ""
1473
 
1474
- #: admin/html/whats-new.php:90
1475
  msgid "The tax rate was not calculated with the total amount"
1476
  msgstr ""
1477
 
1478
- #: admin/html/whats-new.php:94
1479
  msgid "The width of the column field was breaking"
1480
  msgstr ""
1481
 
1482
- #: admin/html/whats-new.php:98
1483
  msgid "Paypal recurring payment"
1484
  msgstr ""
1485
 
1486
- #: admin/html/whats-new.php:109
1487
  msgid "Updated codebase to fix timezone mismatch"
1488
  msgstr ""
1489
 
1490
- #: admin/html/whats-new.php:120
1491
  msgid "Custom html content field's width"
1492
  msgstr ""
1493
 
1494
- #: admin/html/whats-new.php:124
1495
  msgid "All states of New Zealand are added"
1496
  msgstr ""
1497
 
1498
- #: admin/html/whats-new.php:135
1499
  msgid "Get appropriate user id when role based conditions are present"
1500
  msgstr ""
1501
 
1502
- #: admin/html/whats-new.php:139
1503
  msgid "Show Invalid subscription message if wrong pack id passed"
1504
  msgstr ""
1505
 
1506
- #: admin/html/whats-new.php:143
1507
  msgid "URL field new window not working"
1508
  msgstr ""
1509
 
1510
- #: admin/html/whats-new.php:147
1511
  msgid "Option label not working when & use"
1512
  msgstr ""
1513
 
1514
- #: admin/html/whats-new.php:151
1515
  msgid "Ajax type category not showing on edit"
1516
  msgstr ""
1517
 
1518
- #: admin/html/whats-new.php:155
1519
  msgid "Multiple file image can't select"
1520
  msgstr ""
1521
 
1522
- #: admin/html/whats-new.php:159
1523
  msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
1524
  msgstr ""
1525
 
1526
- #: admin/html/whats-new.php:163
1527
  msgid "Conflict image field with acf image field"
1528
  msgstr ""
1529
 
1530
- #: admin/html/whats-new.php:167
1531
  msgid "Missing Auckland State for New Zealand country"
1532
  msgstr ""
1533
 
1534
- #: admin/html/whats-new.php:171
1535
  msgid "Added support for WooCommerce product category value replacemen"
1536
  msgstr ""
1537
 
1538
- #: admin/html/whats-new.php:181
1539
  msgid "Add character restriction feature"
1540
  msgstr ""
1541
 
1542
- #: admin/html/whats-new.php:185
1543
  msgid "Make sure post author edit link works only in frontend"
1544
  msgstr ""
1545
 
1546
- #: admin/html/whats-new.php:189
1547
  msgid "Inconsistency in lost password reset email message"
1548
  msgstr ""
1549
 
1550
- #: admin/html/whats-new.php:193
1551
  msgid "Saving custom taxonomy terms when input type is text"
1552
  msgstr ""
1553
 
1554
- #: admin/html/whats-new.php:197
1555
  msgid "Taxonomy field JS error in builder"
1556
  msgstr ""
1557
 
1558
- #: admin/html/whats-new.php:201
1559
  msgid "Showing WPUF edit link for WP default roles"
1560
  msgstr ""
1561
 
1562
- #: admin/html/whats-new.php:205
1563
  msgid "Upload button unresponsive issue in iOS"
1564
  msgstr ""
1565
 
1566
- #: admin/html/whats-new.php:215
1567
  msgid "Add post edit link for post authors in single or archive pages"
1568
  msgstr ""
1569
 
1570
- #: admin/html/whats-new.php:219
1571
  msgid "Enhance post delete message"
1572
  msgstr ""
1573
 
1574
- #: admin/html/whats-new.php:223
1575
  msgid "Refactor control buttons visibility in form builder"
1576
  msgstr ""
1577
 
1578
- #: admin/html/whats-new.php:227
1579
  msgid "Add missing colons after field label"
1580
  msgstr ""
1581
 
1582
- #: admin/html/whats-new.php:231
1583
  msgid "Post edit map capability condition"
1584
  msgstr ""
1585
 
1586
- #: admin/html/whats-new.php:235
1587
  msgid "Role based permission for accessing a post form"
1588
  msgstr ""
1589
 
1590
- #: admin/html/whats-new.php:239
1591
  msgid "Section-break field alignment"
1592
  msgstr ""
1593
 
1594
- #: admin/html/whats-new.php:243
1595
  msgid "Pay per post doesn't work if subscription pack is activated"
1596
  msgstr ""
1597
 
1598
- #: admin/html/whats-new.php:247
1599
  msgid "Mime type for uploading JSON files"
1600
  msgstr ""
1601
 
1602
- #: admin/html/whats-new.php:251
1603
  msgid "File upload with same file name"
1604
  msgstr ""
1605
 
1606
- #: admin/html/whats-new.php:255
1607
  msgid "Post preview missing fields"
1608
  msgstr ""
1609
 
1610
- #: admin/html/whats-new.php:259
1611
  msgid "Illigal variable declartion"
1612
  msgstr ""
1613
 
1614
- #: admin/html/whats-new.php:263
1615
  msgid "Featured image updating issue"
1616
  msgstr ""
1617
 
1618
- #: admin/html/whats-new.php:267
1619
  msgid "Conflict with Phlox theme"
1620
  msgstr ""
1621
 
1622
- #: admin/html/whats-new.php:271
1623
  msgid "Textarea custom field data sanitization"
1624
  msgstr ""
1625
 
1626
- #: admin/html/whats-new.php:275
1627
  msgid "exclude_type warning in wpuf_category_checklist"
1628
  msgstr ""
1629
 
1630
- #: admin/html/whats-new.php:279
1631
  msgid "Category field not showing all child categories for selection type child of"
1632
  msgstr ""
1633
 
1634
- #: admin/html/whats-new.php:283
1635
  msgid "Conflict between image and file upload custom fields"
1636
  msgstr ""
1637
 
1638
- #: admin/html/whats-new.php:287
1639
  msgid "Login url when login page is not set"
1640
  msgstr ""
1641
 
1642
- #: admin/html/whats-new.php:297
1643
  msgid ""
1644
  "Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
1645
  "their official names"
1646
  msgstr ""
1647
 
1648
- #: admin/html/whats-new.php:301
1649
  msgid "Fix condition to use default avatar"
1650
  msgstr ""
1651
 
1652
- #: admin/html/whats-new.php:305
1653
  msgid "Make Email and URL fields clickable"
1654
  msgstr ""
1655
 
1656
- #: admin/html/whats-new.php:309
1657
  msgid "Fix redirect after user login"
1658
  msgstr ""
1659
 
1660
- #: admin/html/whats-new.php:313
1661
  msgid "Sanitize textarea field data"
1662
  msgstr ""
1663
 
1664
- #: admin/html/whats-new.php:317
1665
  msgid ""
1666
  "Fix missing colon to email, URL, text and textarea labels when renders "
1667
  "their data"
1668
  msgstr ""
1669
 
1670
- #: admin/html/whats-new.php:321
1671
  msgid "Prevent showing empty labels for fields that have render_field_data method"
1672
  msgstr ""
1673
 
1674
- #: admin/html/whats-new.php:331
1675
  msgid "Add Namibian Dollar in currency list"
1676
  msgstr ""
1677
 
1678
- #: admin/html/whats-new.php:335
1679
  msgid "Add sync values option for option data fields"
1680
  msgstr ""
1681
 
1682
- #: admin/html/whats-new.php:339
1683
  msgid "Allow uploading image that having filesize meets php ini settings"
1684
  msgstr ""
1685
 
1686
- #: admin/html/whats-new.php:343
1687
  msgid "Limit the selection of one image at a time"
1688
  msgstr ""
1689
 
1690
- #: admin/html/whats-new.php:347
1691
  msgid "Use file name and size to generate hash to prevent duplicant image upload"
1692
  msgstr ""
1693
 
1694
- #: admin/html/whats-new.php:351
1695
  msgid "Sanitize text and textarea field data"
1696
  msgstr ""
1697
 
1698
- #: admin/html/whats-new.php:355
1699
  msgid ""
1700
  "Show label instead of values for radio, checkbox, dropdown and multiselect "
1701
  "data"
1702
  msgstr ""
1703
 
1704
- #: admin/html/whats-new.php:359
1705
  msgid "Saving custom taxonomies for type text input"
1706
  msgstr ""
1707
 
1708
- #: admin/html/whats-new.php:363
1709
  msgid "Admin settings link for recaptcha helper text"
1710
  msgstr ""
1711
 
1712
- #: admin/html/whats-new.php:367
1713
  msgid "Undefined name property for Custom HTML fields"
1714
  msgstr ""
1715
 
1716
- #: admin/html/whats-new.php:371
1717
  msgid "Delete attachment process"
1718
  msgstr ""
1719
 
1720
- #: admin/html/whats-new.php:375
1721
  msgid "Missing billing address in invoice PDF"
1722
  msgstr ""
1723
 
1724
- #: admin/html/whats-new.php:379
1725
  msgid "Showing country field value in frontend post content"
1726
  msgstr ""
1727
 
1728
- #: admin/html/whats-new.php:383
1729
  msgid "Avatar size display not complying with admin settings size"
1730
  msgstr ""
1731
 
1732
- #: admin/html/whats-new.php:387
1733
  msgid "Display default avatars on admin settings discussion page"
1734
  msgstr ""
1735
 
1736
- #: admin/html/whats-new.php:391
1737
  msgid "Redirect to subscription page at registration"
1738
  msgstr ""
1739
 
1740
- #: admin/html/whats-new.php:395
1741
  msgid "Error notice regarding registration page redirect"
1742
  msgstr ""
1743
 
1744
- #: admin/html/whats-new.php:399
1745
  msgid "Escaping html in registration errors"
1746
  msgstr ""
1747
 
1748
- #: admin/html/whats-new.php:403
1749
  msgid "Default login redirect link"
1750
  msgstr ""
1751
 
1752
- #: admin/html/whats-new.php:407
1753
  msgid "Implementing default WP login page override option"
1754
  msgstr ""
1755
 
1756
- #: admin/html/whats-new.php:411
1757
  msgid "Transparent background of autosuggestion dropdown"
1758
  msgstr ""
1759
 
1760
- #: admin/html/whats-new.php:421
1761
  msgid "Import forms system"
1762
  msgstr ""
1763
 
1764
- #: admin/html/whats-new.php:425
1765
  msgid "Password reset system"
1766
  msgstr ""
1767
 
1768
- #: admin/html/whats-new.php:429
1769
  msgid "Updated url validation regex to support modern tlds"
1770
  msgstr ""
1771
 
1772
- #: admin/html/whats-new.php:433
1773
  msgid "Export WPUF forms individually from admin tools page"
1774
  msgstr ""
1775
 
1776
- #: admin/html/whats-new.php:437
1777
  msgid "Subscription cycle label translation issue"
1778
  msgstr ""
1779
 
1780
- #: admin/html/whats-new.php:441
1781
  msgid "ACF integration for checkbox fields"
1782
  msgstr ""
1783
 
1784
- #: admin/html/whats-new.php:445
1785
  msgid "Illegal string offset warning while updating settings"
1786
  msgstr ""
1787
 
1788
- #: admin/html/whats-new.php:449
1789
  msgid "Conditional logic for Section Break field"
1790
  msgstr ""
1791
 
1792
- #: admin/html/whats-new.php:453
1793
  msgid "Subscriptions cannot be deleted from backend"
1794
  msgstr ""
1795
 
1796
- #: admin/html/whats-new.php:457
1797
  msgid "A regression regarding saving checkbox data"
1798
  msgstr ""
1799
 
1800
- #: admin/html/whats-new.php:461
1801
  msgid "Default value of multi-select fields is not showing"
1802
  msgstr ""
1803
 
1804
- #: admin/html/whats-new.php:471
1805
  msgid "Hide post edit option when subscription is expired"
1806
  msgstr ""
1807
 
1808
- #: admin/html/whats-new.php:473
1809
  msgid "Hide post edit option from users whose subscription pack is expired."
1810
  msgstr ""
1811
 
1812
- #: admin/html/whats-new.php:476
1813
  msgid "Check files to prevent duplicity in media upload"
1814
  msgstr ""
1815
 
1816
- #: admin/html/whats-new.php:478
1817
  msgid ""
1818
  "A simple measure has been taken to prevent maliciously flooding the site by "
1819
  "uploading same file multiple times. Though this won't work with already "
1820
  "uploaded medias."
1821
  msgstr ""
1822
 
1823
- #: admin/html/whats-new.php:481
1824
  msgid "Refactor address fields in Account section"
1825
  msgstr ""
1826
 
1827
- #: admin/html/whats-new.php:483
1828
  msgid "Address edit section from Account section has been rewritten to improve UX."
1829
  msgstr ""
1830
 
1831
- #: admin/html/whats-new.php:486
1832
  msgid "Update Paypal payment gateway"
1833
  msgstr ""
1834
 
1835
- #: admin/html/whats-new.php:488
1836
  msgid "Paypal payment gateway has seen some improvements."
1837
  msgstr ""
1838
 
1839
- #: admin/html/whats-new.php:491
1840
  msgid "Default Category selection improvements"
1841
  msgstr ""
1842
 
1843
- #: admin/html/whats-new.php:493
1844
  msgid ""
1845
  "An intuitive way of selecting default category of a selected post type has "
1846
  "been introduced."
1847
  msgstr ""
1848
 
1849
- #: admin/html/whats-new.php:496
1850
  msgid "Compatibility issue with ACF date time field"
1851
  msgstr ""
1852
 
1853
- #: admin/html/whats-new.php:498
1854
  msgid "A Compatibility issue with ACF date time field has been addressed."
1855
  msgstr ""
1856
 
1857
- #: admin/html/whats-new.php:501
1858
  msgid "Media title, caption & description not saving"
1859
  msgstr ""
1860
 
1861
- #: admin/html/whats-new.php:503
1862
  msgid ""
1863
  "Media title, caption & description were not saving from frontend. They will "
1864
  "now."
1865
  msgstr ""
1866
 
1867
- #: admin/html/whats-new.php:506
1868
  msgid ""
1869
  "The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
1870
  "metabox"
1871
  msgstr ""
1872
 
1873
- #: admin/html/whats-new.php:508
1874
  msgid ""
1875
  "A workaround has been introduced to save The Events Calendar Venue and "
1876
  "Organizer fields properly from WPUF Custom Fields metabox."
1877
  msgstr ""
1878
 
1879
- #: admin/html/whats-new.php:511
1880
  msgid "Checkbox data not saving from WPUF Custom Fields metabox"
1881
  msgstr ""
1882
 
1883
- #: admin/html/whats-new.php:513
1884
  msgid ""
1885
  "Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
1886
  "fixed."
1887
  msgstr ""
1888
 
1889
- #: admin/html/whats-new.php:516
1890
  msgid "Multi-column Repeater field data saving issue"
1891
  msgstr ""
1892
 
1893
- #: admin/html/whats-new.php:518
1894
  msgid ""
1895
  "Multi-column Repeater field data from a form was not saving. It has been "
1896
  "fixed."
1897
  msgstr ""
1898
 
1899
- #: admin/html/whats-new.php:521
1900
  msgid "Multistep form conflict with Elementor"
1901
  msgstr ""
1902
 
1903
- #: admin/html/whats-new.php:523
1904
  msgid "Multistep form had a conflict with Elementor. It has been fixed."
1905
  msgstr ""
1906
 
1907
- #: admin/html/whats-new.php:526
1908
  msgid "Multiple images showing issue in frontend"
1909
  msgstr ""
1910
 
1911
- #: admin/html/whats-new.php:528
1912
  msgid "Multiple images in a post were not showing in frontend. Now they will."
1913
  msgstr ""
1914
 
1915
- #: admin/html/whats-new.php:537
1916
  msgid "Nonce not verify on login"
1917
  msgstr ""
1918
 
1919
- #: admin/html/whats-new.php:539
1920
  msgid "Return of function wp_verify_nonce() was ignored."
1921
  msgstr ""
1922
 
1923
- #: admin/html/whats-new.php:548
1924
  msgid "Option to set which tab shows as active on the account page"
1925
  msgstr ""
1926
 
1927
- #: admin/html/whats-new.php:550
1928
  msgid ""
1929
  "Option to set which tab shows as active on the account page. To configure "
1930
  "this setting navigate to wp-admin->User Frontend->Settings->My "
1931
  "Account->Active Tab "
1932
  msgstr ""
1933
 
1934
- #: admin/html/whats-new.php:553
1935
  msgid "Unlock option was unavailable after the post being locked"
1936
  msgstr ""
1937
 
1938
- #: admin/html/whats-new.php:555
1939
  msgid "Unlock option was unavailable after the post being locked."
1940
  msgstr ""
1941
 
1942
- #: admin/html/whats-new.php:558
1943
  msgid "Gutenberg block of WPUF didn't work on bedrock installation"
1944
  msgstr ""
1945
 
1946
- #: admin/html/whats-new.php:560
1947
  msgid "Gutenberg block of WPUF didn't work on bedrock installation."
1948
  msgstr ""
1949
 
1950
- #: admin/html/whats-new.php:563
1951
  msgid "Sending admin payment received email twice"
1952
  msgstr ""
1953
 
1954
- #: admin/html/whats-new.php:565
1955
  msgid ""
1956
  "After processing payment admin & user was receiving payment received email "
1957
  "twice."
1958
  msgstr ""
1959
 
1960
- #: admin/html/whats-new.php:568
1961
  msgid ""
1962
  "Add shortcode support to display post information in the Post Expiration "
1963
  "Message"
1964
  msgstr ""
1965
 
1966
- #: admin/html/whats-new.php:570
1967
  msgid ""
1968
  "Add shortcode support to display post information in the Post Expiration "
1969
  "Message. You can use: <strong>{post_author} {post_url} {blogname} "
1970
  "{post_title} {post_status}</strong>"
1971
  msgstr ""
1972
 
1973
- #: admin/html/whats-new.php:573
1974
  msgid "Add optin on the setup wizard"
1975
  msgstr ""
1976
 
1977
- #: admin/html/whats-new.php:575
1978
  msgid ""
1979
  "Added optin on the setup wizard, admin can choose whether he/she wants to "
1980
  "share server environment details (php, mysql, server, WordPress versions), "
@@ -1982,126 +1994,126 @@ msgid ""
1982
  "name and url, admin name and email address. No sensitive data is tracked"
1983
  msgstr ""
1984
 
1985
- #: admin/html/whats-new.php:584
1986
  msgid "Post Owner problem"
1987
  msgstr ""
1988
 
1989
- #: admin/html/whats-new.php:586
1990
  msgid ""
1991
  "Posts were not assigned to the selected default post owner, this issue has "
1992
  "been fixed."
1993
  msgstr ""
1994
 
1995
- #: admin/html/whats-new.php:589
1996
  msgid "Google reCaptcha was not working"
1997
  msgstr ""
1998
 
1999
- #: admin/html/whats-new.php:591
2000
  msgid ""
2001
  "Google reCaptcha was not working, users could submit the form without "
2002
  "reCaptcha validation."
2003
  msgstr ""
2004
 
2005
- #: admin/html/whats-new.php:600
2006
  msgid "Added column field"
2007
  msgstr ""
2008
 
2009
- #: admin/html/whats-new.php:605
2010
  msgid "Unable to render the events on the front-end dashboard"
2011
  msgstr ""
2012
 
2013
- #: admin/html/whats-new.php:607
2014
  msgid ""
2015
  "On the frontend dashboard, the submitted events were not showing, you will "
2016
  "get it fixed in this version."
2017
  msgstr ""
2018
 
2019
- #: admin/html/whats-new.php:610
2020
  msgid "Page order getting 0(zero) after editing from the frontend"
2021
  msgstr ""
2022
 
2023
- #: admin/html/whats-new.php:612
2024
  msgid ""
2025
  "Page order was not saving while editing a post using WPUF form, it has been "
2026
  "fixed."
2027
  msgstr ""
2028
 
2029
- #: admin/html/whats-new.php:615
2030
  msgid "Text input field for taxonomies not working"
2031
  msgstr ""
2032
 
2033
- #: admin/html/whats-new.php:617
2034
  msgid ""
2035
  "When taxonomy field type is set to `Text Input` then a fatal error was "
2036
  "showing on the frontend, no error with taxonomy field in the latest version."
2037
  msgstr ""
2038
 
2039
- #: admin/html/whats-new.php:620
2040
  msgid ""
2041
  "In radio and checkbox field use conditional logic that value does not save "
2042
  "in database"
2043
  msgstr ""
2044
 
2045
- #: admin/html/whats-new.php:622
2046
  msgid ""
2047
  "The selected value of radio and checkbox field were not showing while "
2048
  "editing posts from the backend or frontend, you can see the selected value "
2049
  "in this version."
2050
  msgstr ""
2051
 
2052
- #: admin/html/whats-new.php:625
2053
  msgid "The args param not working with get_avatar filter"
2054
  msgstr ""
2055
 
2056
- #: admin/html/whats-new.php:627
2057
  msgid "The args parameter did not exist with get_avatar filter, which now exists."
2058
  msgstr ""
2059
 
2060
- #: admin/html/whats-new.php:630
2061
  msgid "The item in ajax taxonomy field was not selected"
2062
  msgstr ""
2063
 
2064
- #: admin/html/whats-new.php:632
2065
  msgid ""
2066
  "When the taxonomy field type is set to Ajax, the submitted terms were not "
2067
  "showing in the backend and frontend which have been fixed."
2068
  msgstr ""
2069
 
2070
- #: admin/html/whats-new.php:641
2071
  msgid "Unable to send new user registration email"
2072
  msgstr ""
2073
 
2074
- #: admin/html/whats-new.php:643
2075
  msgid ""
2076
  "WP User Frontend default registration form `[wpuf-registration]` was unable "
2077
  "to send the new user registration email."
2078
  msgstr ""
2079
 
2080
- #: admin/html/whats-new.php:646
2081
  msgid "WPUF forms block compatibility issue with the latest WP version"
2082
  msgstr ""
2083
 
2084
- #: admin/html/whats-new.php:648
2085
  msgid ""
2086
  "With the latest version of WordPress the gutenberg block of WP User "
2087
  "Frontend were not working. In this version, you will get it fixed."
2088
  msgstr ""
2089
 
2090
- #: admin/html/whats-new.php:651
2091
  msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
2092
  msgstr ""
2093
 
2094
- #: admin/html/whats-new.php:653
2095
  msgid ""
2096
  "While using Gutenberg, the page were not being updated with WPUF shortcode "
2097
  "[wpuf dashboard]"
2098
  msgstr ""
2099
 
2100
- #: admin/html/whats-new.php:656
2101
  msgid "Retain default when determining whether to display the admin bar"
2102
  msgstr ""
2103
 
2104
- #: admin/html/whats-new.php:658
2105
  msgid ""
2106
  "From the User Frontend Settings, set that Administrator, Editor, Vendor can "
2107
  "see the admin bar. Now, the super admin want, one specific user ( who has "
@@ -2111,11 +2123,11 @@ msgid ""
2111
  "frontend."
2112
  msgstr ""
2113
 
2114
- #: admin/html/whats-new.php:661
2115
  msgid "Fatal error when use PHP lower version (5.4 or lower)"
2116
  msgstr ""
2117
 
2118
- #: admin/html/whats-new.php:663
2119
  msgid ""
2120
  "It was unable to install WP User Frontend with PHP 5.4 or lower version. "
2121
  "Here is the error details: <br><br><strong>Fatal error: Can't use method "
@@ -2123,42 +2135,42 @@ msgid ""
2123
  "/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
2124
  msgstr ""
2125
 
2126
- #: admin/html/whats-new.php:666
2127
  msgid "Product form was unable to show the single gallery image"
2128
  msgstr ""
2129
 
2130
- #: admin/html/whats-new.php:668
2131
  msgid ""
2132
  "When user upload single image for product gallery using WPUF WooCommerce "
2133
  "product form, that image were not showing on the frontend."
2134
  msgstr ""
2135
 
2136
- #: admin/html/whats-new.php:677
2137
  msgid "WooCommerce gallery images not getting saved"
2138
  msgstr ""
2139
 
2140
- #: admin/html/whats-new.php:679
2141
  msgid ""
2142
  "After releasing version 2.9.3, WooCommerce gallery image field stopped "
2143
  "working. You will get it fixed in this version."
2144
  msgstr ""
2145
 
2146
- #: admin/html/whats-new.php:688
2147
  msgid "The Events Calendar Integration Form"
2148
  msgstr ""
2149
 
2150
- #: admin/html/whats-new.php:690
2151
  msgid ""
2152
  "Now admin can allow users to create event from the frontend. Currently WPUF "
2153
  "has a one click pre-build event form that has been integrated with The "
2154
  "Events Calendar plugin"
2155
  msgstr ""
2156
 
2157
- #: admin/html/whats-new.php:693
2158
  msgid "Post Submission Facility From Account Page"
2159
  msgstr ""
2160
 
2161
- #: admin/html/whats-new.php:695
2162
  msgid ""
2163
  "On the frontend account page, added a new menu item named <b>Submit "
2164
  "Post</b>. Now admin can allow users to submit post from their default "
@@ -2167,504 +2179,504 @@ msgid ""
2167
  "you can assign any post form that will use to submit posts."
2168
  msgstr ""
2169
 
2170
- #: admin/html/whats-new.php:698
2171
  msgid "Login/Lost Password Link Under Registration Form"
2172
  msgstr ""
2173
 
2174
- #: admin/html/whats-new.php:700
2175
  msgid "Added Login/Lost Password link under registration form"
2176
  msgstr ""
2177
 
2178
- #: admin/html/whats-new.php:709
2179
  msgid "Added drag and drop image ordering on image upload"
2180
  msgstr ""
2181
 
2182
- #: admin/html/whats-new.php:711
2183
  msgid ""
2184
  "Now frontend users can drag & drop the images/files to change the order "
2185
  "while uploading."
2186
  msgstr ""
2187
 
2188
- #: admin/html/whats-new.php:714
2189
  msgid "Added reCAPTCHA field in login form"
2190
  msgstr ""
2191
 
2192
- #: admin/html/whats-new.php:716
2193
  msgid ""
2194
  "Admin has the option to show reCAPTCHA field in login form. Check the "
2195
  "related settings from <strong>User Frontend > Settings > "
2196
  "Login/Registration</strong>"
2197
  msgstr ""
2198
 
2199
- #: admin/html/whats-new.php:719
2200
  msgid "Added preview option in forms"
2201
  msgstr ""
2202
 
2203
- #: admin/html/whats-new.php:721
2204
  msgid ""
2205
  "You can see a nice <strong>Preview</strong> button with <strong>Save "
2206
  "Form</strong> button, admin can take a quick look of the form without using "
2207
  "shortcode"
2208
  msgstr ""
2209
 
2210
- #: admin/html/whats-new.php:724
2211
  msgid "Fixed hiding “Select Image” button while uploading multiple images."
2212
  msgstr ""
2213
 
2214
- #: admin/html/whats-new.php:726
2215
  msgid ""
2216
  "The upload button will not be hidden until the user selects max number of "
2217
  "files "
2218
  msgstr ""
2219
 
2220
- #: admin/html/whats-new.php:729
2221
  msgid "Added form limit notice before form submission"
2222
  msgstr ""
2223
 
2224
- #: admin/html/whats-new.php:731
2225
  msgid ""
2226
  "Limit notice message was showing after submission, now it is showing when "
2227
  "rendering the form"
2228
  msgstr ""
2229
 
2230
- #: admin/html/whats-new.php:734
2231
  msgid "Fixed: default post category not saving"
2232
  msgstr ""
2233
 
2234
- #: admin/html/whats-new.php:736
2235
  msgid ""
2236
  "From the form <strong>Settings > Post Settings</strong>, default post "
2237
  "category options were not saving. Now, it's fixed."
2238
  msgstr ""
2239
 
2240
- #: admin/html/whats-new.php:739
2241
  msgid ""
2242
  "WPUF dashboard shortcode with form_id attribute was not showing posts "
2243
  "properly"
2244
  msgstr ""
2245
 
2246
- #: admin/html/whats-new.php:741
2247
  msgid ""
2248
  "Now you can list posts on the frontend by using <strong>form_id<strong/> "
2249
  "attribute with <strong>[wpuf_dashboard]</strong> shortcode"
2250
  msgstr ""
2251
 
2252
- #: admin/html/whats-new.php:750
2253
  msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
2254
  msgstr ""
2255
 
2256
- #: admin/html/whats-new.php:752
2257
  msgid ""
2258
  "If you are using other language than English. Please <b>rename</b> your "
2259
  "<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
2260
  "change was made to support translations from translate.wordpress.org"
2261
  msgstr ""
2262
 
2263
- #: admin/html/whats-new.php:755
2264
  msgid "Added WP User Frontend Data export and erase functionality."
2265
  msgstr ""
2266
 
2267
- #: admin/html/whats-new.php:757
2268
  msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
2269
  msgstr ""
2270
 
2271
- #: admin/html/whats-new.php:760
2272
  msgid "Added billing address customizer."
2273
  msgstr ""
2274
 
2275
- #: admin/html/whats-new.php:762
2276
  msgid "Added customizer options for billing address in payment page."
2277
  msgstr ""
2278
 
2279
- #: admin/html/whats-new.php:765
2280
  msgid "Make the payment page responsive."
2281
  msgstr ""
2282
 
2283
- #: admin/html/whats-new.php:767
2284
  msgid "Some css adjustments are made in payment page to make it responsive."
2285
  msgstr ""
2286
 
2287
- #: admin/html/whats-new.php:770
2288
  msgid "Fixed image upload issue in Safari."
2289
  msgstr ""
2290
 
2291
- #: admin/html/whats-new.php:772
2292
  msgid "Images were not showing after upload in safari, it is fixed now."
2293
  msgstr ""
2294
 
2295
- #: admin/html/whats-new.php:775
2296
  msgid "Post update issue after updating or removing post images."
2297
  msgstr ""
2298
 
2299
- #: admin/html/whats-new.php:777
2300
  msgid ""
2301
  "Posts cannot be updated after updating or removing post images, it is fixed "
2302
  "now."
2303
  msgstr ""
2304
 
2305
- #: admin/html/whats-new.php:786
2306
  msgid "Allow overriding form input styles using theme styling."
2307
  msgstr ""
2308
 
2309
- #: admin/html/whats-new.php:788
2310
  msgid "Overriding form input styles using theme style is now possible."
2311
  msgstr ""
2312
 
2313
- #: admin/html/whats-new.php:791
2314
  msgid "Fixed Auto Login after registration."
2315
  msgstr ""
2316
 
2317
- #: admin/html/whats-new.php:793
2318
  msgid "Auto Login after registration was not working is fixed now."
2319
  msgstr ""
2320
 
2321
- #: admin/html/whats-new.php:796
2322
  msgid "Fixed fallback cost calculation"
2323
  msgstr ""
2324
 
2325
- #: admin/html/whats-new.php:798
2326
  msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
2327
  msgstr ""
2328
 
2329
- #: admin/html/whats-new.php:801
2330
  msgid "Removal of subscription from User Profile gets reverted if updated"
2331
  msgstr ""
2332
 
2333
- #: admin/html/whats-new.php:803
2334
  msgid "User subscription deletion gets reverted if updated is fixed."
2335
  msgstr ""
2336
 
2337
- #: admin/html/whats-new.php:806
2338
  msgid "Show Free pack users in subscribers list."
2339
  msgstr ""
2340
 
2341
- #: admin/html/whats-new.php:808
2342
  msgid "Free pack users were not showing in subscribers list, now they will."
2343
  msgstr ""
2344
 
2345
- #: admin/html/whats-new.php:817
2346
  msgid "WP User Frontend Guten Block is added"
2347
  msgstr ""
2348
 
2349
- #: admin/html/whats-new.php:819
2350
  msgid ""
2351
  "WPUF Form Block is now available to be used within gutenberg editor with "
2352
  "preview of the form. "
2353
  msgstr ""
2354
 
2355
- #: admin/html/whats-new.php:822
2356
  msgid "Advanced Custom Fields plugin compatibility"
2357
  msgstr ""
2358
 
2359
- #: admin/html/whats-new.php:824
2360
  msgid "Now all your ACF fields can be used within WPUF Post forms. "
2361
  msgstr ""
2362
 
2363
- #: admin/html/whats-new.php:827
2364
  msgid "Taxonomy Terms not showing for custom post types"
2365
  msgstr ""
2366
 
2367
- #: admin/html/whats-new.php:829
2368
  msgid ""
2369
  "Fixed an issue with taxonomy terms not appearing for Custom Post types "
2370
  "within Form Settings and Dashboard Post Listing"
2371
  msgstr ""
2372
 
2373
- #: admin/html/whats-new.php:832
2374
  msgid "Various other code optimizations"
2375
  msgstr ""
2376
 
2377
- #: admin/html/whats-new.php:834 admin/html/whats-new.php:891
2378
  msgid "Code structure organization and optimization for better performance"
2379
  msgstr ""
2380
 
2381
- #: admin/html/whats-new.php:843
2382
  msgid "WoooCommerce billing address Sync"
2383
  msgstr ""
2384
 
2385
- #: admin/html/whats-new.php:845
2386
  msgid ""
2387
  "If an existing customer has previously set his billing address, that will "
2388
  "be imported into WPUF Billing address "
2389
  msgstr ""
2390
 
2391
- #: admin/html/whats-new.php:848
2392
  msgid "Trial subscription message not showing properly"
2393
  msgstr ""
2394
 
2395
- #: admin/html/whats-new.php:850
2396
  msgid "Subscriptions with Trial now shows trial notices"
2397
  msgstr ""
2398
 
2399
- #: admin/html/whats-new.php:853
2400
  msgid "Reset email Key not working"
2401
  msgstr ""
2402
 
2403
- #: admin/html/whats-new.php:855
2404
  msgid "Reset Email key was not working in some cases"
2405
  msgstr ""
2406
 
2407
- #: admin/html/whats-new.php:858
2408
  msgid "Post count not showing on the frontend dashboard"
2409
  msgstr ""
2410
 
2411
- #: admin/html/whats-new.php:860
2412
  msgid ""
2413
  "Dashboard with multiple post type was not showing post counts properly, is "
2414
  "now fixed and shows count for each post type"
2415
  msgstr ""
2416
 
2417
- #: admin/html/whats-new.php:863
2418
  msgid "Login Redirect showing blank page is fixed"
2419
  msgstr ""
2420
 
2421
- #: admin/html/whats-new.php:865
2422
  msgid ""
2423
  "If \"Previous Page\" was set for redirection, login redirect was "
2424
  "redirecting to blank page for users who hit login page directly"
2425
  msgstr ""
2426
 
2427
- #: admin/html/whats-new.php:874
2428
  msgid "Enhanced Login Redirect to redirect users to previous page"
2429
  msgstr ""
2430
 
2431
- #: admin/html/whats-new.php:876
2432
  msgid ""
2433
  "You can choose Previous Page as Login Redirect page settings now to "
2434
  "redirect users to the page from which they went for Login. "
2435
  msgstr ""
2436
 
2437
- #: admin/html/whats-new.php:879
2438
  msgid "Email HTML links not Rendreing properly issue is fixed"
2439
  msgstr ""
2440
 
2441
- #: admin/html/whats-new.php:881
2442
  msgid ""
2443
  "For some clients emails were not rendering the HTML links properly, this is "
2444
  "now fixed"
2445
  msgstr ""
2446
 
2447
- #: admin/html/whats-new.php:884
2448
  msgid "Form Builder : Form Field's Help text styles not showing properly"
2449
  msgstr ""
2450
 
2451
- #: admin/html/whats-new.php:886
2452
  msgid "Help texts styling is now fixed and much easier to read and understand"
2453
  msgstr ""
2454
 
2455
- #: admin/html/whats-new.php:889
2456
  msgid "Various other code improvements"
2457
  msgstr ""
2458
 
2459
- #: admin/html/whats-new.php:900
2460
  msgid "Dashboard Post Listing now supports multiple post types"
2461
  msgstr ""
2462
 
2463
- #: admin/html/whats-new.php:902
2464
  msgid ""
2465
  "Now you can show multiple post type in user dashboard using shortcode like "
2466
  "this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
2467
  msgstr ""
2468
 
2469
- #: admin/html/whats-new.php:905
2470
  msgid "Added Login Redirect Settings"
2471
  msgstr ""
2472
 
2473
- #: admin/html/whats-new.php:907
2474
  msgid ""
2475
  "You can now set a page from <i>WPUF Settings > Login/Registration > "
2476
  "Redirect after Login</i>. When login redirection is active the user will be "
2477
  "redirected to this page after login."
2478
  msgstr ""
2479
 
2480
- #: admin/html/whats-new.php:910
2481
  msgid "Image Upload field button text can be changed"
2482
  msgstr ""
2483
 
2484
- #: admin/html/whats-new.php:912
2485
  msgid ""
2486
  "The upload button text can now be changed for image upload fields which "
2487
  "defaults to \"Select Image\" if not set. "
2488
  msgstr ""
2489
 
2490
- #: admin/html/whats-new.php:915
2491
  msgid "Multi Step Form styles made compatible with more themes"
2492
  msgstr ""
2493
 
2494
- #: admin/html/whats-new.php:917
2495
  msgid "Multi Step form can now be styled more easily with other themes "
2496
  msgstr ""
2497
 
2498
- #: admin/html/whats-new.php:920
2499
  msgid "Required field condition for google map not working is fixed"
2500
  msgstr ""
2501
 
2502
- #: admin/html/whats-new.php:922
2503
  msgid ""
2504
  "If Google Map field was set as required users were able to submit form "
2505
  "without changing the default value."
2506
  msgstr ""
2507
 
2508
- #: admin/html/whats-new.php:931
2509
  msgid "Admin form builder is now fully responsive."
2510
  msgstr ""
2511
 
2512
- #: admin/html/whats-new.php:933
2513
  msgid ""
2514
  "Now you can edit forms from your mobile devices directly. Our improved "
2515
  "responsive layouts of form builder makes it easy for you to build forms on "
2516
  "the go."
2517
  msgstr ""
2518
 
2519
- #: admin/html/whats-new.php:936
2520
  msgid "Added color schemes for creating attractive form layouts."
2521
  msgstr ""
2522
 
2523
- #: admin/html/whats-new.php:938
2524
  msgid ""
2525
  "We have added 3 new color schemes for the form layouts which you can choose "
2526
  "from each form's new display settings."
2527
  msgstr ""
2528
 
2529
- #: admin/html/whats-new.php:941
2530
  msgid "Restrict Free subscription pack to be enabled multiple times "
2531
  msgstr ""
2532
 
2533
- #: admin/html/whats-new.php:943
2534
  msgid ""
2535
  "Free subscription packs now can only be purchased once and the limit "
2536
  "applies properly"
2537
  msgstr ""
2538
 
2539
- #: admin/html/whats-new.php:946
2540
  msgid "Various other bug fixes and improvements were made "
2541
  msgstr ""
2542
 
2543
- #: admin/html/whats-new.php:948
2544
  msgid "Please see the change log to see full details."
2545
  msgstr ""
2546
 
2547
- #: admin/html/whats-new.php:957
2548
  msgid "Added upgrade function for default category"
2549
  msgstr ""
2550
 
2551
- #: admin/html/whats-new.php:959
2552
  msgid "Upgrader added to upgrade previously set default post category."
2553
  msgstr ""
2554
 
2555
- #: admin/html/whats-new.php:962
2556
  msgid "Subscription pack cannot be canceled"
2557
  msgstr ""
2558
 
2559
- #: admin/html/whats-new.php:964
2560
  msgid ""
2561
  "Fixed recurring subscription pack cannot be canceled from my account page "
2562
  "in subscription details section."
2563
  msgstr ""
2564
 
2565
- #: admin/html/whats-new.php:967
2566
  msgid "page installer admin notice logic issue"
2567
  msgstr ""
2568
 
2569
- #: admin/html/whats-new.php:969
2570
  msgid ""
2571
  "Fixed page installer admin notice logic problem due to new payment settings "
2572
  "default value not set."
2573
  msgstr ""
2574
 
2575
- #: admin/html/whats-new.php:979
2576
  msgid "Setup Wizard"
2577
  msgstr ""
2578
 
2579
- #: admin/html/whats-new.php:981
2580
  msgid "Setup Wizard added to turn off payment options and install pages."
2581
  msgstr ""
2582
 
2583
- #: admin/html/whats-new.php:985
2584
  msgid "Multi-select Category"
2585
  msgstr ""
2586
 
2587
- #: admin/html/whats-new.php:987
2588
  msgid "Add multi-select to default category in post form settings."
2589
  msgstr ""
2590
 
2591
- #: admin/html/whats-new.php:991
2592
  msgid "Select Text option for Taxonomy"
2593
  msgstr ""
2594
 
2595
- #: admin/html/whats-new.php:993
2596
  msgid ""
2597
  "Add Select Text option for taxonomy fields. Now you can add default text "
2598
  "with empty value as first option for Taxonomy dropdown."
2599
  msgstr ""
2600
 
2601
- #: admin/html/whats-new.php:996
2602
  msgid "Taxonomy Checkbox Inline"
2603
  msgstr ""
2604
 
2605
- #: admin/html/whats-new.php:998
2606
  msgid ""
2607
  "Added checkbox inline option to taxonomy checkbox. You can now display "
2608
  "Taxonomy checkbox fields inline."
2609
  msgstr ""
2610
 
2611
- #: admin/html/whats-new.php:1008
2612
  msgid "Manage schedule for form submission"
2613
  msgstr ""
2614
 
2615
- #: admin/html/whats-new.php:1010
2616
  msgid ""
2617
  "Do not accept form submission if the current date is not between the date "
2618
  "range of the schedule."
2619
  msgstr ""
2620
 
2621
- #: admin/html/whats-new.php:1014
2622
  msgid "Restrict form submission based on the user roles"
2623
  msgstr ""
2624
 
2625
- #: admin/html/whats-new.php:1016
2626
  msgid ""
2627
  "Restrict form submission based on the user roles. Now you can manage user "
2628
  "role base permission on form submission."
2629
  msgstr ""
2630
 
2631
- #: admin/html/whats-new.php:1020
2632
  msgid "Limit how many entries a form will accept"
2633
  msgstr ""
2634
 
2635
- #: admin/html/whats-new.php:1022
2636
  msgid ""
2637
  "Limit how many entries a form will accept and display a custom message when "
2638
  "that limit is reached."
2639
  msgstr ""
2640
 
2641
- #: admin/html/whats-new.php:1026
2642
  msgid "Show/hide Admin Bar"
2643
  msgstr ""
2644
 
2645
- #: admin/html/whats-new.php:1028
2646
  msgid "Control the admin bar visibility based on user roles."
2647
  msgstr ""
2648
 
2649
- #: admin/html/whats-new.php:1032
2650
  msgid "Ajax Login widget"
2651
  msgstr ""
2652
 
2653
- #: admin/html/whats-new.php:1034
2654
  msgid ""
2655
  "Login user is more simple now with Ajax Login Widget. The simple ajax login "
2656
  "form do not required page loading for login."
2657
  msgstr ""
2658
 
2659
- #: admin/html/whats-new.php:1038
2660
  msgid "Form submission with Captcha field"
2661
  msgstr ""
2662
 
2663
- #: admin/html/whats-new.php:1040
2664
  msgid "Form field validation process updated if form submits with captcha field."
2665
  msgstr ""
2666
 
2667
- #: admin/html/whats-new.php:1054
2668
  msgid "What's New in WPUF?"
2669
  msgstr ""
2670
 
@@ -3110,31 +3122,23 @@ msgstr ""
3110
  msgid "WP User Frontend Pro is the most powerful solution for your frontend needs."
3111
  msgstr ""
3112
 
3113
- #: admin/promotion.php:41
3114
- msgid "Enjoy Flat 50% OFF on WP User Frontend Pro. Get Your Early Bird Black Friday"
3115
- msgstr ""
3116
-
3117
- #: admin/promotion.php:50
3118
- msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Black Friday"
3119
- msgstr ""
3120
-
3121
- #: admin/promotion.php:59
3122
- msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Cyber Monday"
3123
  msgstr ""
3124
 
3125
- #: admin/promotion.php:68
3126
- msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your "
3127
  msgstr ""
3128
 
3129
- #: admin/promotion.php:118
3130
  msgid "Sure! I'd love to!"
3131
  msgstr ""
3132
 
3133
- #: admin/promotion.php:119
3134
  msgid "I've already left a review"
3135
  msgstr ""
3136
 
3137
- #: admin/promotion.php:120
3138
  msgid "Never show again"
3139
  msgstr ""
3140
 
2
  # This file is distributed under the GPL2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP User Frontend 3.5.15\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2021-03-15 04:05:08+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:183 admin/promotion.php:187 admin/promotion.php:239
573
+ #: admin/promotion.php:243
574
  msgid "Unauthorized operation"
575
  msgstr ""
576
 
1412
  msgstr ""
1413
 
1414
  #: admin/html/whats-new.php:9
1415
+ msgid "Overflow footer on form builder page"
1416
  msgstr ""
1417
 
1418
  #: admin/html/whats-new.php:13
1419
+ msgid "WordPress 5.7 compatibility"
1420
  msgstr ""
1421
 
1422
  #: admin/html/whats-new.php:17
1423
+ msgid "Limited time promotion for weDevs birthday"
1424
+ msgstr ""
1425
+
1426
+ #: admin/html/whats-new.php:28
1427
+ msgid "Meta key will not change if label update"
1428
+ msgstr ""
1429
+
1430
+ #: admin/html/whats-new.php:32
1431
+ msgid "Login redirect empty previous url"
1432
+ msgstr ""
1433
+
1434
+ #: admin/html/whats-new.php:36
1435
  msgid "Email doesnt set as username"
1436
  msgstr ""
1437
 
1438
+ #: admin/html/whats-new.php:40
1439
  msgid "Post redirection to payment doesn't work"
1440
  msgstr ""
1441
 
1442
+ #: admin/html/whats-new.php:44
1443
  msgid "Address field not working when used with conditional logic"
1444
  msgstr ""
1445
 
1446
+ #: admin/html/whats-new.php:48
1447
  msgid "Ajax type category child of not working"
1448
  msgstr ""
1449
 
1450
+ #: admin/html/whats-new.php:52
1451
  msgid "Non recurring subscription did not work"
1452
  msgstr ""
1453
 
1454
+ #: admin/html/whats-new.php:63
1455
  msgid "Menu position has chenged due to dokan has same menu position"
1456
  msgstr ""
1457
 
1458
+ #: admin/html/whats-new.php:67
1459
  msgid "Drag and drop not working properly for new field"
1460
  msgstr ""
1461
 
1462
+ #: admin/html/whats-new.php:78
1463
  msgid "QR and math captcha added to pro feature list"
1464
  msgstr ""
1465
 
1466
+ #: admin/html/whats-new.php:82
1467
  msgid "Tooltip for category navigate"
1468
  msgstr ""
1469
 
1470
+ #: admin/html/whats-new.php:86
1471
  msgid "Understandable guest payment notice"
1472
  msgstr ""
1473
 
1474
+ #: admin/html/whats-new.php:90
1475
  msgid "Paypal non recurring pack id does not set"
1476
  msgstr ""
1477
 
1478
+ #: admin/html/whats-new.php:101
1479
  msgid "Once trial subscription is used, it couldn't reset"
1480
  msgstr ""
1481
 
1482
+ #: admin/html/whats-new.php:105
1483
  msgid "Subscription cancel doesn't work"
1484
  msgstr ""
1485
 
1486
+ #: admin/html/whats-new.php:109
1487
  msgid "The tax rate was not calculated with the total amount"
1488
  msgstr ""
1489
 
1490
+ #: admin/html/whats-new.php:113
1491
  msgid "The width of the column field was breaking"
1492
  msgstr ""
1493
 
1494
+ #: admin/html/whats-new.php:117
1495
  msgid "Paypal recurring payment"
1496
  msgstr ""
1497
 
1498
+ #: admin/html/whats-new.php:128
1499
  msgid "Updated codebase to fix timezone mismatch"
1500
  msgstr ""
1501
 
1502
+ #: admin/html/whats-new.php:139
1503
  msgid "Custom html content field's width"
1504
  msgstr ""
1505
 
1506
+ #: admin/html/whats-new.php:143
1507
  msgid "All states of New Zealand are added"
1508
  msgstr ""
1509
 
1510
+ #: admin/html/whats-new.php:154
1511
  msgid "Get appropriate user id when role based conditions are present"
1512
  msgstr ""
1513
 
1514
+ #: admin/html/whats-new.php:158
1515
  msgid "Show Invalid subscription message if wrong pack id passed"
1516
  msgstr ""
1517
 
1518
+ #: admin/html/whats-new.php:162
1519
  msgid "URL field new window not working"
1520
  msgstr ""
1521
 
1522
+ #: admin/html/whats-new.php:166
1523
  msgid "Option label not working when & use"
1524
  msgstr ""
1525
 
1526
+ #: admin/html/whats-new.php:170
1527
  msgid "Ajax type category not showing on edit"
1528
  msgstr ""
1529
 
1530
+ #: admin/html/whats-new.php:174
1531
  msgid "Multiple file image can't select"
1532
  msgstr ""
1533
 
1534
+ #: admin/html/whats-new.php:178
1535
  msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
1536
  msgstr ""
1537
 
1538
+ #: admin/html/whats-new.php:182
1539
  msgid "Conflict image field with acf image field"
1540
  msgstr ""
1541
 
1542
+ #: admin/html/whats-new.php:186
1543
  msgid "Missing Auckland State for New Zealand country"
1544
  msgstr ""
1545
 
1546
+ #: admin/html/whats-new.php:190
1547
  msgid "Added support for WooCommerce product category value replacemen"
1548
  msgstr ""
1549
 
1550
+ #: admin/html/whats-new.php:200
1551
  msgid "Add character restriction feature"
1552
  msgstr ""
1553
 
1554
+ #: admin/html/whats-new.php:204
1555
  msgid "Make sure post author edit link works only in frontend"
1556
  msgstr ""
1557
 
1558
+ #: admin/html/whats-new.php:208
1559
  msgid "Inconsistency in lost password reset email message"
1560
  msgstr ""
1561
 
1562
+ #: admin/html/whats-new.php:212
1563
  msgid "Saving custom taxonomy terms when input type is text"
1564
  msgstr ""
1565
 
1566
+ #: admin/html/whats-new.php:216
1567
  msgid "Taxonomy field JS error in builder"
1568
  msgstr ""
1569
 
1570
+ #: admin/html/whats-new.php:220
1571
  msgid "Showing WPUF edit link for WP default roles"
1572
  msgstr ""
1573
 
1574
+ #: admin/html/whats-new.php:224
1575
  msgid "Upload button unresponsive issue in iOS"
1576
  msgstr ""
1577
 
1578
+ #: admin/html/whats-new.php:234
1579
  msgid "Add post edit link for post authors in single or archive pages"
1580
  msgstr ""
1581
 
1582
+ #: admin/html/whats-new.php:238
1583
  msgid "Enhance post delete message"
1584
  msgstr ""
1585
 
1586
+ #: admin/html/whats-new.php:242
1587
  msgid "Refactor control buttons visibility in form builder"
1588
  msgstr ""
1589
 
1590
+ #: admin/html/whats-new.php:246
1591
  msgid "Add missing colons after field label"
1592
  msgstr ""
1593
 
1594
+ #: admin/html/whats-new.php:250
1595
  msgid "Post edit map capability condition"
1596
  msgstr ""
1597
 
1598
+ #: admin/html/whats-new.php:254
1599
  msgid "Role based permission for accessing a post form"
1600
  msgstr ""
1601
 
1602
+ #: admin/html/whats-new.php:258
1603
  msgid "Section-break field alignment"
1604
  msgstr ""
1605
 
1606
+ #: admin/html/whats-new.php:262
1607
  msgid "Pay per post doesn't work if subscription pack is activated"
1608
  msgstr ""
1609
 
1610
+ #: admin/html/whats-new.php:266
1611
  msgid "Mime type for uploading JSON files"
1612
  msgstr ""
1613
 
1614
+ #: admin/html/whats-new.php:270
1615
  msgid "File upload with same file name"
1616
  msgstr ""
1617
 
1618
+ #: admin/html/whats-new.php:274
1619
  msgid "Post preview missing fields"
1620
  msgstr ""
1621
 
1622
+ #: admin/html/whats-new.php:278
1623
  msgid "Illigal variable declartion"
1624
  msgstr ""
1625
 
1626
+ #: admin/html/whats-new.php:282
1627
  msgid "Featured image updating issue"
1628
  msgstr ""
1629
 
1630
+ #: admin/html/whats-new.php:286
1631
  msgid "Conflict with Phlox theme"
1632
  msgstr ""
1633
 
1634
+ #: admin/html/whats-new.php:290
1635
  msgid "Textarea custom field data sanitization"
1636
  msgstr ""
1637
 
1638
+ #: admin/html/whats-new.php:294
1639
  msgid "exclude_type warning in wpuf_category_checklist"
1640
  msgstr ""
1641
 
1642
+ #: admin/html/whats-new.php:298
1643
  msgid "Category field not showing all child categories for selection type child of"
1644
  msgstr ""
1645
 
1646
+ #: admin/html/whats-new.php:302
1647
  msgid "Conflict between image and file upload custom fields"
1648
  msgstr ""
1649
 
1650
+ #: admin/html/whats-new.php:306
1651
  msgid "Login url when login page is not set"
1652
  msgstr ""
1653
 
1654
+ #: admin/html/whats-new.php:316
1655
  msgid ""
1656
  "Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
1657
  "their official names"
1658
  msgstr ""
1659
 
1660
+ #: admin/html/whats-new.php:320
1661
  msgid "Fix condition to use default avatar"
1662
  msgstr ""
1663
 
1664
+ #: admin/html/whats-new.php:324
1665
  msgid "Make Email and URL fields clickable"
1666
  msgstr ""
1667
 
1668
+ #: admin/html/whats-new.php:328
1669
  msgid "Fix redirect after user login"
1670
  msgstr ""
1671
 
1672
+ #: admin/html/whats-new.php:332
1673
  msgid "Sanitize textarea field data"
1674
  msgstr ""
1675
 
1676
+ #: admin/html/whats-new.php:336
1677
  msgid ""
1678
  "Fix missing colon to email, URL, text and textarea labels when renders "
1679
  "their data"
1680
  msgstr ""
1681
 
1682
+ #: admin/html/whats-new.php:340
1683
  msgid "Prevent showing empty labels for fields that have render_field_data method"
1684
  msgstr ""
1685
 
1686
+ #: admin/html/whats-new.php:350
1687
  msgid "Add Namibian Dollar in currency list"
1688
  msgstr ""
1689
 
1690
+ #: admin/html/whats-new.php:354
1691
  msgid "Add sync values option for option data fields"
1692
  msgstr ""
1693
 
1694
+ #: admin/html/whats-new.php:358
1695
  msgid "Allow uploading image that having filesize meets php ini settings"
1696
  msgstr ""
1697
 
1698
+ #: admin/html/whats-new.php:362
1699
  msgid "Limit the selection of one image at a time"
1700
  msgstr ""
1701
 
1702
+ #: admin/html/whats-new.php:366
1703
  msgid "Use file name and size to generate hash to prevent duplicant image upload"
1704
  msgstr ""
1705
 
1706
+ #: admin/html/whats-new.php:370
1707
  msgid "Sanitize text and textarea field data"
1708
  msgstr ""
1709
 
1710
+ #: admin/html/whats-new.php:374
1711
  msgid ""
1712
  "Show label instead of values for radio, checkbox, dropdown and multiselect "
1713
  "data"
1714
  msgstr ""
1715
 
1716
+ #: admin/html/whats-new.php:378
1717
  msgid "Saving custom taxonomies for type text input"
1718
  msgstr ""
1719
 
1720
+ #: admin/html/whats-new.php:382
1721
  msgid "Admin settings link for recaptcha helper text"
1722
  msgstr ""
1723
 
1724
+ #: admin/html/whats-new.php:386
1725
  msgid "Undefined name property for Custom HTML fields"
1726
  msgstr ""
1727
 
1728
+ #: admin/html/whats-new.php:390
1729
  msgid "Delete attachment process"
1730
  msgstr ""
1731
 
1732
+ #: admin/html/whats-new.php:394
1733
  msgid "Missing billing address in invoice PDF"
1734
  msgstr ""
1735
 
1736
+ #: admin/html/whats-new.php:398
1737
  msgid "Showing country field value in frontend post content"
1738
  msgstr ""
1739
 
1740
+ #: admin/html/whats-new.php:402
1741
  msgid "Avatar size display not complying with admin settings size"
1742
  msgstr ""
1743
 
1744
+ #: admin/html/whats-new.php:406
1745
  msgid "Display default avatars on admin settings discussion page"
1746
  msgstr ""
1747
 
1748
+ #: admin/html/whats-new.php:410
1749
  msgid "Redirect to subscription page at registration"
1750
  msgstr ""
1751
 
1752
+ #: admin/html/whats-new.php:414
1753
  msgid "Error notice regarding registration page redirect"
1754
  msgstr ""
1755
 
1756
+ #: admin/html/whats-new.php:418
1757
  msgid "Escaping html in registration errors"
1758
  msgstr ""
1759
 
1760
+ #: admin/html/whats-new.php:422
1761
  msgid "Default login redirect link"
1762
  msgstr ""
1763
 
1764
+ #: admin/html/whats-new.php:426
1765
  msgid "Implementing default WP login page override option"
1766
  msgstr ""
1767
 
1768
+ #: admin/html/whats-new.php:430
1769
  msgid "Transparent background of autosuggestion dropdown"
1770
  msgstr ""
1771
 
1772
+ #: admin/html/whats-new.php:440
1773
  msgid "Import forms system"
1774
  msgstr ""
1775
 
1776
+ #: admin/html/whats-new.php:444
1777
  msgid "Password reset system"
1778
  msgstr ""
1779
 
1780
+ #: admin/html/whats-new.php:448
1781
  msgid "Updated url validation regex to support modern tlds"
1782
  msgstr ""
1783
 
1784
+ #: admin/html/whats-new.php:452
1785
  msgid "Export WPUF forms individually from admin tools page"
1786
  msgstr ""
1787
 
1788
+ #: admin/html/whats-new.php:456
1789
  msgid "Subscription cycle label translation issue"
1790
  msgstr ""
1791
 
1792
+ #: admin/html/whats-new.php:460
1793
  msgid "ACF integration for checkbox fields"
1794
  msgstr ""
1795
 
1796
+ #: admin/html/whats-new.php:464
1797
  msgid "Illegal string offset warning while updating settings"
1798
  msgstr ""
1799
 
1800
+ #: admin/html/whats-new.php:468
1801
  msgid "Conditional logic for Section Break field"
1802
  msgstr ""
1803
 
1804
+ #: admin/html/whats-new.php:472
1805
  msgid "Subscriptions cannot be deleted from backend"
1806
  msgstr ""
1807
 
1808
+ #: admin/html/whats-new.php:476
1809
  msgid "A regression regarding saving checkbox data"
1810
  msgstr ""
1811
 
1812
+ #: admin/html/whats-new.php:480
1813
  msgid "Default value of multi-select fields is not showing"
1814
  msgstr ""
1815
 
1816
+ #: admin/html/whats-new.php:490
1817
  msgid "Hide post edit option when subscription is expired"
1818
  msgstr ""
1819
 
1820
+ #: admin/html/whats-new.php:492
1821
  msgid "Hide post edit option from users whose subscription pack is expired."
1822
  msgstr ""
1823
 
1824
+ #: admin/html/whats-new.php:495
1825
  msgid "Check files to prevent duplicity in media upload"
1826
  msgstr ""
1827
 
1828
+ #: admin/html/whats-new.php:497
1829
  msgid ""
1830
  "A simple measure has been taken to prevent maliciously flooding the site by "
1831
  "uploading same file multiple times. Though this won't work with already "
1832
  "uploaded medias."
1833
  msgstr ""
1834
 
1835
+ #: admin/html/whats-new.php:500
1836
  msgid "Refactor address fields in Account section"
1837
  msgstr ""
1838
 
1839
+ #: admin/html/whats-new.php:502
1840
  msgid "Address edit section from Account section has been rewritten to improve UX."
1841
  msgstr ""
1842
 
1843
+ #: admin/html/whats-new.php:505
1844
  msgid "Update Paypal payment gateway"
1845
  msgstr ""
1846
 
1847
+ #: admin/html/whats-new.php:507
1848
  msgid "Paypal payment gateway has seen some improvements."
1849
  msgstr ""
1850
 
1851
+ #: admin/html/whats-new.php:510
1852
  msgid "Default Category selection improvements"
1853
  msgstr ""
1854
 
1855
+ #: admin/html/whats-new.php:512
1856
  msgid ""
1857
  "An intuitive way of selecting default category of a selected post type has "
1858
  "been introduced."
1859
  msgstr ""
1860
 
1861
+ #: admin/html/whats-new.php:515
1862
  msgid "Compatibility issue with ACF date time field"
1863
  msgstr ""
1864
 
1865
+ #: admin/html/whats-new.php:517
1866
  msgid "A Compatibility issue with ACF date time field has been addressed."
1867
  msgstr ""
1868
 
1869
+ #: admin/html/whats-new.php:520
1870
  msgid "Media title, caption & description not saving"
1871
  msgstr ""
1872
 
1873
+ #: admin/html/whats-new.php:522
1874
  msgid ""
1875
  "Media title, caption & description were not saving from frontend. They will "
1876
  "now."
1877
  msgstr ""
1878
 
1879
+ #: admin/html/whats-new.php:525
1880
  msgid ""
1881
  "The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
1882
  "metabox"
1883
  msgstr ""
1884
 
1885
+ #: admin/html/whats-new.php:527
1886
  msgid ""
1887
  "A workaround has been introduced to save The Events Calendar Venue and "
1888
  "Organizer fields properly from WPUF Custom Fields metabox."
1889
  msgstr ""
1890
 
1891
+ #: admin/html/whats-new.php:530
1892
  msgid "Checkbox data not saving from WPUF Custom Fields metabox"
1893
  msgstr ""
1894
 
1895
+ #: admin/html/whats-new.php:532
1896
  msgid ""
1897
  "Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
1898
  "fixed."
1899
  msgstr ""
1900
 
1901
+ #: admin/html/whats-new.php:535
1902
  msgid "Multi-column Repeater field data saving issue"
1903
  msgstr ""
1904
 
1905
+ #: admin/html/whats-new.php:537
1906
  msgid ""
1907
  "Multi-column Repeater field data from a form was not saving. It has been "
1908
  "fixed."
1909
  msgstr ""
1910
 
1911
+ #: admin/html/whats-new.php:540
1912
  msgid "Multistep form conflict with Elementor"
1913
  msgstr ""
1914
 
1915
+ #: admin/html/whats-new.php:542
1916
  msgid "Multistep form had a conflict with Elementor. It has been fixed."
1917
  msgstr ""
1918
 
1919
+ #: admin/html/whats-new.php:545
1920
  msgid "Multiple images showing issue in frontend"
1921
  msgstr ""
1922
 
1923
+ #: admin/html/whats-new.php:547
1924
  msgid "Multiple images in a post were not showing in frontend. Now they will."
1925
  msgstr ""
1926
 
1927
+ #: admin/html/whats-new.php:556
1928
  msgid "Nonce not verify on login"
1929
  msgstr ""
1930
 
1931
+ #: admin/html/whats-new.php:558
1932
  msgid "Return of function wp_verify_nonce() was ignored."
1933
  msgstr ""
1934
 
1935
+ #: admin/html/whats-new.php:567
1936
  msgid "Option to set which tab shows as active on the account page"
1937
  msgstr ""
1938
 
1939
+ #: admin/html/whats-new.php:569
1940
  msgid ""
1941
  "Option to set which tab shows as active on the account page. To configure "
1942
  "this setting navigate to wp-admin->User Frontend->Settings->My "
1943
  "Account->Active Tab "
1944
  msgstr ""
1945
 
1946
+ #: admin/html/whats-new.php:572
1947
  msgid "Unlock option was unavailable after the post being locked"
1948
  msgstr ""
1949
 
1950
+ #: admin/html/whats-new.php:574
1951
  msgid "Unlock option was unavailable after the post being locked."
1952
  msgstr ""
1953
 
1954
+ #: admin/html/whats-new.php:577
1955
  msgid "Gutenberg block of WPUF didn't work on bedrock installation"
1956
  msgstr ""
1957
 
1958
+ #: admin/html/whats-new.php:579
1959
  msgid "Gutenberg block of WPUF didn't work on bedrock installation."
1960
  msgstr ""
1961
 
1962
+ #: admin/html/whats-new.php:582
1963
  msgid "Sending admin payment received email twice"
1964
  msgstr ""
1965
 
1966
+ #: admin/html/whats-new.php:584
1967
  msgid ""
1968
  "After processing payment admin & user was receiving payment received email "
1969
  "twice."
1970
  msgstr ""
1971
 
1972
+ #: admin/html/whats-new.php:587
1973
  msgid ""
1974
  "Add shortcode support to display post information in the Post Expiration "
1975
  "Message"
1976
  msgstr ""
1977
 
1978
+ #: admin/html/whats-new.php:589
1979
  msgid ""
1980
  "Add shortcode support to display post information in the Post Expiration "
1981
  "Message. You can use: <strong>{post_author} {post_url} {blogname} "
1982
  "{post_title} {post_status}</strong>"
1983
  msgstr ""
1984
 
1985
+ #: admin/html/whats-new.php:592
1986
  msgid "Add optin on the setup wizard"
1987
  msgstr ""
1988
 
1989
+ #: admin/html/whats-new.php:594
1990
  msgid ""
1991
  "Added optin on the setup wizard, admin can choose whether he/she wants to "
1992
  "share server environment details (php, mysql, server, WordPress versions), "
1994
  "name and url, admin name and email address. No sensitive data is tracked"
1995
  msgstr ""
1996
 
1997
+ #: admin/html/whats-new.php:603
1998
  msgid "Post Owner problem"
1999
  msgstr ""
2000
 
2001
+ #: admin/html/whats-new.php:605
2002
  msgid ""
2003
  "Posts were not assigned to the selected default post owner, this issue has "
2004
  "been fixed."
2005
  msgstr ""
2006
 
2007
+ #: admin/html/whats-new.php:608
2008
  msgid "Google reCaptcha was not working"
2009
  msgstr ""
2010
 
2011
+ #: admin/html/whats-new.php:610
2012
  msgid ""
2013
  "Google reCaptcha was not working, users could submit the form without "
2014
  "reCaptcha validation."
2015
  msgstr ""
2016
 
2017
+ #: admin/html/whats-new.php:619
2018
  msgid "Added column field"
2019
  msgstr ""
2020
 
2021
+ #: admin/html/whats-new.php:624
2022
  msgid "Unable to render the events on the front-end dashboard"
2023
  msgstr ""
2024
 
2025
+ #: admin/html/whats-new.php:626
2026
  msgid ""
2027
  "On the frontend dashboard, the submitted events were not showing, you will "
2028
  "get it fixed in this version."
2029
  msgstr ""
2030
 
2031
+ #: admin/html/whats-new.php:629
2032
  msgid "Page order getting 0(zero) after editing from the frontend"
2033
  msgstr ""
2034
 
2035
+ #: admin/html/whats-new.php:631
2036
  msgid ""
2037
  "Page order was not saving while editing a post using WPUF form, it has been "
2038
  "fixed."
2039
  msgstr ""
2040
 
2041
+ #: admin/html/whats-new.php:634
2042
  msgid "Text input field for taxonomies not working"
2043
  msgstr ""
2044
 
2045
+ #: admin/html/whats-new.php:636
2046
  msgid ""
2047
  "When taxonomy field type is set to `Text Input` then a fatal error was "
2048
  "showing on the frontend, no error with taxonomy field in the latest version."
2049
  msgstr ""
2050
 
2051
+ #: admin/html/whats-new.php:639
2052
  msgid ""
2053
  "In radio and checkbox field use conditional logic that value does not save "
2054
  "in database"
2055
  msgstr ""
2056
 
2057
+ #: admin/html/whats-new.php:641
2058
  msgid ""
2059
  "The selected value of radio and checkbox field were not showing while "
2060
  "editing posts from the backend or frontend, you can see the selected value "
2061
  "in this version."
2062
  msgstr ""
2063
 
2064
+ #: admin/html/whats-new.php:644
2065
  msgid "The args param not working with get_avatar filter"
2066
  msgstr ""
2067
 
2068
+ #: admin/html/whats-new.php:646
2069
  msgid "The args parameter did not exist with get_avatar filter, which now exists."
2070
  msgstr ""
2071
 
2072
+ #: admin/html/whats-new.php:649
2073
  msgid "The item in ajax taxonomy field was not selected"
2074
  msgstr ""
2075
 
2076
+ #: admin/html/whats-new.php:651
2077
  msgid ""
2078
  "When the taxonomy field type is set to Ajax, the submitted terms were not "
2079
  "showing in the backend and frontend which have been fixed."
2080
  msgstr ""
2081
 
2082
+ #: admin/html/whats-new.php:660
2083
  msgid "Unable to send new user registration email"
2084
  msgstr ""
2085
 
2086
+ #: admin/html/whats-new.php:662
2087
  msgid ""
2088
  "WP User Frontend default registration form `[wpuf-registration]` was unable "
2089
  "to send the new user registration email."
2090
  msgstr ""
2091
 
2092
+ #: admin/html/whats-new.php:665
2093
  msgid "WPUF forms block compatibility issue with the latest WP version"
2094
  msgstr ""
2095
 
2096
+ #: admin/html/whats-new.php:667
2097
  msgid ""
2098
  "With the latest version of WordPress the gutenberg block of WP User "
2099
  "Frontend were not working. In this version, you will get it fixed."
2100
  msgstr ""
2101
 
2102
+ #: admin/html/whats-new.php:670
2103
  msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
2104
  msgstr ""
2105
 
2106
+ #: admin/html/whats-new.php:672
2107
  msgid ""
2108
  "While using Gutenberg, the page were not being updated with WPUF shortcode "
2109
  "[wpuf dashboard]"
2110
  msgstr ""
2111
 
2112
+ #: admin/html/whats-new.php:675
2113
  msgid "Retain default when determining whether to display the admin bar"
2114
  msgstr ""
2115
 
2116
+ #: admin/html/whats-new.php:677
2117
  msgid ""
2118
  "From the User Frontend Settings, set that Administrator, Editor, Vendor can "
2119
  "see the admin bar. Now, the super admin want, one specific user ( who has "
2123
  "frontend."
2124
  msgstr ""
2125
 
2126
+ #: admin/html/whats-new.php:680
2127
  msgid "Fatal error when use PHP lower version (5.4 or lower)"
2128
  msgstr ""
2129
 
2130
+ #: admin/html/whats-new.php:682
2131
  msgid ""
2132
  "It was unable to install WP User Frontend with PHP 5.4 or lower version. "
2133
  "Here is the error details: <br><br><strong>Fatal error: Can't use method "
2135
  "/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
2136
  msgstr ""
2137
 
2138
+ #: admin/html/whats-new.php:685
2139
  msgid "Product form was unable to show the single gallery image"
2140
  msgstr ""
2141
 
2142
+ #: admin/html/whats-new.php:687
2143
  msgid ""
2144
  "When user upload single image for product gallery using WPUF WooCommerce "
2145
  "product form, that image were not showing on the frontend."
2146
  msgstr ""
2147
 
2148
+ #: admin/html/whats-new.php:696
2149
  msgid "WooCommerce gallery images not getting saved"
2150
  msgstr ""
2151
 
2152
+ #: admin/html/whats-new.php:698
2153
  msgid ""
2154
  "After releasing version 2.9.3, WooCommerce gallery image field stopped "
2155
  "working. You will get it fixed in this version."
2156
  msgstr ""
2157
 
2158
+ #: admin/html/whats-new.php:707
2159
  msgid "The Events Calendar Integration Form"
2160
  msgstr ""
2161
 
2162
+ #: admin/html/whats-new.php:709
2163
  msgid ""
2164
  "Now admin can allow users to create event from the frontend. Currently WPUF "
2165
  "has a one click pre-build event form that has been integrated with The "
2166
  "Events Calendar plugin"
2167
  msgstr ""
2168
 
2169
+ #: admin/html/whats-new.php:712
2170
  msgid "Post Submission Facility From Account Page"
2171
  msgstr ""
2172
 
2173
+ #: admin/html/whats-new.php:714
2174
  msgid ""
2175
  "On the frontend account page, added a new menu item named <b>Submit "
2176
  "Post</b>. Now admin can allow users to submit post from their default "
2179
  "you can assign any post form that will use to submit posts."
2180
  msgstr ""
2181
 
2182
+ #: admin/html/whats-new.php:717
2183
  msgid "Login/Lost Password Link Under Registration Form"
2184
  msgstr ""
2185
 
2186
+ #: admin/html/whats-new.php:719
2187
  msgid "Added Login/Lost Password link under registration form"
2188
  msgstr ""
2189
 
2190
+ #: admin/html/whats-new.php:728
2191
  msgid "Added drag and drop image ordering on image upload"
2192
  msgstr ""
2193
 
2194
+ #: admin/html/whats-new.php:730
2195
  msgid ""
2196
  "Now frontend users can drag & drop the images/files to change the order "
2197
  "while uploading."
2198
  msgstr ""
2199
 
2200
+ #: admin/html/whats-new.php:733
2201
  msgid "Added reCAPTCHA field in login form"
2202
  msgstr ""
2203
 
2204
+ #: admin/html/whats-new.php:735
2205
  msgid ""
2206
  "Admin has the option to show reCAPTCHA field in login form. Check the "
2207
  "related settings from <strong>User Frontend > Settings > "
2208
  "Login/Registration</strong>"
2209
  msgstr ""
2210
 
2211
+ #: admin/html/whats-new.php:738
2212
  msgid "Added preview option in forms"
2213
  msgstr ""
2214
 
2215
+ #: admin/html/whats-new.php:740
2216
  msgid ""
2217
  "You can see a nice <strong>Preview</strong> button with <strong>Save "
2218
  "Form</strong> button, admin can take a quick look of the form without using "
2219
  "shortcode"
2220
  msgstr ""
2221
 
2222
+ #: admin/html/whats-new.php:743
2223
  msgid "Fixed hiding “Select Image” button while uploading multiple images."
2224
  msgstr ""
2225
 
2226
+ #: admin/html/whats-new.php:745
2227
  msgid ""
2228
  "The upload button will not be hidden until the user selects max number of "
2229
  "files "
2230
  msgstr ""
2231
 
2232
+ #: admin/html/whats-new.php:748
2233
  msgid "Added form limit notice before form submission"
2234
  msgstr ""
2235
 
2236
+ #: admin/html/whats-new.php:750
2237
  msgid ""
2238
  "Limit notice message was showing after submission, now it is showing when "
2239
  "rendering the form"
2240
  msgstr ""
2241
 
2242
+ #: admin/html/whats-new.php:753
2243
  msgid "Fixed: default post category not saving"
2244
  msgstr ""
2245
 
2246
+ #: admin/html/whats-new.php:755
2247
  msgid ""
2248
  "From the form <strong>Settings > Post Settings</strong>, default post "
2249
  "category options were not saving. Now, it's fixed."
2250
  msgstr ""
2251
 
2252
+ #: admin/html/whats-new.php:758
2253
  msgid ""
2254
  "WPUF dashboard shortcode with form_id attribute was not showing posts "
2255
  "properly"
2256
  msgstr ""
2257
 
2258
+ #: admin/html/whats-new.php:760
2259
  msgid ""
2260
  "Now you can list posts on the frontend by using <strong>form_id<strong/> "
2261
  "attribute with <strong>[wpuf_dashboard]</strong> shortcode"
2262
  msgstr ""
2263
 
2264
+ #: admin/html/whats-new.php:769
2265
  msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
2266
  msgstr ""
2267
 
2268
+ #: admin/html/whats-new.php:771
2269
  msgid ""
2270
  "If you are using other language than English. Please <b>rename</b> your "
2271
  "<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
2272
  "change was made to support translations from translate.wordpress.org"
2273
  msgstr ""
2274
 
2275
+ #: admin/html/whats-new.php:774
2276
  msgid "Added WP User Frontend Data export and erase functionality."
2277
  msgstr ""
2278
 
2279
+ #: admin/html/whats-new.php:776
2280
  msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
2281
  msgstr ""
2282
 
2283
+ #: admin/html/whats-new.php:779
2284
  msgid "Added billing address customizer."
2285
  msgstr ""
2286
 
2287
+ #: admin/html/whats-new.php:781
2288
  msgid "Added customizer options for billing address in payment page."
2289
  msgstr ""
2290
 
2291
+ #: admin/html/whats-new.php:784
2292
  msgid "Make the payment page responsive."
2293
  msgstr ""
2294
 
2295
+ #: admin/html/whats-new.php:786
2296
  msgid "Some css adjustments are made in payment page to make it responsive."
2297
  msgstr ""
2298
 
2299
+ #: admin/html/whats-new.php:789
2300
  msgid "Fixed image upload issue in Safari."
2301
  msgstr ""
2302
 
2303
+ #: admin/html/whats-new.php:791
2304
  msgid "Images were not showing after upload in safari, it is fixed now."
2305
  msgstr ""
2306
 
2307
+ #: admin/html/whats-new.php:794
2308
  msgid "Post update issue after updating or removing post images."
2309
  msgstr ""
2310
 
2311
+ #: admin/html/whats-new.php:796
2312
  msgid ""
2313
  "Posts cannot be updated after updating or removing post images, it is fixed "
2314
  "now."
2315
  msgstr ""
2316
 
2317
+ #: admin/html/whats-new.php:805
2318
  msgid "Allow overriding form input styles using theme styling."
2319
  msgstr ""
2320
 
2321
+ #: admin/html/whats-new.php:807
2322
  msgid "Overriding form input styles using theme style is now possible."
2323
  msgstr ""
2324
 
2325
+ #: admin/html/whats-new.php:810
2326
  msgid "Fixed Auto Login after registration."
2327
  msgstr ""
2328
 
2329
+ #: admin/html/whats-new.php:812
2330
  msgid "Auto Login after registration was not working is fixed now."
2331
  msgstr ""
2332
 
2333
+ #: admin/html/whats-new.php:815
2334
  msgid "Fixed fallback cost calculation"
2335
  msgstr ""
2336
 
2337
+ #: admin/html/whats-new.php:817
2338
  msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
2339
  msgstr ""
2340
 
2341
+ #: admin/html/whats-new.php:820
2342
  msgid "Removal of subscription from User Profile gets reverted if updated"
2343
  msgstr ""
2344
 
2345
+ #: admin/html/whats-new.php:822
2346
  msgid "User subscription deletion gets reverted if updated is fixed."
2347
  msgstr ""
2348
 
2349
+ #: admin/html/whats-new.php:825
2350
  msgid "Show Free pack users in subscribers list."
2351
  msgstr ""
2352
 
2353
+ #: admin/html/whats-new.php:827
2354
  msgid "Free pack users were not showing in subscribers list, now they will."
2355
  msgstr ""
2356
 
2357
+ #: admin/html/whats-new.php:836
2358
  msgid "WP User Frontend Guten Block is added"
2359
  msgstr ""
2360
 
2361
+ #: admin/html/whats-new.php:838
2362
  msgid ""
2363
  "WPUF Form Block is now available to be used within gutenberg editor with "
2364
  "preview of the form. "
2365
  msgstr ""
2366
 
2367
+ #: admin/html/whats-new.php:841
2368
  msgid "Advanced Custom Fields plugin compatibility"
2369
  msgstr ""
2370
 
2371
+ #: admin/html/whats-new.php:843
2372
  msgid "Now all your ACF fields can be used within WPUF Post forms. "
2373
  msgstr ""
2374
 
2375
+ #: admin/html/whats-new.php:846
2376
  msgid "Taxonomy Terms not showing for custom post types"
2377
  msgstr ""
2378
 
2379
+ #: admin/html/whats-new.php:848
2380
  msgid ""
2381
  "Fixed an issue with taxonomy terms not appearing for Custom Post types "
2382
  "within Form Settings and Dashboard Post Listing"
2383
  msgstr ""
2384
 
2385
+ #: admin/html/whats-new.php:851
2386
  msgid "Various other code optimizations"
2387
  msgstr ""
2388
 
2389
+ #: admin/html/whats-new.php:853 admin/html/whats-new.php:910
2390
  msgid "Code structure organization and optimization for better performance"
2391
  msgstr ""
2392
 
2393
+ #: admin/html/whats-new.php:862
2394
  msgid "WoooCommerce billing address Sync"
2395
  msgstr ""
2396
 
2397
+ #: admin/html/whats-new.php:864
2398
  msgid ""
2399
  "If an existing customer has previously set his billing address, that will "
2400
  "be imported into WPUF Billing address "
2401
  msgstr ""
2402
 
2403
+ #: admin/html/whats-new.php:867
2404
  msgid "Trial subscription message not showing properly"
2405
  msgstr ""
2406
 
2407
+ #: admin/html/whats-new.php:869
2408
  msgid "Subscriptions with Trial now shows trial notices"
2409
  msgstr ""
2410
 
2411
+ #: admin/html/whats-new.php:872
2412
  msgid "Reset email Key not working"
2413
  msgstr ""
2414
 
2415
+ #: admin/html/whats-new.php:874
2416
  msgid "Reset Email key was not working in some cases"
2417
  msgstr ""
2418
 
2419
+ #: admin/html/whats-new.php:877
2420
  msgid "Post count not showing on the frontend dashboard"
2421
  msgstr ""
2422
 
2423
+ #: admin/html/whats-new.php:879
2424
  msgid ""
2425
  "Dashboard with multiple post type was not showing post counts properly, is "
2426
  "now fixed and shows count for each post type"
2427
  msgstr ""
2428
 
2429
+ #: admin/html/whats-new.php:882
2430
  msgid "Login Redirect showing blank page is fixed"
2431
  msgstr ""
2432
 
2433
+ #: admin/html/whats-new.php:884
2434
  msgid ""
2435
  "If \"Previous Page\" was set for redirection, login redirect was "
2436
  "redirecting to blank page for users who hit login page directly"
2437
  msgstr ""
2438
 
2439
+ #: admin/html/whats-new.php:893
2440
  msgid "Enhanced Login Redirect to redirect users to previous page"
2441
  msgstr ""
2442
 
2443
+ #: admin/html/whats-new.php:895
2444
  msgid ""
2445
  "You can choose Previous Page as Login Redirect page settings now to "
2446
  "redirect users to the page from which they went for Login. "
2447
  msgstr ""
2448
 
2449
+ #: admin/html/whats-new.php:898
2450
  msgid "Email HTML links not Rendreing properly issue is fixed"
2451
  msgstr ""
2452
 
2453
+ #: admin/html/whats-new.php:900
2454
  msgid ""
2455
  "For some clients emails were not rendering the HTML links properly, this is "
2456
  "now fixed"
2457
  msgstr ""
2458
 
2459
+ #: admin/html/whats-new.php:903
2460
  msgid "Form Builder : Form Field's Help text styles not showing properly"
2461
  msgstr ""
2462
 
2463
+ #: admin/html/whats-new.php:905
2464
  msgid "Help texts styling is now fixed and much easier to read and understand"
2465
  msgstr ""
2466
 
2467
+ #: admin/html/whats-new.php:908
2468
  msgid "Various other code improvements"
2469
  msgstr ""
2470
 
2471
+ #: admin/html/whats-new.php:919
2472
  msgid "Dashboard Post Listing now supports multiple post types"
2473
  msgstr ""
2474
 
2475
+ #: admin/html/whats-new.php:921
2476
  msgid ""
2477
  "Now you can show multiple post type in user dashboard using shortcode like "
2478
  "this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
2479
  msgstr ""
2480
 
2481
+ #: admin/html/whats-new.php:924
2482
  msgid "Added Login Redirect Settings"
2483
  msgstr ""
2484
 
2485
+ #: admin/html/whats-new.php:926
2486
  msgid ""
2487
  "You can now set a page from <i>WPUF Settings > Login/Registration > "
2488
  "Redirect after Login</i>. When login redirection is active the user will be "
2489
  "redirected to this page after login."
2490
  msgstr ""
2491
 
2492
+ #: admin/html/whats-new.php:929
2493
  msgid "Image Upload field button text can be changed"
2494
  msgstr ""
2495
 
2496
+ #: admin/html/whats-new.php:931
2497
  msgid ""
2498
  "The upload button text can now be changed for image upload fields which "
2499
  "defaults to \"Select Image\" if not set. "
2500
  msgstr ""
2501
 
2502
+ #: admin/html/whats-new.php:934
2503
  msgid "Multi Step Form styles made compatible with more themes"
2504
  msgstr ""
2505
 
2506
+ #: admin/html/whats-new.php:936
2507
  msgid "Multi Step form can now be styled more easily with other themes "
2508
  msgstr ""
2509
 
2510
+ #: admin/html/whats-new.php:939
2511
  msgid "Required field condition for google map not working is fixed"
2512
  msgstr ""
2513
 
2514
+ #: admin/html/whats-new.php:941
2515
  msgid ""
2516
  "If Google Map field was set as required users were able to submit form "
2517
  "without changing the default value."
2518
  msgstr ""
2519
 
2520
+ #: admin/html/whats-new.php:950
2521
  msgid "Admin form builder is now fully responsive."
2522
  msgstr ""
2523
 
2524
+ #: admin/html/whats-new.php:952
2525
  msgid ""
2526
  "Now you can edit forms from your mobile devices directly. Our improved "
2527
  "responsive layouts of form builder makes it easy for you to build forms on "
2528
  "the go."
2529
  msgstr ""
2530
 
2531
+ #: admin/html/whats-new.php:955
2532
  msgid "Added color schemes for creating attractive form layouts."
2533
  msgstr ""
2534
 
2535
+ #: admin/html/whats-new.php:957
2536
  msgid ""
2537
  "We have added 3 new color schemes for the form layouts which you can choose "
2538
  "from each form's new display settings."
2539
  msgstr ""
2540
 
2541
+ #: admin/html/whats-new.php:960
2542
  msgid "Restrict Free subscription pack to be enabled multiple times "
2543
  msgstr ""
2544
 
2545
+ #: admin/html/whats-new.php:962
2546
  msgid ""
2547
  "Free subscription packs now can only be purchased once and the limit "
2548
  "applies properly"
2549
  msgstr ""
2550
 
2551
+ #: admin/html/whats-new.php:965
2552
  msgid "Various other bug fixes and improvements were made "
2553
  msgstr ""
2554
 
2555
+ #: admin/html/whats-new.php:967
2556
  msgid "Please see the change log to see full details."
2557
  msgstr ""
2558
 
2559
+ #: admin/html/whats-new.php:976
2560
  msgid "Added upgrade function for default category"
2561
  msgstr ""
2562
 
2563
+ #: admin/html/whats-new.php:978
2564
  msgid "Upgrader added to upgrade previously set default post category."
2565
  msgstr ""
2566
 
2567
+ #: admin/html/whats-new.php:981
2568
  msgid "Subscription pack cannot be canceled"
2569
  msgstr ""
2570
 
2571
+ #: admin/html/whats-new.php:983
2572
  msgid ""
2573
  "Fixed recurring subscription pack cannot be canceled from my account page "
2574
  "in subscription details section."
2575
  msgstr ""
2576
 
2577
+ #: admin/html/whats-new.php:986
2578
  msgid "page installer admin notice logic issue"
2579
  msgstr ""
2580
 
2581
+ #: admin/html/whats-new.php:988
2582
  msgid ""
2583
  "Fixed page installer admin notice logic problem due to new payment settings "
2584
  "default value not set."
2585
  msgstr ""
2586
 
2587
+ #: admin/html/whats-new.php:998
2588
  msgid "Setup Wizard"
2589
  msgstr ""
2590
 
2591
+ #: admin/html/whats-new.php:1000
2592
  msgid "Setup Wizard added to turn off payment options and install pages."
2593
  msgstr ""
2594
 
2595
+ #: admin/html/whats-new.php:1004
2596
  msgid "Multi-select Category"
2597
  msgstr ""
2598
 
2599
+ #: admin/html/whats-new.php:1006
2600
  msgid "Add multi-select to default category in post form settings."
2601
  msgstr ""
2602
 
2603
+ #: admin/html/whats-new.php:1010
2604
  msgid "Select Text option for Taxonomy"
2605
  msgstr ""
2606
 
2607
+ #: admin/html/whats-new.php:1012
2608
  msgid ""
2609
  "Add Select Text option for taxonomy fields. Now you can add default text "
2610
  "with empty value as first option for Taxonomy dropdown."
2611
  msgstr ""
2612
 
2613
+ #: admin/html/whats-new.php:1015
2614
  msgid "Taxonomy Checkbox Inline"
2615
  msgstr ""
2616
 
2617
+ #: admin/html/whats-new.php:1017
2618
  msgid ""
2619
  "Added checkbox inline option to taxonomy checkbox. You can now display "
2620
  "Taxonomy checkbox fields inline."
2621
  msgstr ""
2622
 
2623
+ #: admin/html/whats-new.php:1027
2624
  msgid "Manage schedule for form submission"
2625
  msgstr ""
2626
 
2627
+ #: admin/html/whats-new.php:1029
2628
  msgid ""
2629
  "Do not accept form submission if the current date is not between the date "
2630
  "range of the schedule."
2631
  msgstr ""
2632
 
2633
+ #: admin/html/whats-new.php:1033
2634
  msgid "Restrict form submission based on the user roles"
2635
  msgstr ""
2636
 
2637
+ #: admin/html/whats-new.php:1035
2638
  msgid ""
2639
  "Restrict form submission based on the user roles. Now you can manage user "
2640
  "role base permission on form submission."
2641
  msgstr ""
2642
 
2643
+ #: admin/html/whats-new.php:1039
2644
  msgid "Limit how many entries a form will accept"
2645
  msgstr ""
2646
 
2647
+ #: admin/html/whats-new.php:1041
2648
  msgid ""
2649
  "Limit how many entries a form will accept and display a custom message when "
2650
  "that limit is reached."
2651
  msgstr ""
2652
 
2653
+ #: admin/html/whats-new.php:1045
2654
  msgid "Show/hide Admin Bar"
2655
  msgstr ""
2656
 
2657
+ #: admin/html/whats-new.php:1047
2658
  msgid "Control the admin bar visibility based on user roles."
2659
  msgstr ""
2660
 
2661
+ #: admin/html/whats-new.php:1051
2662
  msgid "Ajax Login widget"
2663
  msgstr ""
2664
 
2665
+ #: admin/html/whats-new.php:1053
2666
  msgid ""
2667
  "Login user is more simple now with Ajax Login Widget. The simple ajax login "
2668
  "form do not required page loading for login."
2669
  msgstr ""
2670
 
2671
+ #: admin/html/whats-new.php:1057
2672
  msgid "Form submission with Captcha field"
2673
  msgstr ""
2674
 
2675
+ #: admin/html/whats-new.php:1059
2676
  msgid "Form field validation process updated if form submits with captcha field."
2677
  msgstr ""
2678
 
2679
+ #: admin/html/whats-new.php:1073
2680
  msgid "What's New in WPUF?"
2681
  msgstr ""
2682
 
3122
  msgid "WP User Frontend Pro is the most powerful solution for your frontend needs."
3123
  msgstr ""
3124
 
3125
+ #: admin/promotion.php:34
3126
+ msgid "It's Our Birthday! Enjoy Up To 45% OFF on WP User Frontend Pro"
 
 
 
 
 
 
 
 
3127
  msgstr ""
3128
 
3129
+ #: admin/promotion.php:34
3130
+ msgid "Get Now"
3131
  msgstr ""
3132
 
3133
+ #: admin/promotion.php:84
3134
  msgid "Sure! I'd love to!"
3135
  msgstr ""
3136
 
3137
+ #: admin/promotion.php:85
3138
  msgid "I've already left a review"
3139
  msgstr ""
3140
 
3141
+ #: admin/promotion.php:86
3142
  msgid "Never show again"
3143
  msgstr ""
3144
 
readme.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: tareq1988, nizamuddinbabu, wedevs
3
  Donate link: https://tareq.co/donate/
4
  Tags: Forms, registration, profile-builder, login, membership, frontend-post
5
  Requires at least: 4.0
6
- Tested up to: 5.6
7
  Requires PHP: 5.6
8
- Stable tag: 3.5.14
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -263,6 +263,12 @@ redirected to the edit page with that post id. Then you'll see the edit post for
263
 
264
  == Changelog ==
265
 
 
 
 
 
 
 
266
  = v3.5.14 (08 March, 2021) =
267
 
268
  * Fix - Meta key will not change if label update
3
  Donate link: https://tareq.co/donate/
4
  Tags: Forms, registration, profile-builder, login, membership, frontend-post
5
  Requires at least: 4.0
6
+ Tested up to: 5.7
7
  Requires PHP: 5.6
8
+ Stable tag: 3.5.15
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
263
 
264
  == Changelog ==
265
 
266
+ = v3.5.15 (15 March, 2021) =
267
+
268
+ * Notice - Limited time promotion for weDevs birthday
269
+ * Fix - Overflow footer on form builder page
270
+ * Fix - WordPress 5.7 compatibility
271
+
272
  = v3.5.14 (08 March, 2021) =
273
 
274
  * Fix - Meta key will not change if label update
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.14
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.14' );
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.15
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.15' );
16
  define( 'WPUF_FILE', __FILE__ );
17
  define( 'WPUF_ROOT', __DIR__ );
18
  define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );