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

Version Description

Download this release

Release Info

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

Code changes from version 2.8.1 to 2.8.2

admin/html/whats-new.php CHANGED
@@ -1,5 +1,27 @@
1
  <?php
2
  $changelog = array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  array(
4
  'version' => 'Version 2.8.1',
5
  'released' => '2018-01-14',
1
  <?php
2
  $changelog = array(
3
+ array(
4
+ 'version' => 'Version 2.8.2',
5
+ 'released' => '2018-01-23',
6
+ 'changes' => array(
7
+ array(
8
+ 'title' => __( 'Added upgrade function for default category', 'wpuf' ),
9
+ 'type' => 'Improvement',
10
+ 'description' => __( 'Upgrader added to upgrade previously set default post category.', 'wpuf' )
11
+ ),
12
+ array(
13
+ 'title' => __( 'Subscription pack cannot be canceled', 'wpuf' ),
14
+ 'type' => 'Fix',
15
+ 'description' => __( 'Fixed recurring subscription pack cannot be canceled from my account page in subscription details section.', 'wpuf' ),
16
+ ),
17
+ array(
18
+ 'title' => __( 'page installer admin notice logic issue', 'wpuf' ),
19
+ 'type' => 'Fix',
20
+ 'description' => __( 'Fixed page installer admin notice logic problem due to new payment settings default value not set.', 'wpuf' ),
21
+ ),
22
+ )
23
+ ),
24
+
25
  array(
26
  'version' => 'Version 2.8.1',
27
  'released' => '2018-01-14',
admin/installer.php CHANGED
@@ -20,7 +20,7 @@ class WPUF_Admin_Installer {
20
  function admin_notice() {
21
  $page_created = get_option( '_wpuf_page_created' );
22
 
23
- if ( $page_created != '1' && empty( wpuf_get_option( 'install_wpuf_pages', 'wpuf_general') ) ) {
24
  ?>
25
  <div class="updated error">
26
  <p>
@@ -28,7 +28,7 @@ class WPUF_Admin_Installer {
28
  </p>
29
  <p class="submit">
30
  <a class="button button-primary" href="<?php echo add_query_arg( array( 'install_wpuf_pages' => true ), admin_url( 'admin.php?page=wpuf-settings' ) ); ?>"><?php _e( 'Install WPUF Pages', 'wpuf' ); ?></a>
31
- or
32
  <a class="button" href="<?php echo add_query_arg( array( 'wpuf_hide_page_nag' => true ) ); ?>"><?php _e( 'Skip Setup', 'wpuf' ); ?></a>
33
  </p>
34
  </div>
20
  function admin_notice() {
21
  $page_created = get_option( '_wpuf_page_created' );
22
 
23
+ if ( $page_created != '1' && 'off' == wpuf_get_option( 'install_wpuf_pages', 'wpuf_general', 'on' ) ) {
24
  ?>
25
  <div class="updated error">
26
  <p>
28
  </p>
29
  <p class="submit">
30
  <a class="button button-primary" href="<?php echo add_query_arg( array( 'install_wpuf_pages' => true ), admin_url( 'admin.php?page=wpuf-settings' ) ); ?>"><?php _e( 'Install WPUF Pages', 'wpuf' ); ?></a>
31
+ <?php _e( 'or', 'wpuf' ); ?>
32
  <a class="button" href="<?php echo add_query_arg( array( 'wpuf_hide_page_nag' => true ) ); ?>"><?php _e( 'Skip Setup', 'wpuf' ); ?></a>
33
  </p>
34
  </div>
assets/images/del-pm.png ADDED
Binary file
class/subscription.php CHANGED
@@ -582,7 +582,7 @@ class WPUF_Subscription {
582
  'post_id' => $post_id
583
  ), get_permalink( wpuf_get_option( 'payment_page', 'wpuf_payment' ) ) );
584
  }
585
- if ( !$forcePack && $ppp_cost_enabled ) {
586
  $response['show_message'] = false;
587
  $response['redirect_to'] = add_query_arg( array(
588
  'action' => 'wpuf_pay',
@@ -607,7 +607,12 @@ class WPUF_Subscription {
607
 
608
  } else if ( $info['pack_id'] ) {
609
 
610
- $profile_id = isset( $info['user_id'] ) ? $info['user_id'] : null;
 
 
 
 
 
611
  wpuf_get_user( $info['user_id'] )->subscription()->add_pack( $info['pack_id'], $profile_id, $recurring, $info['status'] );
612
 
613
  }
@@ -901,8 +906,9 @@ class WPUF_Subscription {
901
  $force_pack = $form->is_enabled_force_pack();
902
  $current_user = wpuf_get_user();
903
  $current_pack = $current_user->subscription()->current_pack();
 
904
 
905
- if ( self::has_user_error( $form_settings ) || ( $pay_per_post && !$force_pack ) ) {
906
  ?>
907
  <div class="wpuf-info">
908
  <?php
@@ -914,7 +920,7 @@ class WPUF_Subscription {
914
  ?>
915
  </div>
916
  <?php
917
- } elseif ( self::has_user_error( $form_settings ) || ( $force_pack && !is_wp_error( $current_pack ) && !$current_user->subscription()->has_post_count( $form_settings['post_type'] ) ) ) {
918
  ?>
919
  <div class="wpuf-info">
920
  <?php
582
  'post_id' => $post_id
583
  ), get_permalink( wpuf_get_option( 'payment_page', 'wpuf_payment' ) ) );
584
  }
585
+ if ( !$force_pack && $ppp_cost_enabled ) {
586
  $response['show_message'] = false;
587
  $response['redirect_to'] = add_query_arg( array(
588
  'action' => 'wpuf_pay',
607
 
608
  } else if ( $info['pack_id'] ) {
609
 
610
+ if ( $recurring ) {
611
+ $profile_id = $info['profile_id'];
612
+ }else{
613
+ $profile_id = isset( $info['user_id'] ) ? $info['user_id'] : null;
614
+ }
615
+
616
  wpuf_get_user( $info['user_id'] )->subscription()->add_pack( $info['pack_id'], $profile_id, $recurring, $info['status'] );
617
 
618
  }
906
  $force_pack = $form->is_enabled_force_pack();
907
  $current_user = wpuf_get_user();
908
  $current_pack = $current_user->subscription()->current_pack();
909
+ $payment_enabled = $form->is_charging_enabled();
910
 
911
+ if ( self::has_user_error( $form_settings ) || ( $payment_enabled && $pay_per_post && !$force_pack ) ) {
912
  ?>
913
  <div class="wpuf-info">
914
  <?php
920
  ?>
921
  </div>
922
  <?php
923
+ } elseif ( self::has_user_error( $form_settings ) || ( $payment_enabled && $force_pack && !is_wp_error( $current_pack ) && !$current_user->subscription()->has_post_count( $form_settings['post_type'] ) ) ) {
924
  ?>
925
  <div class="wpuf-info">
926
  <?php
includes/class-upgrades.php CHANGED
@@ -17,6 +17,7 @@ class WPUF_Upgrades {
17
  '2.6.0' => 'upgrades/upgrade-2.6.0.php',
18
  '2.7.0' => 'upgrades/upgrade-2.7.0.php',
19
  '2.8.0' => 'upgrades/upgrade-2.8.0.php',
 
20
  );
21
 
22
  /**
17
  '2.6.0' => 'upgrades/upgrade-2.6.0.php',
18
  '2.7.0' => 'upgrades/upgrade-2.7.0.php',
19
  '2.8.0' => 'upgrades/upgrade-2.8.0.php',
20
+ '2.8.2' => 'upgrades/upgrade-2.8.2.php',
21
  );
22
 
23
  /**
includes/upgrades/upgrade-2.8.2.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ function wpuf_upgrade_2_8_2_default_cat_migration() {
4
+ $args = array(
5
+ 'post_type' => 'wpuf_forms',
6
+ 'post_status' => 'publish',
7
+ );
8
+
9
+ $allforms = get_posts($args);
10
+
11
+ if ( $allforms ) {
12
+ foreach ($allforms as $form) {
13
+
14
+ $currentform = new WPUF_Form( $form->ID );
15
+ $form_settings = $currentform->get_settings();
16
+
17
+ $old_default_cat = $form_settings['default_cat'];
18
+ $form_settings['default_cat'] = (array)$old_default_cat;
19
+ delete_post_meta( $form->ID, 'wpuf_form_settings' );
20
+
21
+ update_post_meta( $form->ID, 'wpuf_form_settings', $form_settings );
22
+ }
23
+ }
24
+
25
+ }
26
+
27
+ wpuf_upgrade_2_8_2_default_cat_migration();
languages/wpuf.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 2.8.1\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2018-01-14 09:24:05+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -137,7 +137,7 @@ msgstr ""
137
 
138
  #: admin/class-admin-subscription.php:206
139
  #: admin/class-admin-subscription.php:560 class/frontend-account.php:135
140
- #: class/subscription.php:844 class/subscription.php:857
141
  #: includes/class-user-subscription.php:301
142
  msgid "Free"
143
  msgstr ""
@@ -285,9 +285,9 @@ msgstr ""
285
 
286
  #: admin/class-admin-subscription.php:746
287
  #: admin/form-builder/class-wpuf-admin-form-builder.php:329
288
- #: class/payment.php:168 class/subscription.php:771
289
  #: includes/class-list-table-subscribers.php:128
290
- #: templates/dashboard/subscription.php:62
291
  msgid "Cancel"
292
  msgstr ""
293
 
@@ -1811,42 +1811,126 @@ msgid "Contact Support"
1811
  msgstr ""
1812
 
1813
  #: admin/html/whats-new.php:8
1814
- msgid "Setup Wizard"
1815
  msgstr ""
1816
 
1817
  #: admin/html/whats-new.php:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1818
  msgid "Setup Wizard added to turn off payment options and install pages."
1819
  msgstr ""
1820
 
1821
- #: admin/html/whats-new.php:14
1822
  msgid "Multi-select Category"
1823
  msgstr ""
1824
 
1825
- #: admin/html/whats-new.php:16
1826
  msgid "Add multi-select to default category in post form settings."
1827
  msgstr ""
1828
 
1829
- #: admin/html/whats-new.php:20
1830
  msgid "Select Text option for Taxonomy"
1831
  msgstr ""
1832
 
1833
- #: admin/html/whats-new.php:22
1834
  msgid ""
1835
  "Add Select Text option for taxonomy fields. Now you can add default text "
1836
  "with empty value as first option for Taxonomy dropdown."
1837
  msgstr ""
1838
 
1839
- #: admin/html/whats-new.php:25
1840
  msgid "Taxonomy Checkbox Inline"
1841
  msgstr ""
1842
 
1843
- #: admin/html/whats-new.php:27
1844
  msgid ""
1845
  "Added checkbox inline option to taxonomy checkbox. You can now display "
1846
  "Taxonomy checkbox fields inline."
1847
  msgstr ""
1848
 
1849
- #: admin/html/whats-new.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1850
  msgid "What's New in WPUF?"
1851
  msgstr ""
1852
 
@@ -1856,6 +1940,10 @@ msgid ""
1856
  "can do this by one click."
1857
  msgstr ""
1858
 
 
 
 
 
1859
  #: admin/installer.php:32
1860
  msgid "Skip Setup"
1861
  msgstr ""
@@ -3115,53 +3203,53 @@ msgstr ""
3115
  msgid "Parent Subscription"
3116
  msgstr ""
3117
 
3118
- #: class/subscription.php:739
3119
  msgid "Payment is complete"
3120
  msgstr ""
3121
 
3122
- #: class/subscription.php:739
3123
  msgid "Congratulations, your payment has been completed!"
3124
  msgstr ""
3125
 
3126
- #: class/subscription.php:743 class/subscription.php:747
3127
  msgid "Please buy a subscription pack to post"
3128
  msgstr ""
3129
 
3130
- #: class/subscription.php:761
3131
  msgid "<p><i>You have a subscription pack activated. </i></p>"
3132
  msgstr ""
3133
 
3134
- #: class/subscription.php:765
3135
  msgid "<p><i>To cancel the pack, press the following cancel button</i></p>"
3136
  msgstr ""
3137
 
3138
- #: class/subscription.php:825
3139
  msgid "Every"
3140
  msgstr ""
3141
 
3142
- #: class/subscription.php:829
3143
  msgid "One time payment"
3144
  msgstr ""
3145
 
3146
- #: class/subscription.php:841
3147
  msgid "Sign Up"
3148
  msgstr ""
3149
 
3150
- #: class/subscription.php:846
3151
  msgid "Buy Now"
3152
  msgstr ""
3153
 
3154
- #: class/subscription.php:911
3155
  msgid "There is a <strong>%s</strong> charge to add a new post."
3156
  msgstr ""
3157
 
3158
- #: class/subscription.php:923
3159
  msgid ""
3160
  "Your Subscription pack exhausted. There is a <strong>%s</strong> charge to "
3161
  "add a new post."
3162
  msgstr ""
3163
 
3164
- #: class/subscription.php:967
3165
  msgid "You must <a href=\"%s\">purchase a pack</a> before posting"
3166
  msgstr ""
3167
 
@@ -4119,10 +4207,6 @@ msgstr ""
4119
  msgid "Submit & Deactivate"
4120
  msgstr ""
4121
 
4122
- #: lib/class-wedevs-insights.php:667
4123
- msgid "Canel"
4124
- msgstr ""
4125
-
4126
  #: lib/class-weforms-upsell.php:353
4127
  msgid "You don't have permission to install the plugins"
4128
  msgstr ""
2
  # This file is distributed under the GPL2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP User Frontend 2.8.2\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2018-01-23 08:11:43+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
137
 
138
  #: admin/class-admin-subscription.php:206
139
  #: admin/class-admin-subscription.php:560 class/frontend-account.php:135
140
+ #: class/subscription.php:849 class/subscription.php:862
141
  #: includes/class-user-subscription.php:301
142
  msgid "Free"
143
  msgstr ""
285
 
286
  #: admin/class-admin-subscription.php:746
287
  #: admin/form-builder/class-wpuf-admin-form-builder.php:329
288
+ #: class/payment.php:168 class/subscription.php:776
289
  #: includes/class-list-table-subscribers.php:128
290
+ #: lib/class-wedevs-insights.php:667 templates/dashboard/subscription.php:62
291
  msgid "Cancel"
292
  msgstr ""
293
 
1811
  msgstr ""
1812
 
1813
  #: admin/html/whats-new.php:8
1814
+ msgid "Added upgrade function for default category"
1815
  msgstr ""
1816
 
1817
  #: admin/html/whats-new.php:10
1818
+ msgid "Upgrader added to upgrade previously set default post category."
1819
+ msgstr ""
1820
+
1821
+ #: admin/html/whats-new.php:13
1822
+ msgid "Subscription pack cannot be canceled"
1823
+ msgstr ""
1824
+
1825
+ #: admin/html/whats-new.php:15
1826
+ msgid ""
1827
+ "Fixed recurring subscription pack cannot be canceled from my account page "
1828
+ "in subscription details section."
1829
+ msgstr ""
1830
+
1831
+ #: admin/html/whats-new.php:18
1832
+ msgid "page installer admin notice logic issue"
1833
+ msgstr ""
1834
+
1835
+ #: admin/html/whats-new.php:20
1836
+ msgid ""
1837
+ "Fixed page installer admin notice logic problem due to new payment settings "
1838
+ "default value not set."
1839
+ msgstr ""
1840
+
1841
+ #: admin/html/whats-new.php:30
1842
+ msgid "Setup Wizard"
1843
+ msgstr ""
1844
+
1845
+ #: admin/html/whats-new.php:32
1846
  msgid "Setup Wizard added to turn off payment options and install pages."
1847
  msgstr ""
1848
 
1849
+ #: admin/html/whats-new.php:36
1850
  msgid "Multi-select Category"
1851
  msgstr ""
1852
 
1853
+ #: admin/html/whats-new.php:38
1854
  msgid "Add multi-select to default category in post form settings."
1855
  msgstr ""
1856
 
1857
+ #: admin/html/whats-new.php:42
1858
  msgid "Select Text option for Taxonomy"
1859
  msgstr ""
1860
 
1861
+ #: admin/html/whats-new.php:44
1862
  msgid ""
1863
  "Add Select Text option for taxonomy fields. Now you can add default text "
1864
  "with empty value as first option for Taxonomy dropdown."
1865
  msgstr ""
1866
 
1867
+ #: admin/html/whats-new.php:47
1868
  msgid "Taxonomy Checkbox Inline"
1869
  msgstr ""
1870
 
1871
+ #: admin/html/whats-new.php:49
1872
  msgid ""
1873
  "Added checkbox inline option to taxonomy checkbox. You can now display "
1874
  "Taxonomy checkbox fields inline."
1875
  msgstr ""
1876
 
1877
+ #: admin/html/whats-new.php:59
1878
+ msgid "Manage schedule for form submission"
1879
+ msgstr ""
1880
+
1881
+ #: admin/html/whats-new.php:61
1882
+ msgid ""
1883
+ "Do not accept form submission if the current date is not between the date "
1884
+ "range of the schedule."
1885
+ msgstr ""
1886
+
1887
+ #: admin/html/whats-new.php:65
1888
+ msgid "Restrict form submission based on the user roles"
1889
+ msgstr ""
1890
+
1891
+ #: admin/html/whats-new.php:67
1892
+ msgid ""
1893
+ "Restrict form submission based on the user roles. Now you can manage user "
1894
+ "role base permission on form submission."
1895
+ msgstr ""
1896
+
1897
+ #: admin/html/whats-new.php:71
1898
+ msgid "Limit how many entries a form will accept"
1899
+ msgstr ""
1900
+
1901
+ #: admin/html/whats-new.php:73
1902
+ msgid ""
1903
+ "Limit how many entries a form will accept and display a custom message when "
1904
+ "that limit is reached."
1905
+ msgstr ""
1906
+
1907
+ #: admin/html/whats-new.php:77
1908
+ msgid "Show/hide Admin Bar"
1909
+ msgstr ""
1910
+
1911
+ #: admin/html/whats-new.php:79
1912
+ msgid "Control the admin bar visibility based on user roles."
1913
+ msgstr ""
1914
+
1915
+ #: admin/html/whats-new.php:83
1916
+ msgid "Ajax Login widget"
1917
+ msgstr ""
1918
+
1919
+ #: admin/html/whats-new.php:85
1920
+ msgid ""
1921
+ "Login user is more simple now with Ajax Login Widget. The simple ajax login "
1922
+ "form do not required page loading for login."
1923
+ msgstr ""
1924
+
1925
+ #: admin/html/whats-new.php:89
1926
+ msgid "Form submission with Captcha field"
1927
+ msgstr ""
1928
+
1929
+ #: admin/html/whats-new.php:91
1930
+ msgid "Form field validation process updated if form submits with captcha field."
1931
+ msgstr ""
1932
+
1933
+ #: admin/html/whats-new.php:105
1934
  msgid "What's New in WPUF?"
1935
  msgstr ""
1936
 
1940
  "can do this by one click."
1941
  msgstr ""
1942
 
1943
+ #: admin/installer.php:31
1944
+ msgid "or"
1945
+ msgstr ""
1946
+
1947
  #: admin/installer.php:32
1948
  msgid "Skip Setup"
1949
  msgstr ""
3203
  msgid "Parent Subscription"
3204
  msgstr ""
3205
 
3206
+ #: class/subscription.php:744
3207
  msgid "Payment is complete"
3208
  msgstr ""
3209
 
3210
+ #: class/subscription.php:744
3211
  msgid "Congratulations, your payment has been completed!"
3212
  msgstr ""
3213
 
3214
+ #: class/subscription.php:748 class/subscription.php:752
3215
  msgid "Please buy a subscription pack to post"
3216
  msgstr ""
3217
 
3218
+ #: class/subscription.php:766
3219
  msgid "<p><i>You have a subscription pack activated. </i></p>"
3220
  msgstr ""
3221
 
3222
+ #: class/subscription.php:770
3223
  msgid "<p><i>To cancel the pack, press the following cancel button</i></p>"
3224
  msgstr ""
3225
 
3226
+ #: class/subscription.php:830
3227
  msgid "Every"
3228
  msgstr ""
3229
 
3230
+ #: class/subscription.php:834
3231
  msgid "One time payment"
3232
  msgstr ""
3233
 
3234
+ #: class/subscription.php:846
3235
  msgid "Sign Up"
3236
  msgstr ""
3237
 
3238
+ #: class/subscription.php:851
3239
  msgid "Buy Now"
3240
  msgstr ""
3241
 
3242
+ #: class/subscription.php:917
3243
  msgid "There is a <strong>%s</strong> charge to add a new post."
3244
  msgstr ""
3245
 
3246
+ #: class/subscription.php:929
3247
  msgid ""
3248
  "Your Subscription pack exhausted. There is a <strong>%s</strong> charge to "
3249
  "add a new post."
3250
  msgstr ""
3251
 
3252
+ #: class/subscription.php:973
3253
  msgid "You must <a href=\"%s\">purchase a pack</a> before posting"
3254
  msgstr ""
3255
 
4207
  msgid "Submit & Deactivate"
4208
  msgstr ""
4209
 
 
 
 
 
4210
  #: lib/class-weforms-upsell.php:353
4211
  msgid "You don't have permission to install the plugins"
4212
  msgstr ""
lib/class-wedevs-insights.php CHANGED
@@ -664,7 +664,7 @@ class WPUF_WeDevs_Insights {
664
  <div class="wd-dr-modal-footer">
665
  <a href="#" class="dont-bother-me"><?php _e( 'I rather wouldn\'t say', 'wpuf' ); ?></a>
666
  <button class="button-secondary"><?php _e( 'Submit & Deactivate', 'wpuf' ); ?></button>
667
- <button class="button-primary"><?php _e( 'Canel', 'wpuf' ); ?></button>
668
  </div>
669
  </div>
670
  </div>
664
  <div class="wd-dr-modal-footer">
665
  <a href="#" class="dont-bother-me"><?php _e( 'I rather wouldn\'t say', 'wpuf' ); ?></a>
666
  <button class="button-secondary"><?php _e( 'Submit & Deactivate', 'wpuf' ); ?></button>
667
+ <button class="button-primary"><?php _e( 'Cancel', 'wpuf' ); ?></button>
668
  </div>
669
  </div>
670
  </div>
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Forms, registration, profile-builder, login, membership
5
  Requires at least: 4.0
6
  Tested up to: 4.8.1
7
  Requires PHP: 5.4
8
- Stable tag: 2.8.1
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -170,6 +170,13 @@ redirected to the edit page with that post id. Then you'll see the edit post for
170
 
171
  == Changelog ==
172
 
 
 
 
 
 
 
 
173
  = v2.8.1 (14 January, 2017) =
174
 
175
  * **New:** Setup Wizard: Setup Wizard added to turn off payment options and install pages.
5
  Requires at least: 4.0
6
  Tested up to: 4.8.1
7
  Requires PHP: 5.4
8
+ Stable tag: 2.8.2
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
170
 
171
  == Changelog ==
172
 
173
+ = v2.8.3 (23 January, 2017) =
174
+
175
+ * **Improved:** Added upgrade function for default category: Upgrader added to upgrade previously set default post category.
176
+ * **Fix:** Subscription pack cannot be canceled: Fixed recurring subscription pack cannot be canceled from my account page in subscription details section.
177
+ * **Fix:** page installer admin notice logic issue: Fixed page installer admin notice logic problem due to new payment settings default value not set.
178
+
179
+
180
  = v2.8.1 (14 January, 2017) =
181
 
182
  * **New:** Setup Wizard: Setup Wizard added to turn off payment options and install pages.
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: Tareq Hasan
7
- Version: 2.8.1
8
  Author URI: https://tareq.co
9
  License: GPL2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -12,7 +12,7 @@ Text Domain: wpuf
12
  Domain Path: /languages
13
  */
14
 
15
- define( 'WPUF_VERSION', '2.8.1' );
16
  define( 'WPUF_FILE', __FILE__ );
17
  define( 'WPUF_ROOT', dirname( __FILE__ ) );
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: Tareq Hasan
7
+ Version: 2.8.2
8
  Author URI: https://tareq.co
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', '2.8.2' );
16
  define( 'WPUF_FILE', __FILE__ );
17
  define( 'WPUF_ROOT', dirname( __FILE__ ) );
18
  define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );