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

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.11
Comparing to
See all releases

Code changes from version 3.5.10 to 3.5.11

admin/html/whats-new.php CHANGED
@@ -1,5 +1,28 @@
1
  <?php
2
  $changelog = [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  [
4
  'version' => 'Version 3.5.9',
5
  'released' => '2020-12-11',
1
  <?php
2
  $changelog = [
3
+ [
4
+ 'version' => 'Version 3.5.11',
5
+ 'released' => '2021-01-12',
6
+ 'changes' => [
7
+
8
+ [
9
+ 'title' => __( 'QR and math captcha added to pro feature list', 'wp-user-frontend' ),
10
+ 'type' => 'Fix',
11
+ ],
12
+ [
13
+ 'title' => __( 'Tooltip for category navigate', 'wp-user-frontend' ),
14
+ 'type' => 'Fix',
15
+ ],
16
+ [
17
+ 'title' => __( 'Understandable guest payment notice', 'wp-user-frontend' ),
18
+ 'type' => 'Fix',
19
+ ],
20
+ [
21
+ 'title' => __( 'Paypal non recurring pack id does not set', 'wp-user-frontend' ),
22
+ 'type' => 'Fix',
23
+ ],
24
+ ],
25
+ ],
26
  [
27
  'version' => 'Version 3.5.9',
28
  'released' => '2020-12-11',
assets/js/wpuf-admin.js CHANGED
@@ -10,7 +10,8 @@ jQuery(function($) {
10
  '.admin-new-user-email',
11
  '.pending-user-email',
12
  '.denied-user-email',
13
- '.approved-user-email'
 
14
  ]
15
  group.forEach(function(header, index) {
16
  $(header).addClass("heading");
10
  '.admin-new-user-email',
11
  '.pending-user-email',
12
  '.denied-user-email',
13
+ '.approved-user-email',
14
+ '.approved-post-email'
15
  ]
16
  group.forEach(function(header, index) {
17
  $(header).addClass("heading");
changelog.txt CHANGED
@@ -1,3 +1,10 @@
 
 
 
 
 
 
 
1
  = v3.5.10 (18 December, 2020) =
2
  * Update - Added holiday promotional offer notice
3
 
1
+ = v3.5.11 (12 January, 2021) =
2
+ * Fix - QR and math captcha added to pro feature list
3
+ * Fix - Tooltip for category navigate
4
+ * Fix - Understandable guest payment notice
5
+ * Fix - Paypal non recurring pack id does not set
6
+
7
+
8
  = v3.5.10 (18 December, 2020) =
9
  * Update - Added holiday promotional offer notice
10
 
includes/class-form.php CHANGED
@@ -54,7 +54,7 @@ class WPUF_Form {
54
  public function guest_post() {
55
  $settings = $this->get_settings();
56
 
57
- if ( isset( $settings['guest_post'] ) && $settings['guest_post'] == 'true' ) {
58
  return true;
59
  }
60
 
@@ -69,7 +69,7 @@ class WPUF_Form {
69
  public function is_charging_enabled() {
70
  $settings = $this->get_settings();
71
 
72
- if ( isset( $settings['payment_options'] ) && $settings['payment_options'] == 'true' ) {
73
  return true;
74
  }
75
 
@@ -84,7 +84,7 @@ class WPUF_Form {
84
  public function is_enabled_pay_per_post() {
85
  $settings = $this->get_settings();
86
 
87
- if ( isset( $settings['enable_pay_per_post'] ) && $settings['enable_pay_per_post'] == 'true' ) {
88
  return true;
89
  }
90
 
@@ -99,7 +99,7 @@ class WPUF_Form {
99
  public function is_enabled_force_pack() {
100
  $settings = $this->get_settings();
101
 
102
- if ( isset( $settings['force_pack_purchase'] ) && $settings['force_pack_purchase'] == 'true' ) {
103
  return true;
104
  }
105
 
@@ -129,7 +129,7 @@ class WPUF_Form {
129
  public function is_enabled_fallback_cost() {
130
  $settings = $this->get_settings();
131
 
132
- if ( isset( $settings['fallback_ppp_enable'] ) && $settings['fallback_ppp_enable'] == 'true' ) {
133
  return true;
134
  }
135
 
@@ -168,7 +168,7 @@ class WPUF_Form {
168
  $current_user = wpuf_get_user();
169
  $guest_post_enabled = $this->guest_post();
170
 
171
- if ( isset( $this->form_settings['message_restrict'] ) && !$guest_post_enabled && !is_user_logged_in() ) {
172
  $user_can_post = 'no';
173
  $info = $this->form_settings['message_restrict'];
174
  }
@@ -182,14 +182,16 @@ class WPUF_Form {
182
  $has_post_count = $current_user->subscription()->has_post_count( $form_settings['post_type'] );
183
 
184
  // guest post payment checking
185
- if ( !is_user_logged_in() && isset( $form_settings['guest_post'] ) && $form_settings['guest_post'] == 'true' ) {
186
 
187
  //if ( $form->is_charging_enabled() ) {
188
 
189
  if ( $force_pack ) {
190
  $user_can_post = 'no';
191
- $info = 'You need to buy a pack to post in this form.';
192
- } elseif ( $pay_per_post && !$force_pack ) {
 
 
193
  $user_can_post = 'yes';
194
  // $info = sprintf( __( 'There is a <strong>%s</strong> charge to add a new post.', 'wpuf' ), wpuf_format_price( $pay_per_post_cost ));
195
  // echo '<div class="wpuf-info">' . apply_filters( 'wpuf_ppp_notice', $info, $id, $form_settings ) . '</div>';
@@ -206,12 +208,12 @@ class WPUF_Form {
206
  if ( $force_pack && is_user_logged_in() ) {
207
  $current_pack = $current_user->subscription()->current_pack();
208
 
209
- if ( !is_wp_error( $current_pack ) ) {
210
  // user has valid post count
211
  if ( $has_post_count ) {
212
  $user_can_post = 'yes';
213
  } else {
214
- if ( $fallback_enabled && !$has_post_count ) {
215
  $user_can_post = 'yes';
216
  } else {
217
  $user_can_post = 'no';
@@ -222,17 +224,17 @@ class WPUF_Form {
222
  $user_can_post = 'no';
223
  $info = $current_pack->get_error_message();
224
  }
225
- } elseif ( $pay_per_post && is_user_logged_in() && !$current_user->subscription()->has_post_count( $form_settings['post_type'] ) ) {
226
  $user_can_post = 'yes';
227
  // $info = sprintf( __( 'There is a <strong>%s</strong> charge to add a new post.', 'wpuf' ), wpuf_format_price( $pay_per_post_cost ));
228
  // echo '<div class="wpuf-info">' . apply_filters( 'wpuf_ppp_notice', $info, $id, $form_settings ) . '</div>';
229
- } elseif ( !$pay_per_post && !$current_user->subscription()->has_post_count( $form_settings['post_type'] ) ) {
230
  $user_can_post = 'no';
231
  $info = sprintf( __( 'Payment type not selected for this form. Please contact admin.', 'wp-user-frontend' ) );
232
  } else {
233
  $user_can_post = 'no';
234
 
235
- if ( !is_user_logged_in() ) {
236
  $info = $form_settings['message_restrict'];
237
  } else {
238
  $info = sprintf( __( 'Payment type not selected for this form. Please contact admin.', 'wp-user-frontend' ) );
@@ -240,16 +242,17 @@ class WPUF_Form {
240
  }
241
  }
242
  } else {
243
- if ( isset( $form_settings['guest_post'] ) && $form_settings['guest_post'] == 'true' && !is_user_logged_in() ) {
 
244
  $user_can_post = 'yes';
245
  }
246
  }
247
 
248
- return [$user_can_post, $info];
249
  }
250
 
251
  /**
252
- * prepare_entries
253
  *
254
  * @return array
255
  */
@@ -258,14 +261,14 @@ class WPUF_Form {
258
  $form_fields = $this->get_fields();
259
  $entry_fields = [];
260
 
261
- $ignore_list = apply_filters( 'wpuf_entry_ignore_list', ['recaptcha'] );
262
 
263
  foreach ( $form_fields as $field ) {
264
- if ( in_array( $field['template'], $ignore_list ) ) {
265
  continue;
266
  }
267
 
268
- if ( !array_key_exists( $field['template'], $fields ) ) {
269
  continue;
270
  }
271
 
@@ -289,21 +292,23 @@ class WPUF_Form {
289
  return $this->form_fields;
290
  }
291
 
292
- $fields = get_children( [
293
- 'post_parent' => $this->id,
294
- 'post_status' => 'publish',
295
- 'post_type' => 'wpuf_input',
296
- 'numberposts' => '-1',
297
- 'orderby' => 'menu_order',
298
- 'order' => 'ASC',
299
- ] );
 
 
300
 
301
  $form_fields = [];
302
 
303
  foreach ( $fields as $key => $content ) {
304
  $field = maybe_unserialize( $content->post_content );
305
 
306
- if ( empty( $field['template'] ) ) {
307
  continue;
308
  }
309
 
@@ -312,8 +317,8 @@ class WPUF_Form {
312
  // Add inline property for radio and checkbox fields
313
  $inline_supported_fields = apply_filters( 'wpuf_inline_supported_fields_list', [ 'radio_field', 'checkbox_field' ] );
314
 
315
- if ( in_array( $field['template'], $inline_supported_fields ) ) {
316
- if ( !isset( $field['inline'] ) ) {
317
  $field['inline'] = 'no';
318
  }
319
  }
@@ -321,8 +326,8 @@ class WPUF_Form {
321
  // Add 'selected' property
322
  $option_based_fields = apply_filters( 'wpuf_option_based_fields_list', [ 'dropdown_field', 'multiple_select', 'radio_field', 'checkbox_field' ] );
323
 
324
- if ( in_array( $field['template'], $option_based_fields ) ) {
325
- if ( !isset( $field['selected'] ) ) {
326
  if ( 'dropdown_field' === $field['template'] || 'radio_field' === $field['template'] ) {
327
  $field['selected'] = '';
328
  } else {
@@ -332,7 +337,7 @@ class WPUF_Form {
332
  }
333
 
334
  // Add 'multiple' key for template:repeat
335
- if ( 'repeat_field' === $field['template'] && !isset( $field['multiple'] ) ) {
336
  $field['multiple'] = '';
337
  }
338
 
54
  public function guest_post() {
55
  $settings = $this->get_settings();
56
 
57
+ if ( isset( $settings['guest_post'] ) && $settings['guest_post'] === 'true' ) {
58
  return true;
59
  }
60
 
69
  public function is_charging_enabled() {
70
  $settings = $this->get_settings();
71
 
72
+ if ( isset( $settings['payment_options'] ) && $settings['payment_options'] === 'true' ) {
73
  return true;
74
  }
75
 
84
  public function is_enabled_pay_per_post() {
85
  $settings = $this->get_settings();
86
 
87
+ if ( isset( $settings['enable_pay_per_post'] ) && $settings['enable_pay_per_post'] === 'true' ) {
88
  return true;
89
  }
90
 
99
  public function is_enabled_force_pack() {
100
  $settings = $this->get_settings();
101
 
102
+ if ( isset( $settings['force_pack_purchase'] ) && $settings['force_pack_purchase'] === 'true' ) {
103
  return true;
104
  }
105
 
129
  public function is_enabled_fallback_cost() {
130
  $settings = $this->get_settings();
131
 
132
+ if ( isset( $settings['fallback_ppp_enable'] ) && $settings['fallback_ppp_enable'] === 'true' ) {
133
  return true;
134
  }
135
 
168
  $current_user = wpuf_get_user();
169
  $guest_post_enabled = $this->guest_post();
170
 
171
+ if ( isset( $this->form_settings['message_restrict'] ) && ! $guest_post_enabled && ! is_user_logged_in() ) {
172
  $user_can_post = 'no';
173
  $info = $this->form_settings['message_restrict'];
174
  }
182
  $has_post_count = $current_user->subscription()->has_post_count( $form_settings['post_type'] );
183
 
184
  // guest post payment checking
185
+ if ( ! is_user_logged_in() && isset( $form_settings['guest_post'] ) && $form_settings['guest_post'] === 'true' ) {
186
 
187
  //if ( $form->is_charging_enabled() ) {
188
 
189
  if ( $force_pack ) {
190
  $user_can_post = 'no';
191
+ $pack_page = get_permalink( wpuf_get_option( 'subscription_page', 'wpuf_payment' ) );
192
+ /* translators: %s: Pack page link */
193
+ $info = sprintf( __( 'You need to <a href="%s">purchase a subscription package</a> to post in this form', 'wp-user-frontend' ), $pack_page );
194
+ } elseif ( $pay_per_post && ! $force_pack ) {
195
  $user_can_post = 'yes';
196
  // $info = sprintf( __( 'There is a <strong>%s</strong> charge to add a new post.', 'wpuf' ), wpuf_format_price( $pay_per_post_cost ));
197
  // echo '<div class="wpuf-info">' . apply_filters( 'wpuf_ppp_notice', $info, $id, $form_settings ) . '</div>';
208
  if ( $force_pack && is_user_logged_in() ) {
209
  $current_pack = $current_user->subscription()->current_pack();
210
 
211
+ if ( ! is_wp_error( $current_pack ) ) {
212
  // user has valid post count
213
  if ( $has_post_count ) {
214
  $user_can_post = 'yes';
215
  } else {
216
+ if ( $fallback_enabled && ! $has_post_count ) {
217
  $user_can_post = 'yes';
218
  } else {
219
  $user_can_post = 'no';
224
  $user_can_post = 'no';
225
  $info = $current_pack->get_error_message();
226
  }
227
+ } elseif ( $pay_per_post && is_user_logged_in() && ! $current_user->subscription()->has_post_count( $form_settings['post_type'] ) ) {
228
  $user_can_post = 'yes';
229
  // $info = sprintf( __( 'There is a <strong>%s</strong> charge to add a new post.', 'wpuf' ), wpuf_format_price( $pay_per_post_cost ));
230
  // echo '<div class="wpuf-info">' . apply_filters( 'wpuf_ppp_notice', $info, $id, $form_settings ) . '</div>';
231
+ } elseif ( ! $pay_per_post && ! $current_user->subscription()->has_post_count( $form_settings['post_type'] ) ) {
232
  $user_can_post = 'no';
233
  $info = sprintf( __( 'Payment type not selected for this form. Please contact admin.', 'wp-user-frontend' ) );
234
  } else {
235
  $user_can_post = 'no';
236
 
237
+ if ( ! is_user_logged_in() ) {
238
  $info = $form_settings['message_restrict'];
239
  } else {
240
  $info = sprintf( __( 'Payment type not selected for this form. Please contact admin.', 'wp-user-frontend' ) );
242
  }
243
  }
244
  } else {
245
+ if ( isset( $form_settings['guest_post'] ) && $form_settings['guest_post'] === 'true' && !
246
+ is_user_logged_in() ) {
247
  $user_can_post = 'yes';
248
  }
249
  }
250
 
251
+ return [ $user_can_post, $info ];
252
  }
253
 
254
  /**
255
+ * Prepare_entries
256
  *
257
  * @return array
258
  */
261
  $form_fields = $this->get_fields();
262
  $entry_fields = [];
263
 
264
+ $ignore_list = apply_filters( 'wpuf_entry_ignore_list', [ 'recaptcha' ] );
265
 
266
  foreach ( $form_fields as $field ) {
267
+ if ( in_array( $field['template'], $ignore_list, true ) ) {
268
  continue;
269
  }
270
 
271
+ if ( ! array_key_exists( $field['template'], $fields ) ) {
272
  continue;
273
  }
274
 
292
  return $this->form_fields;
293
  }
294
 
295
+ $fields = get_children(
296
+ [
297
+ 'post_parent' => $this->id,
298
+ 'post_status' => 'publish',
299
+ 'post_type' => 'wpuf_input',
300
+ 'numberposts' => '-1',
301
+ 'orderby' => 'menu_order',
302
+ 'order' => 'ASC',
303
+ ]
304
+ );
305
 
306
  $form_fields = [];
307
 
308
  foreach ( $fields as $key => $content ) {
309
  $field = maybe_unserialize( $content->post_content );
310
 
311
+ if ( empty( $field['template'] ) ) {
312
  continue;
313
  }
314
 
317
  // Add inline property for radio and checkbox fields
318
  $inline_supported_fields = apply_filters( 'wpuf_inline_supported_fields_list', [ 'radio_field', 'checkbox_field' ] );
319
 
320
+ if ( in_array( $field['template'], $inline_supported_fields, true ) ) {
321
+ if ( ! isset( $field['inline'] ) ) {
322
  $field['inline'] = 'no';
323
  }
324
  }
326
  // Add 'selected' property
327
  $option_based_fields = apply_filters( 'wpuf_option_based_fields_list', [ 'dropdown_field', 'multiple_select', 'radio_field', 'checkbox_field' ] );
328
 
329
+ if ( in_array( $field['template'], $option_based_fields, true ) ) {
330
+ if ( ! isset( $field['selected'] ) ) {
331
  if ( 'dropdown_field' === $field['template'] || 'radio_field' === $field['template'] ) {
332
  $field['selected'] = '';
333
  } else {
337
  }
338
 
339
  // Add 'multiple' key for template:repeat
340
+ if ( 'repeat_field' === $field['template'] && ! isset( $field['multiple'] ) ) {
341
  $field['multiple'] = '';
342
  }
343
 
includes/class-pro-upgrades.php CHANGED
@@ -28,7 +28,7 @@ class WPUF_Pro_Upgrades {
28
  * @return array
29
  */
30
  public function register_pro_fields( $fields ) {
31
- if ( !class_exists( 'WPUF_Form_Field_Pro' ) ) {
32
  if ( class_exists( 'WPUF_Field_Contract' ) ) {
33
  require_once WPUF_ROOT . '/includes/fields/class-field-pro.php';
34
  }
@@ -51,6 +51,8 @@ class WPUF_Pro_Upgrades {
51
  $fields['shortcode'] = new WPUF_Form_Field_Shortcode();
52
  $fields['step_start'] = new WPUF_Form_Field_Step();
53
  $fields['toc'] = new WPUF_Form_Field_Toc();
 
 
54
  }
55
 
56
  return $fields;
@@ -63,8 +65,14 @@ class WPUF_Pro_Upgrades {
63
  */
64
  public function add_to_custom_fields( $fields ) {
65
  $pro_fields = [
66
- 'repeat_field', 'date_field', 'file_upload', 'country_list_field',
67
- 'numeric_text_field', 'address_field', 'google_map', 'step_start',
 
 
 
 
 
 
68
  ];
69
 
70
  return array_merge( $fields, $pro_fields );
@@ -77,7 +85,14 @@ class WPUF_Pro_Upgrades {
77
  */
78
  public function add_to_others_fields( $fields ) {
79
  $pro_fields = [
80
- 'shortcode', 'action_hook', 'toc', 'ratings', 'embed', 'really_simple_captcha',
 
 
 
 
 
 
 
81
  ];
82
 
83
  return array_merge( $fields, $pro_fields );
28
  * @return array
29
  */
30
  public function register_pro_fields( $fields ) {
31
+ if ( ! class_exists( 'WPUF_Form_Field_Pro' ) ) {
32
  if ( class_exists( 'WPUF_Field_Contract' ) ) {
33
  require_once WPUF_ROOT . '/includes/fields/class-field-pro.php';
34
  }
51
  $fields['shortcode'] = new WPUF_Form_Field_Shortcode();
52
  $fields['step_start'] = new WPUF_Form_Field_Step();
53
  $fields['toc'] = new WPUF_Form_Field_Toc();
54
+ $fields['math_captcha'] = new WPUF_Form_Field_Math_Captcha();
55
+ $fields['qr_code'] = new WPUF_Form_Field_QR_Code();
56
  }
57
 
58
  return $fields;
65
  */
66
  public function add_to_custom_fields( $fields ) {
67
  $pro_fields = [
68
+ 'repeat_field',
69
+ 'date_field',
70
+ 'file_upload',
71
+ 'country_list_field',
72
+ 'numeric_text_field',
73
+ 'address_field',
74
+ 'google_map',
75
+ 'step_start',
76
  ];
77
 
78
  return array_merge( $fields, $pro_fields );
85
  */
86
  public function add_to_others_fields( $fields ) {
87
  $pro_fields = [
88
+ 'shortcode',
89
+ 'action_hook',
90
+ 'toc',
91
+ 'ratings',
92
+ 'embed',
93
+ 'really_simple_captcha',
94
+ 'math_captcha',
95
+ 'qr_code',
96
  ];
97
 
98
  return array_merge( $fields, $pro_fields );
includes/fields/class-abstract-fields.php CHANGED
@@ -94,7 +94,7 @@ abstract class WPUF_Field_Contract {
94
  * @return bool
95
  */
96
  public function is_meta( $field_settings ) {
97
- if ( isset( $field_settings['is_meta'] ) && $field_settings['is_meta'] == 'yes' ) {
98
  return true;
99
  }
100
 
@@ -112,11 +112,11 @@ abstract class WPUF_Field_Contract {
112
  * @return string
113
  */
114
  public function get_meta( $object_id, $meta_key, $type = 'post', $single = true ) {
115
- if ( !$object_id ) {
116
  return '';
117
  }
118
 
119
- if ( $type == 'post' ) {
120
  return get_post_meta( $object_id, $meta_key, $single );
121
  }
122
 
@@ -139,7 +139,8 @@ abstract class WPUF_Field_Contract {
139
  'is_full_width' => $this->is_full_width(),
140
  ];
141
 
142
- if ( $validator = $this->get_validator() ) {
 
143
  $settings['validator'] = $validator;
144
  }
145
 
@@ -323,43 +324,45 @@ abstract class WPUF_Field_Contract {
323
  ];
324
 
325
  if ( is_wpuf_post_form_builder() ) {
326
- $common_properties = array_merge( $common_properties, [
327
- [
328
- 'name' => 'show_in_post',
329
- 'title' => __( 'Show Data in Post', 'wp-user-frontend' ),
330
- 'type' => 'radio',
331
- 'options' => [
332
- 'yes' => __( 'Yes', 'wp-user-frontend' ),
333
- 'no' => __( 'No', 'wp-user-frontend' ),
 
 
 
 
 
 
 
334
  ],
335
- 'section' => 'advanced',
336
- 'priority' => 24,
337
- 'default' => 'yes',
338
- 'inline' => true,
339
- 'help_text' => __( 'Select Yes if you want to show the field data in single post.', 'wp-user-frontend' ),
340
- ],
341
- [
342
- 'name' => 'hide_field_label',
343
- 'title' => __( 'Hide Field Label in Post', 'wp-user-frontend' ),
344
- 'type' => 'radio',
345
- 'options' => [
346
- 'yes' => __( 'Yes', 'wp-user-frontend' ),
347
- 'no' => __( 'No', 'wp-user-frontend' ),
348
  ],
349
- 'section' => 'advanced',
350
- 'priority' => 24,
351
- 'default' => 'no',
352
- 'inline' => true,
353
- 'help_text' => __( 'Select Yes if you want to hide the field label in single post.', 'wp-user-frontend' ),
354
- ],
355
- ] );
356
  }
357
  }
358
 
359
  if ( count( $exclude ) ) {
360
  foreach ( $common_properties as $key => &$option ) {
361
- if ( in_array( $option['name'], $exclude ) ) {
362
- unset( $common_properties[$key] );
363
  }
364
  }
365
  }
@@ -466,7 +469,7 @@ abstract class WPUF_Field_Contract {
466
  'type' => 'multiselect',
467
  'section' => 'advanced',
468
  'priority' => 27,
469
- 'help_text' => __( 'Search the terms name.', 'wp-user-frontend' ),
470
  'options' => wpuf_get_terms( $tax_name ),
471
  ],
472
 
@@ -496,34 +499,34 @@ abstract class WPUF_Field_Contract {
496
  ],
497
  ];
498
 
499
-
500
  if ( $content_restriction ) {
501
- $properties = array_merge( $properties, [
502
- [
503
- 'name' => 'restriction_type',
504
- 'title' => __( 'Content restricted by', 'wp-user-frontend' ),
505
- 'type' => 'radio',
506
- 'options' => [
507
- 'character' => __( 'Character', 'wp-user-frontend' ),
508
- 'word' => __( 'Word', 'wp-user-frontend' ),
 
 
 
 
 
 
509
  ],
510
- 'section' => 'advanced',
511
- 'priority' => 15,
512
- 'inline' => true,
513
- 'default' => 'character',
514
- ],
515
-
516
- [
517
- 'name' => 'content_restriction',
518
- 'title' => __( 'Content Restriction', 'wp-user-frontend' ),
519
- 'type' => 'text',
520
- 'section' => 'advanced',
521
- 'priority' => 16,
522
- 'help_text' => __( 'Number of characters or words the author to be restricted in', 'wp-user-frontend' ),
523
- ],
524
- ] );
525
  }
526
-
527
 
528
  return apply_filters( 'wpuf-form-builder-common-taxonomy-fields-properties', $properties );
529
  }
@@ -571,30 +574,32 @@ abstract class WPUF_Field_Contract {
571
  ];
572
 
573
  if ( $content_restriction ) {
574
- $properties = array_merge( $properties, [
575
- [
576
- 'name' => 'restriction_type',
577
- 'title' => __( 'Content restricted by', 'wp-user-frontend' ),
578
- 'type' => 'radio',
579
- 'options' => [
580
- 'character' => __( 'Character', 'wp-user-frontend' ),
581
- 'word' => __( 'Word', 'wp-user-frontend' ),
 
 
 
 
 
 
582
  ],
583
- 'section' => 'advanced',
584
- 'priority' => 15,
585
- 'inline' => true,
586
- 'default' => 'character',
587
- ],
588
-
589
- [
590
- 'name' => 'content_restriction',
591
- 'title' => __( 'Content Restriction', 'wp-user-frontend' ),
592
- 'type' => 'text',
593
- 'section' => 'advanced',
594
- 'priority' => 16,
595
- 'help_text' => __( 'Number of characters or words the author to be restricted in', 'wp-user-frontend' ),
596
- ],
597
- ] );
598
  }
599
 
600
  return apply_filters( 'wpuf-form-builder-common-text-fields-properties', $properties );
@@ -717,15 +722,20 @@ abstract class WPUF_Field_Contract {
717
 
718
  <li <?php $this->print_list_attributes( $field ); ?>>
719
 
720
- <?php $this->print_label( $field, $form_id );
 
721
  }
722
  }
723
 
724
  public function after_field_print_label() {
725
  if ( is_admin() ) {
726
- ?></td></tr><?php
 
 
727
  } else {
728
- ?></li><?php
 
 
729
  }
730
  }
731
 
@@ -739,9 +749,9 @@ abstract class WPUF_Field_Contract {
739
 
740
  public function print_list_attributes( $field ) {
741
  $label = isset( $field['label'] ) ? $field['label'] : '';
742
- $el_name = !empty( $field['name'] ) ? $field['name'] : '';
743
- $class_name = !empty( $field['css'] ) ? ' ' . $field['css'] : '';
744
- $field_size = !empty( $field['width'] ) ? ' field-size-' . $field['width'] : '';
745
 
746
  printf( 'class="wpuf-el %s%s%s" data-label="%s"', esc_attr( $el_name ), esc_attr( $class_name ), esc_attr( $field_size ), esc_attr( $label ) );
747
  }
@@ -768,7 +778,7 @@ abstract class WPUF_Field_Contract {
768
  * @return bool
769
  */
770
  public function is_required( $field ) {
771
- if ( isset( $field['required'] ) && $field['required'] == 'yes' ) {
772
  return true;
773
  }
774
 
@@ -796,7 +806,8 @@ abstract class WPUF_Field_Contract {
796
  public function help_text( $field ) {
797
  if ( empty( $field['help'] ) ) {
798
  return;
799
- } ?>
 
800
  <span class="wpuf-help"><?php echo stripslashes( $field['help'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></span>
801
  <?php
802
  }
@@ -810,14 +821,15 @@ abstract class WPUF_Field_Contract {
810
  * @return void
811
  */
812
  public function conditional_logic( $form_field, $form_id ) {
813
- if ( !isset( $form_field['wpuf_cond']['condition_status'] ) || $form_field['wpuf_cond']['condition_status'] != 'yes' ) {
 
814
  return;
815
  }
816
 
817
  $cond_inputs = $form_field['wpuf_cond'];
818
  $cond_inputs['condition_status'] = isset( $cond_inputs['condition_status'] ) ? $cond_inputs['condition_status'] : '';
819
 
820
- if ( $cond_inputs['condition_status'] == 'yes' ) {
821
  $cond_inputs['type'] = isset( $form_field['input_type'] ) ? $form_field['input_type'] : '';
822
  $cond_inputs['name'] = isset( $form_field['name'] ) ? $form_field['name'] : $form_field['template'] . '_' . $form_field['id'];
823
  $cond_inputs['form_id'] = $form_id;
@@ -827,10 +839,11 @@ abstract class WPUF_Field_Contract {
827
  }
828
 
829
  //taxnomy name create unique
830
- if ( $form_field['input_type'] == 'taxonomy' ) {
831
  $cond_inputs['name'] = $form_field['name'] . '_' . $form_field['type'] . '_' . $form_field['id'];
832
  $condition = json_encode( $cond_inputs );
833
- }?>
 
834
  <script type="text/javascript">
835
  wpuf_conditional_items.push(<?php echo wp_kses( $condition, [] ); ?>);
836
  </script>
@@ -847,18 +860,20 @@ abstract class WPUF_Field_Contract {
847
  public function prepare_entry( $field ) {
848
  check_ajax_referer( 'wpuf_form_add' );
849
 
850
- $value = !empty( $_POST[$field['name']] ) ? sanitize_text_field( wp_unslash( $_POST[$field['name']] ) ): '';
 
851
 
852
  if ( is_array( $value ) ) {
853
  $entry_value = implode( WP_User_Frontend::$field_separator, $value );
854
  } else {
855
- $entry_value = trim( $value );
856
  }
857
 
858
  return $entry_value;
859
  }
860
 
861
  /**
 
862
  * wpuf_visibility property for all fields
863
  *
864
  * @since 2.6
@@ -881,7 +896,8 @@ abstract class WPUF_Field_Contract {
881
  // bail out if it is dashboard
882
  if ( is_admin() ) {
883
  return;
884
- } ?>
 
885
  <script type="text/javascript">
886
  ;(function($) {
887
  $(document).ready( function(){
94
  * @return bool
95
  */
96
  public function is_meta( $field_settings ) {
97
+ if ( isset( $field_settings['is_meta'] ) && $field_settings['is_meta'] === 'yes' ) {
98
  return true;
99
  }
100
 
112
  * @return string
113
  */
114
  public function get_meta( $object_id, $meta_key, $type = 'post', $single = true ) {
115
+ if ( ! $object_id ) {
116
  return '';
117
  }
118
 
119
+ if ( $type === 'post' ) {
120
  return get_post_meta( $object_id, $meta_key, $single );
121
  }
122
 
139
  'is_full_width' => $this->is_full_width(),
140
  ];
141
 
142
+ $validator = $this->get_validator();
143
+ if ( $validator ) {
144
  $settings['validator'] = $validator;
145
  }
146
 
324
  ];
325
 
326
  if ( is_wpuf_post_form_builder() ) {
327
+ $common_properties = array_merge(
328
+ $common_properties, [
329
+ [
330
+ 'name' => 'show_in_post',
331
+ 'title' => __( 'Show Data in Post', 'wp-user-frontend' ),
332
+ 'type' => 'radio',
333
+ 'options' => [
334
+ 'yes' => __( 'Yes', 'wp-user-frontend' ),
335
+ 'no' => __( 'No', 'wp-user-frontend' ),
336
+ ],
337
+ 'section' => 'advanced',
338
+ 'priority' => 24,
339
+ 'default' => 'yes',
340
+ 'inline' => true,
341
+ 'help_text' => __( 'Select Yes if you want to show the field data in single post.', 'wp-user-frontend' ),
342
  ],
343
+ [
344
+ 'name' => 'hide_field_label',
345
+ 'title' => __( 'Hide Field Label in Post', 'wp-user-frontend' ),
346
+ 'type' => 'radio',
347
+ 'options' => [
348
+ 'yes' => __( 'Yes', 'wp-user-frontend' ),
349
+ 'no' => __( 'No', 'wp-user-frontend' ),
350
+ ],
351
+ 'section' => 'advanced',
352
+ 'priority' => 24,
353
+ 'default' => 'no',
354
+ 'inline' => true,
355
+ 'help_text' => __( 'Select Yes if you want to hide the field label in single post.', 'wp-user-frontend' ),
356
  ],
357
+ ]
358
+ );
 
 
 
 
 
359
  }
360
  }
361
 
362
  if ( count( $exclude ) ) {
363
  foreach ( $common_properties as $key => &$option ) {
364
+ if ( in_array( $option['name'], $exclude, true ) ) {
365
+ unset( $common_properties[ $key ] );
366
  }
367
  }
368
  }
469
  'type' => 'multiselect',
470
  'section' => 'advanced',
471
  'priority' => 27,
472
+ 'help_text' => __( 'Search the terms name. use ⇦ ⇨ for navigate', 'wp-user-frontend' ),
473
  'options' => wpuf_get_terms( $tax_name ),
474
  ],
475
 
499
  ],
500
  ];
501
 
 
502
  if ( $content_restriction ) {
503
+ $properties = array_merge(
504
+ $properties, [
505
+ [
506
+ 'name' => 'restriction_type',
507
+ 'title' => __( 'Content restricted by', 'wp-user-frontend' ),
508
+ 'type' => 'radio',
509
+ 'options' => [
510
+ 'character' => __( 'Character', 'wp-user-frontend' ),
511
+ 'word' => __( 'Word', 'wp-user-frontend' ),
512
+ ],
513
+ 'section' => 'advanced',
514
+ 'priority' => 15,
515
+ 'inline' => true,
516
+ 'default' => 'character',
517
  ],
518
+
519
+ [
520
+ 'name' => 'content_restriction',
521
+ 'title' => __( 'Content Restriction', 'wp-user-frontend' ),
522
+ 'type' => 'text',
523
+ 'section' => 'advanced',
524
+ 'priority' => 16,
525
+ 'help_text' => __( 'Number of characters or words the author to be restricted in', 'wp-user-frontend' ),
526
+ ],
527
+ ]
528
+ );
 
 
 
 
529
  }
 
530
 
531
  return apply_filters( 'wpuf-form-builder-common-taxonomy-fields-properties', $properties );
532
  }
574
  ];
575
 
576
  if ( $content_restriction ) {
577
+ $properties = array_merge(
578
+ $properties, [
579
+ [
580
+ 'name' => 'restriction_type',
581
+ 'title' => __( 'Content restricted by', 'wp-user-frontend' ),
582
+ 'type' => 'radio',
583
+ 'options' => [
584
+ 'character' => __( 'Character', 'wp-user-frontend' ),
585
+ 'word' => __( 'Word', 'wp-user-frontend' ),
586
+ ],
587
+ 'section' => 'advanced',
588
+ 'priority' => 15,
589
+ 'inline' => true,
590
+ 'default' => 'character',
591
  ],
592
+
593
+ [
594
+ 'name' => 'content_restriction',
595
+ 'title' => __( 'Content Restriction', 'wp-user-frontend' ),
596
+ 'type' => 'text',
597
+ 'section' => 'advanced',
598
+ 'priority' => 16,
599
+ 'help_text' => __( 'Number of characters or words the author to be restricted in', 'wp-user-frontend' ),
600
+ ],
601
+ ]
602
+ );
 
 
 
 
603
  }
604
 
605
  return apply_filters( 'wpuf-form-builder-common-text-fields-properties', $properties );
722
 
723
  <li <?php $this->print_list_attributes( $field ); ?>>
724
 
725
+ <?php
726
+ $this->print_label( $field, $form_id );
727
  }
728
  }
729
 
730
  public function after_field_print_label() {
731
  if ( is_admin() ) {
732
+ ?>
733
+ </td></tr>
734
+ <?php
735
  } else {
736
+ ?>
737
+ </li>
738
+ <?php
739
  }
740
  }
741
 
749
 
750
  public function print_list_attributes( $field ) {
751
  $label = isset( $field['label'] ) ? $field['label'] : '';
752
+ $el_name = ! empty( $field['name'] ) ? $field['name'] : '';
753
+ $class_name = ! empty( $field['css'] ) ? ' ' . $field['css'] : '';
754
+ $field_size = ! empty( $field['width'] ) ? ' field-size-' . $field['width'] : '';
755
 
756
  printf( 'class="wpuf-el %s%s%s" data-label="%s"', esc_attr( $el_name ), esc_attr( $class_name ), esc_attr( $field_size ), esc_attr( $label ) );
757
  }
778
  * @return bool
779
  */
780
  public function is_required( $field ) {
781
+ if ( isset( $field['required'] ) && $field['required'] === 'yes' ) {
782
  return true;
783
  }
784
 
806
  public function help_text( $field ) {
807
  if ( empty( $field['help'] ) ) {
808
  return;
809
+ }
810
+ ?>
811
  <span class="wpuf-help"><?php echo stripslashes( $field['help'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></span>
812
  <?php
813
  }
821
  * @return void
822
  */
823
  public function conditional_logic( $form_field, $form_id ) {
824
+ if ( ! isset( $form_field['wpuf_cond']['condition_status'] ) || $form_field['wpuf_cond']['condition_status']
825
+ !== 'yes' ) {
826
  return;
827
  }
828
 
829
  $cond_inputs = $form_field['wpuf_cond'];
830
  $cond_inputs['condition_status'] = isset( $cond_inputs['condition_status'] ) ? $cond_inputs['condition_status'] : '';
831
 
832
+ if ( $cond_inputs['condition_status'] === 'yes' ) {
833
  $cond_inputs['type'] = isset( $form_field['input_type'] ) ? $form_field['input_type'] : '';
834
  $cond_inputs['name'] = isset( $form_field['name'] ) ? $form_field['name'] : $form_field['template'] . '_' . $form_field['id'];
835
  $cond_inputs['form_id'] = $form_id;
839
  }
840
 
841
  //taxnomy name create unique
842
+ if ( $form_field['input_type'] === 'taxonomy' ) {
843
  $cond_inputs['name'] = $form_field['name'] . '_' . $form_field['type'] . '_' . $form_field['id'];
844
  $condition = json_encode( $cond_inputs );
845
+ }
846
+ ?>
847
  <script type="text/javascript">
848
  wpuf_conditional_items.push(<?php echo wp_kses( $condition, [] ); ?>);
849
  </script>
860
  public function prepare_entry( $field ) {
861
  check_ajax_referer( 'wpuf_form_add' );
862
 
863
+ $value = ! empty( $_POST[ $field['name'] ] ) ? sanitize_text_field( wp_unslash( $_POST[ $field['name'] ] ) ) :
864
+ '';
865
 
866
  if ( is_array( $value ) ) {
867
  $entry_value = implode( WP_User_Frontend::$field_separator, $value );
868
  } else {
869
+ $entry_value = trim( $value );
870
  }
871
 
872
  return $entry_value;
873
  }
874
 
875
  /**
876
+ * //ignore:phpcs
877
  * wpuf_visibility property for all fields
878
  *
879
  * @since 2.6
896
  // bail out if it is dashboard
897
  if ( is_admin() ) {
898
  return;
899
+ }
900
+ ?>
901
  <script type="text/javascript">
902
  ;(function($) {
903
  $(document).ready( function(){
includes/fields/class-pro-upgrade-fields.php CHANGED
@@ -183,3 +183,27 @@ class WPUF_Form_Field_Toc extends WPUF_Form_Field_Pro {
183
  $this->icon = 'file-text';
184
  }
185
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  $this->icon = 'file-text';
184
  }
185
  }
186
+
187
+ /**
188
+ * Math Capctha Class
189
+ */
190
+ class WPUF_Form_Field_Math_Captcha extends WPUF_Form_Field_Pro {
191
+
192
+ public function __construct() {
193
+ $this->name = __( 'Math Captcha', 'wp-user-frontend' );
194
+ $this->input_type = 'math_captcha';
195
+ $this->icon = 'hashtag';
196
+ }
197
+ }
198
+
199
+ /**
200
+ * QR Code Class
201
+ */
202
+ class WPUF_Form_Field_QR_Code extends WPUF_Form_Field_Pro {
203
+
204
+ public function __construct() {
205
+ $this->name = __( 'QR Code', 'wp-user-frontend' );
206
+ $this->input_type = 'qr_code';
207
+ $this->icon = 'address-card-o';
208
+ }
209
+ }
includes/free/class-login.php CHANGED
@@ -984,8 +984,9 @@ class WPUF_Simple_Login {
984
  * @return void
985
  */
986
  public function show_errors() {
987
- if ( $this->login_errors ) {
988
- foreach ( $this->login_errors as $error ) {
 
989
  echo wp_kses_post( '<div class="wpuf-error">' . __( $error, 'wp-user-frontend' ) . '</div>' );
990
  }
991
  }
984
  * @return void
985
  */
986
  public function show_errors() {
987
+ $errors = apply_filters( 'wpuf_login_errors', $this->login_errors );
988
+ if ( $errors ) {
989
+ foreach ( $errors as $error ) {
990
  echo wp_kses_post( '<div class="wpuf-error">' . __( $error, 'wp-user-frontend' ) . '</div>' );
991
  }
992
  }
languages/wp-user-frontend.pot CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2020 weDevs
2
  # This file is distributed under the GPL2 or later.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP User Frontend 3.5.10\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2020-12-18 11:00:28+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
14
  "X-Generator: grunt-wp-i18n 0.5.4\n"
@@ -172,10 +172,10 @@ msgstr ""
172
  #: admin/settings-options.php:116 admin/settings-options.php:127
173
  #: admin/settings-options.php:223 admin/settings-options.php:234
174
  #: admin/template.php:63 class/asset-loader.php:50
175
- #: includes/fields/class-abstract-fields.php:252
176
- #: includes/fields/class-abstract-fields.php:332
177
- #: includes/fields/class-abstract-fields.php:346
178
- #: includes/fields/class-abstract-fields.php:409
179
  #: includes/fields/class-field-checkbox.php:74
180
  #: includes/fields/class-field-radio.php:83 includes/free/form-element.php:499
181
  #: wpuf.php:715
@@ -187,10 +187,10 @@ msgstr ""
187
  #: admin/settings-options.php:117 admin/settings-options.php:128
188
  #: admin/settings-options.php:224 admin/settings-options.php:235
189
  #: admin/template.php:64 class/asset-loader.php:51
190
- #: includes/fields/class-abstract-fields.php:253
191
- #: includes/fields/class-abstract-fields.php:333
192
- #: includes/fields/class-abstract-fields.php:347
193
- #: includes/fields/class-abstract-fields.php:410
194
  #: includes/fields/class-field-checkbox.php:75
195
  #: includes/fields/class-field-radio.php:84 includes/free/form-element.php:500
196
  #: wpuf.php:716
@@ -642,7 +642,7 @@ msgid "Get the Pro version"
642
  msgstr ""
643
 
644
  #: admin/form-builder/class-wpuf-admin-form-builder.php:293
645
- #: includes/fields/class-abstract-fields.php:384
646
  msgid "Select"
647
  msgstr ""
648
 
@@ -855,7 +855,7 @@ msgid "Right of Element"
855
  msgstr ""
856
 
857
  #: admin/html/form-settings-display.php:19 includes/class-customizer.php:104
858
- #: includes/fields/class-abstract-fields.php:305
859
  msgid "Hidden"
860
  msgstr ""
861
 
@@ -1097,7 +1097,7 @@ msgid "It will show a button to save as draft"
1097
  msgstr ""
1098
 
1099
  #: admin/html/form-submission-restriction.php:11 admin/template-post.php:160
1100
- #: includes/fields/class-abstract-fields.php:424
1101
  #: includes/free/edit-profile.php:98 templates/registration-form.php:30
1102
  msgid "Name"
1103
  msgstr ""
@@ -1337,9 +1337,9 @@ msgstr ""
1337
  msgid "Subscription &amp; Payment"
1338
  msgstr ""
1339
 
1340
- #: admin/html/support.php:282 includes/fields/class-abstract-fields.php:518
1341
- #: includes/fields/class-abstract-fields.php:591
1342
- #: includes/fields/class-abstract-fields.php:698
1343
  msgid "Content Restriction"
1344
  msgstr ""
1345
 
@@ -1412,517 +1412,533 @@ msgid "Contact Support"
1412
  msgstr ""
1413
 
1414
  #: admin/html/whats-new.php:9
1415
- msgid "Once trial subscription is used, it couldn't reset"
1416
  msgstr ""
1417
 
1418
  #: admin/html/whats-new.php:13
1419
- msgid "Subscription cancel doesn't work"
1420
  msgstr ""
1421
 
1422
  #: admin/html/whats-new.php:17
1423
- msgid "The tax rate was not calculated with the total amount"
1424
  msgstr ""
1425
 
1426
  #: admin/html/whats-new.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1427
  msgid "The width of the column field was breaking"
1428
  msgstr ""
1429
 
1430
- #: admin/html/whats-new.php:25
1431
  msgid "Paypal recurring payment"
1432
  msgstr ""
1433
 
1434
- #: admin/html/whats-new.php:36
1435
  msgid "Updated codebase to fix timezone mismatch"
1436
  msgstr ""
1437
 
1438
- #: admin/html/whats-new.php:47
1439
  msgid "Custom html content field's width"
1440
  msgstr ""
1441
 
1442
- #: admin/html/whats-new.php:51
1443
  msgid "All states of New Zealand are added"
1444
  msgstr ""
1445
 
1446
- #: admin/html/whats-new.php:62
1447
  msgid "Get appropriate user id when role based conditions are present"
1448
  msgstr ""
1449
 
1450
- #: admin/html/whats-new.php:66
1451
  msgid "Show Invalid subscription message if wrong pack id passed"
1452
  msgstr ""
1453
 
1454
- #: admin/html/whats-new.php:70
1455
  msgid "URL field new window not working"
1456
  msgstr ""
1457
 
1458
- #: admin/html/whats-new.php:74
1459
  msgid "Option label not working when & use"
1460
  msgstr ""
1461
 
1462
- #: admin/html/whats-new.php:78
1463
  msgid "Ajax type category not showing on edit"
1464
  msgstr ""
1465
 
1466
- #: admin/html/whats-new.php:82
1467
  msgid "Multiple file image can't select"
1468
  msgstr ""
1469
 
1470
- #: admin/html/whats-new.php:86
1471
  msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
1472
  msgstr ""
1473
 
1474
- #: admin/html/whats-new.php:90
1475
  msgid "Conflict image field with acf image field"
1476
  msgstr ""
1477
 
1478
- #: admin/html/whats-new.php:94
1479
  msgid "Missing Auckland State for New Zealand country"
1480
  msgstr ""
1481
 
1482
- #: admin/html/whats-new.php:98
1483
  msgid "Added support for WooCommerce product category value replacemen"
1484
  msgstr ""
1485
 
1486
- #: admin/html/whats-new.php:108
1487
  msgid "Add character restriction feature"
1488
  msgstr ""
1489
 
1490
- #: admin/html/whats-new.php:112
1491
  msgid "Make sure post author edit link works only in frontend"
1492
  msgstr ""
1493
 
1494
- #: admin/html/whats-new.php:116
1495
  msgid "Inconsistency in lost password reset email message"
1496
  msgstr ""
1497
 
1498
- #: admin/html/whats-new.php:120
1499
  msgid "Saving custom taxonomy terms when input type is text"
1500
  msgstr ""
1501
 
1502
- #: admin/html/whats-new.php:124
1503
  msgid "Taxonomy field JS error in builder"
1504
  msgstr ""
1505
 
1506
- #: admin/html/whats-new.php:128
1507
  msgid "Showing WPUF edit link for WP default roles"
1508
  msgstr ""
1509
 
1510
- #: admin/html/whats-new.php:132
1511
  msgid "Upload button unresponsive issue in iOS"
1512
  msgstr ""
1513
 
1514
- #: admin/html/whats-new.php:142
1515
  msgid "Add post edit link for post authors in single or archive pages"
1516
  msgstr ""
1517
 
1518
- #: admin/html/whats-new.php:146
1519
  msgid "Enhance post delete message"
1520
  msgstr ""
1521
 
1522
- #: admin/html/whats-new.php:150
1523
  msgid "Refactor control buttons visibility in form builder"
1524
  msgstr ""
1525
 
1526
- #: admin/html/whats-new.php:154
1527
  msgid "Add missing colons after field label"
1528
  msgstr ""
1529
 
1530
- #: admin/html/whats-new.php:158
1531
  msgid "Post edit map capability condition"
1532
  msgstr ""
1533
 
1534
- #: admin/html/whats-new.php:162
1535
  msgid "Role based permission for accessing a post form"
1536
  msgstr ""
1537
 
1538
- #: admin/html/whats-new.php:166
1539
  msgid "Section-break field alignment"
1540
  msgstr ""
1541
 
1542
- #: admin/html/whats-new.php:170
1543
  msgid "Pay per post doesn't work if subscription pack is activated"
1544
  msgstr ""
1545
 
1546
- #: admin/html/whats-new.php:174
1547
  msgid "Mime type for uploading JSON files"
1548
  msgstr ""
1549
 
1550
- #: admin/html/whats-new.php:178
1551
  msgid "File upload with same file name"
1552
  msgstr ""
1553
 
1554
- #: admin/html/whats-new.php:182
1555
  msgid "Post preview missing fields"
1556
  msgstr ""
1557
 
1558
- #: admin/html/whats-new.php:186
1559
  msgid "Illigal variable declartion"
1560
  msgstr ""
1561
 
1562
- #: admin/html/whats-new.php:190
1563
  msgid "Featured image updating issue"
1564
  msgstr ""
1565
 
1566
- #: admin/html/whats-new.php:194
1567
  msgid "Conflict with Phlox theme"
1568
  msgstr ""
1569
 
1570
- #: admin/html/whats-new.php:198
1571
  msgid "Textarea custom field data sanitization"
1572
  msgstr ""
1573
 
1574
- #: admin/html/whats-new.php:202
1575
  msgid "exclude_type warning in wpuf_category_checklist"
1576
  msgstr ""
1577
 
1578
- #: admin/html/whats-new.php:206
1579
  msgid "Category field not showing all child categories for selection type child of"
1580
  msgstr ""
1581
 
1582
- #: admin/html/whats-new.php:210
1583
  msgid "Conflict between image and file upload custom fields"
1584
  msgstr ""
1585
 
1586
- #: admin/html/whats-new.php:214
1587
  msgid "Login url when login page is not set"
1588
  msgstr ""
1589
 
1590
- #: admin/html/whats-new.php:224
1591
  msgid ""
1592
  "Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
1593
  "their official names"
1594
  msgstr ""
1595
 
1596
- #: admin/html/whats-new.php:228
1597
  msgid "Fix condition to use default avatar"
1598
  msgstr ""
1599
 
1600
- #: admin/html/whats-new.php:232
1601
  msgid "Make Email and URL fields clickable"
1602
  msgstr ""
1603
 
1604
- #: admin/html/whats-new.php:236
1605
  msgid "Fix redirect after user login"
1606
  msgstr ""
1607
 
1608
- #: admin/html/whats-new.php:240
1609
  msgid "Sanitize textarea field data"
1610
  msgstr ""
1611
 
1612
- #: admin/html/whats-new.php:244
1613
  msgid ""
1614
  "Fix missing colon to email, URL, text and textarea labels when renders "
1615
  "their data"
1616
  msgstr ""
1617
 
1618
- #: admin/html/whats-new.php:248
1619
  msgid "Prevent showing empty labels for fields that have render_field_data method"
1620
  msgstr ""
1621
 
1622
- #: admin/html/whats-new.php:258
1623
  msgid "Add Namibian Dollar in currency list"
1624
  msgstr ""
1625
 
1626
- #: admin/html/whats-new.php:262
1627
  msgid "Add sync values option for option data fields"
1628
  msgstr ""
1629
 
1630
- #: admin/html/whats-new.php:266
1631
  msgid "Allow uploading image that having filesize meets php ini settings"
1632
  msgstr ""
1633
 
1634
- #: admin/html/whats-new.php:270
1635
  msgid "Limit the selection of one image at a time"
1636
  msgstr ""
1637
 
1638
- #: admin/html/whats-new.php:274
1639
  msgid "Use file name and size to generate hash to prevent duplicant image upload"
1640
  msgstr ""
1641
 
1642
- #: admin/html/whats-new.php:278
1643
  msgid "Sanitize text and textarea field data"
1644
  msgstr ""
1645
 
1646
- #: admin/html/whats-new.php:282
1647
  msgid ""
1648
  "Show label instead of values for radio, checkbox, dropdown and multiselect "
1649
  "data"
1650
  msgstr ""
1651
 
1652
- #: admin/html/whats-new.php:286
1653
  msgid "Saving custom taxonomies for type text input"
1654
  msgstr ""
1655
 
1656
- #: admin/html/whats-new.php:290
1657
  msgid "Admin settings link for recaptcha helper text"
1658
  msgstr ""
1659
 
1660
- #: admin/html/whats-new.php:294
1661
  msgid "Undefined name property for Custom HTML fields"
1662
  msgstr ""
1663
 
1664
- #: admin/html/whats-new.php:298
1665
  msgid "Delete attachment process"
1666
  msgstr ""
1667
 
1668
- #: admin/html/whats-new.php:302
1669
  msgid "Missing billing address in invoice PDF"
1670
  msgstr ""
1671
 
1672
- #: admin/html/whats-new.php:306
1673
  msgid "Showing country field value in frontend post content"
1674
  msgstr ""
1675
 
1676
- #: admin/html/whats-new.php:310
1677
  msgid "Avatar size display not complying with admin settings size"
1678
  msgstr ""
1679
 
1680
- #: admin/html/whats-new.php:314
1681
  msgid "Display default avatars on admin settings discussion page"
1682
  msgstr ""
1683
 
1684
- #: admin/html/whats-new.php:318
1685
  msgid "Redirect to subscription page at registration"
1686
  msgstr ""
1687
 
1688
- #: admin/html/whats-new.php:322
1689
  msgid "Error notice regarding registration page redirect"
1690
  msgstr ""
1691
 
1692
- #: admin/html/whats-new.php:326
1693
  msgid "Escaping html in registration errors"
1694
  msgstr ""
1695
 
1696
- #: admin/html/whats-new.php:330
1697
  msgid "Default login redirect link"
1698
  msgstr ""
1699
 
1700
- #: admin/html/whats-new.php:334
1701
  msgid "Implementing default WP login page override option"
1702
  msgstr ""
1703
 
1704
- #: admin/html/whats-new.php:338
1705
  msgid "Transparent background of autosuggestion dropdown"
1706
  msgstr ""
1707
 
1708
- #: admin/html/whats-new.php:348
1709
  msgid "Import forms system"
1710
  msgstr ""
1711
 
1712
- #: admin/html/whats-new.php:352
1713
  msgid "Password reset system"
1714
  msgstr ""
1715
 
1716
- #: admin/html/whats-new.php:356
1717
  msgid "Updated url validation regex to support modern tlds"
1718
  msgstr ""
1719
 
1720
- #: admin/html/whats-new.php:360
1721
  msgid "Export WPUF forms individually from admin tools page"
1722
  msgstr ""
1723
 
1724
- #: admin/html/whats-new.php:364
1725
  msgid "Subscription cycle label translation issue"
1726
  msgstr ""
1727
 
1728
- #: admin/html/whats-new.php:368
1729
  msgid "ACF integration for checkbox fields"
1730
  msgstr ""
1731
 
1732
- #: admin/html/whats-new.php:372
1733
  msgid "Illegal string offset warning while updating settings"
1734
  msgstr ""
1735
 
1736
- #: admin/html/whats-new.php:376
1737
  msgid "Conditional logic for Section Break field"
1738
  msgstr ""
1739
 
1740
- #: admin/html/whats-new.php:380
1741
  msgid "Subscriptions cannot be deleted from backend"
1742
  msgstr ""
1743
 
1744
- #: admin/html/whats-new.php:384
1745
  msgid "A regression regarding saving checkbox data"
1746
  msgstr ""
1747
 
1748
- #: admin/html/whats-new.php:388
1749
  msgid "Default value of multi-select fields is not showing"
1750
  msgstr ""
1751
 
1752
- #: admin/html/whats-new.php:398
1753
  msgid "Hide post edit option when subscription is expired"
1754
  msgstr ""
1755
 
1756
- #: admin/html/whats-new.php:400
1757
  msgid "Hide post edit option from users whose subscription pack is expired."
1758
  msgstr ""
1759
 
1760
- #: admin/html/whats-new.php:403
1761
  msgid "Check files to prevent duplicity in media upload"
1762
  msgstr ""
1763
 
1764
- #: admin/html/whats-new.php:405
1765
  msgid ""
1766
  "A simple measure has been taken to prevent maliciously flooding the site by "
1767
  "uploading same file multiple times. Though this won't work with already "
1768
  "uploaded medias."
1769
  msgstr ""
1770
 
1771
- #: admin/html/whats-new.php:408
1772
  msgid "Refactor address fields in Account section"
1773
  msgstr ""
1774
 
1775
- #: admin/html/whats-new.php:410
1776
  msgid "Address edit section from Account section has been rewritten to improve UX."
1777
  msgstr ""
1778
 
1779
- #: admin/html/whats-new.php:413
1780
  msgid "Update Paypal payment gateway"
1781
  msgstr ""
1782
 
1783
- #: admin/html/whats-new.php:415
1784
  msgid "Paypal payment gateway has seen some improvements."
1785
  msgstr ""
1786
 
1787
- #: admin/html/whats-new.php:418
1788
  msgid "Default Category selection improvements"
1789
  msgstr ""
1790
 
1791
- #: admin/html/whats-new.php:420
1792
  msgid ""
1793
  "An intuitive way of selecting default category of a selected post type has "
1794
  "been introduced."
1795
  msgstr ""
1796
 
1797
- #: admin/html/whats-new.php:423
1798
  msgid "Compatibility issue with ACF date time field"
1799
  msgstr ""
1800
 
1801
- #: admin/html/whats-new.php:425
1802
  msgid "A Compatibility issue with ACF date time field has been addressed."
1803
  msgstr ""
1804
 
1805
- #: admin/html/whats-new.php:428
1806
  msgid "Media title, caption & description not saving"
1807
  msgstr ""
1808
 
1809
- #: admin/html/whats-new.php:430
1810
  msgid ""
1811
  "Media title, caption & description were not saving from frontend. They will "
1812
  "now."
1813
  msgstr ""
1814
 
1815
- #: admin/html/whats-new.php:433
1816
  msgid ""
1817
  "The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
1818
  "metabox"
1819
  msgstr ""
1820
 
1821
- #: admin/html/whats-new.php:435
1822
  msgid ""
1823
  "A workaround has been introduced to save The Events Calendar Venue and "
1824
  "Organizer fields properly from WPUF Custom Fields metabox."
1825
  msgstr ""
1826
 
1827
- #: admin/html/whats-new.php:438
1828
  msgid "Checkbox data not saving from WPUF Custom Fields metabox"
1829
  msgstr ""
1830
 
1831
- #: admin/html/whats-new.php:440
1832
  msgid ""
1833
  "Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
1834
  "fixed."
1835
  msgstr ""
1836
 
1837
- #: admin/html/whats-new.php:443
1838
  msgid "Multi-column Repeater field data saving issue"
1839
  msgstr ""
1840
 
1841
- #: admin/html/whats-new.php:445
1842
  msgid ""
1843
  "Multi-column Repeater field data from a form was not saving. It has been "
1844
  "fixed."
1845
  msgstr ""
1846
 
1847
- #: admin/html/whats-new.php:448
1848
  msgid "Multistep form conflict with Elementor"
1849
  msgstr ""
1850
 
1851
- #: admin/html/whats-new.php:450
1852
  msgid "Multistep form had a conflict with Elementor. It has been fixed."
1853
  msgstr ""
1854
 
1855
- #: admin/html/whats-new.php:453
1856
  msgid "Multiple images showing issue in frontend"
1857
  msgstr ""
1858
 
1859
- #: admin/html/whats-new.php:455
1860
  msgid "Multiple images in a post were not showing in frontend. Now they will."
1861
  msgstr ""
1862
 
1863
- #: admin/html/whats-new.php:464
1864
  msgid "Nonce not verify on login"
1865
  msgstr ""
1866
 
1867
- #: admin/html/whats-new.php:466
1868
  msgid "Return of function wp_verify_nonce() was ignored."
1869
  msgstr ""
1870
 
1871
- #: admin/html/whats-new.php:475
1872
  msgid "Option to set which tab shows as active on the account page"
1873
  msgstr ""
1874
 
1875
- #: admin/html/whats-new.php:477
1876
  msgid ""
1877
  "Option to set which tab shows as active on the account page. To configure "
1878
  "this setting navigate to wp-admin->User Frontend->Settings->My "
1879
  "Account->Active Tab "
1880
  msgstr ""
1881
 
1882
- #: admin/html/whats-new.php:480
1883
  msgid "Unlock option was unavailable after the post being locked"
1884
  msgstr ""
1885
 
1886
- #: admin/html/whats-new.php:482
1887
  msgid "Unlock option was unavailable after the post being locked."
1888
  msgstr ""
1889
 
1890
- #: admin/html/whats-new.php:485
1891
  msgid "Gutenberg block of WPUF didn't work on bedrock installation"
1892
  msgstr ""
1893
 
1894
- #: admin/html/whats-new.php:487
1895
  msgid "Gutenberg block of WPUF didn't work on bedrock installation."
1896
  msgstr ""
1897
 
1898
- #: admin/html/whats-new.php:490
1899
  msgid "Sending admin payment received email twice"
1900
  msgstr ""
1901
 
1902
- #: admin/html/whats-new.php:492
1903
  msgid ""
1904
  "After processing payment admin & user was receiving payment received email "
1905
  "twice."
1906
  msgstr ""
1907
 
1908
- #: admin/html/whats-new.php:495
1909
  msgid ""
1910
  "Add shortcode support to display post information in the Post Expiration "
1911
  "Message"
1912
  msgstr ""
1913
 
1914
- #: admin/html/whats-new.php:497
1915
  msgid ""
1916
  "Add shortcode support to display post information in the Post Expiration "
1917
  "Message. You can use: <strong>{post_author} {post_url} {blogname} "
1918
  "{post_title} {post_status}</strong>"
1919
  msgstr ""
1920
 
1921
- #: admin/html/whats-new.php:500
1922
  msgid "Add optin on the setup wizard"
1923
  msgstr ""
1924
 
1925
- #: admin/html/whats-new.php:502
1926
  msgid ""
1927
  "Added optin on the setup wizard, admin can choose whether he/she wants to "
1928
  "share server environment details (php, mysql, server, WordPress versions), "
@@ -1930,126 +1946,126 @@ msgid ""
1930
  "name and url, admin name and email address. No sensitive data is tracked"
1931
  msgstr ""
1932
 
1933
- #: admin/html/whats-new.php:511
1934
  msgid "Post Owner problem"
1935
  msgstr ""
1936
 
1937
- #: admin/html/whats-new.php:513
1938
  msgid ""
1939
  "Posts were not assigned to the selected default post owner, this issue has "
1940
  "been fixed."
1941
  msgstr ""
1942
 
1943
- #: admin/html/whats-new.php:516
1944
  msgid "Google reCaptcha was not working"
1945
  msgstr ""
1946
 
1947
- #: admin/html/whats-new.php:518
1948
  msgid ""
1949
  "Google reCaptcha was not working, users could submit the form without "
1950
  "reCaptcha validation."
1951
  msgstr ""
1952
 
1953
- #: admin/html/whats-new.php:527
1954
  msgid "Added column field"
1955
  msgstr ""
1956
 
1957
- #: admin/html/whats-new.php:532
1958
  msgid "Unable to render the events on the front-end dashboard"
1959
  msgstr ""
1960
 
1961
- #: admin/html/whats-new.php:534
1962
  msgid ""
1963
  "On the frontend dashboard, the submitted events were not showing, you will "
1964
  "get it fixed in this version."
1965
  msgstr ""
1966
 
1967
- #: admin/html/whats-new.php:537
1968
  msgid "Page order getting 0(zero) after editing from the frontend"
1969
  msgstr ""
1970
 
1971
- #: admin/html/whats-new.php:539
1972
  msgid ""
1973
  "Page order was not saving while editing a post using WPUF form, it has been "
1974
  "fixed."
1975
  msgstr ""
1976
 
1977
- #: admin/html/whats-new.php:542
1978
  msgid "Text input field for taxonomies not working"
1979
  msgstr ""
1980
 
1981
- #: admin/html/whats-new.php:544
1982
  msgid ""
1983
  "When taxonomy field type is set to `Text Input` then a fatal error was "
1984
  "showing on the frontend, no error with taxonomy field in the latest version."
1985
  msgstr ""
1986
 
1987
- #: admin/html/whats-new.php:547
1988
  msgid ""
1989
  "In radio and checkbox field use conditional logic that value does not save "
1990
  "in database"
1991
  msgstr ""
1992
 
1993
- #: admin/html/whats-new.php:549
1994
  msgid ""
1995
  "The selected value of radio and checkbox field were not showing while "
1996
  "editing posts from the backend or frontend, you can see the selected value "
1997
  "in this version."
1998
  msgstr ""
1999
 
2000
- #: admin/html/whats-new.php:552
2001
  msgid "The args param not working with get_avatar filter"
2002
  msgstr ""
2003
 
2004
- #: admin/html/whats-new.php:554
2005
  msgid "The args parameter did not exist with get_avatar filter, which now exists."
2006
  msgstr ""
2007
 
2008
- #: admin/html/whats-new.php:557
2009
  msgid "The item in ajax taxonomy field was not selected"
2010
  msgstr ""
2011
 
2012
- #: admin/html/whats-new.php:559
2013
  msgid ""
2014
  "When the taxonomy field type is set to Ajax, the submitted terms were not "
2015
  "showing in the backend and frontend which have been fixed."
2016
  msgstr ""
2017
 
2018
- #: admin/html/whats-new.php:568
2019
  msgid "Unable to send new user registration email"
2020
  msgstr ""
2021
 
2022
- #: admin/html/whats-new.php:570
2023
  msgid ""
2024
  "WP User Frontend default registration form `[wpuf-registration]` was unable "
2025
  "to send the new user registration email."
2026
  msgstr ""
2027
 
2028
- #: admin/html/whats-new.php:573
2029
  msgid "WPUF forms block compatibility issue with the latest WP version"
2030
  msgstr ""
2031
 
2032
- #: admin/html/whats-new.php:575
2033
  msgid ""
2034
  "With the latest version of WordPress the gutenberg block of WP User "
2035
  "Frontend were not working. In this version, you will get it fixed."
2036
  msgstr ""
2037
 
2038
- #: admin/html/whats-new.php:578
2039
  msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
2040
  msgstr ""
2041
 
2042
- #: admin/html/whats-new.php:580
2043
  msgid ""
2044
  "While using Gutenberg, the page were not being updated with WPUF shortcode "
2045
  "[wpuf dashboard]"
2046
  msgstr ""
2047
 
2048
- #: admin/html/whats-new.php:583
2049
  msgid "Retain default when determining whether to display the admin bar"
2050
  msgstr ""
2051
 
2052
- #: admin/html/whats-new.php:585
2053
  msgid ""
2054
  "From the User Frontend Settings, set that Administrator, Editor, Vendor can "
2055
  "see the admin bar. Now, the super admin want, one specific user ( who has "
@@ -2059,11 +2075,11 @@ msgid ""
2059
  "frontend."
2060
  msgstr ""
2061
 
2062
- #: admin/html/whats-new.php:588
2063
  msgid "Fatal error when use PHP lower version (5.4 or lower)"
2064
  msgstr ""
2065
 
2066
- #: admin/html/whats-new.php:590
2067
  msgid ""
2068
  "It was unable to install WP User Frontend with PHP 5.4 or lower version. "
2069
  "Here is the error details: <br><br><strong>Fatal error: Can't use method "
@@ -2071,42 +2087,42 @@ msgid ""
2071
  "/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
2072
  msgstr ""
2073
 
2074
- #: admin/html/whats-new.php:593
2075
  msgid "Product form was unable to show the single gallery image"
2076
  msgstr ""
2077
 
2078
- #: admin/html/whats-new.php:595
2079
  msgid ""
2080
  "When user upload single image for product gallery using WPUF WooCommerce "
2081
  "product form, that image were not showing on the frontend."
2082
  msgstr ""
2083
 
2084
- #: admin/html/whats-new.php:604
2085
  msgid "WooCommerce gallery images not getting saved"
2086
  msgstr ""
2087
 
2088
- #: admin/html/whats-new.php:606
2089
  msgid ""
2090
  "After releasing version 2.9.3, WooCommerce gallery image field stopped "
2091
  "working. You will get it fixed in this version."
2092
  msgstr ""
2093
 
2094
- #: admin/html/whats-new.php:615
2095
  msgid "The Events Calendar Integration Form"
2096
  msgstr ""
2097
 
2098
- #: admin/html/whats-new.php:617
2099
  msgid ""
2100
  "Now admin can allow users to create event from the frontend. Currently WPUF "
2101
  "has a one click pre-build event form that has been integrated with The "
2102
  "Events Calendar plugin"
2103
  msgstr ""
2104
 
2105
- #: admin/html/whats-new.php:620
2106
  msgid "Post Submission Facility From Account Page"
2107
  msgstr ""
2108
 
2109
- #: admin/html/whats-new.php:622
2110
  msgid ""
2111
  "On the frontend account page, added a new menu item named <b>Submit "
2112
  "Post</b>. Now admin can allow users to submit post from their default "
@@ -2115,504 +2131,504 @@ msgid ""
2115
  "you can assign any post form that will use to submit posts."
2116
  msgstr ""
2117
 
2118
- #: admin/html/whats-new.php:625
2119
  msgid "Login/Lost Password Link Under Registration Form"
2120
  msgstr ""
2121
 
2122
- #: admin/html/whats-new.php:627
2123
  msgid "Added Login/Lost Password link under registration form"
2124
  msgstr ""
2125
 
2126
- #: admin/html/whats-new.php:636
2127
  msgid "Added drag and drop image ordering on image upload"
2128
  msgstr ""
2129
 
2130
- #: admin/html/whats-new.php:638
2131
  msgid ""
2132
  "Now frontend users can drag & drop the images/files to change the order "
2133
  "while uploading."
2134
  msgstr ""
2135
 
2136
- #: admin/html/whats-new.php:641
2137
  msgid "Added reCAPTCHA field in login form"
2138
  msgstr ""
2139
 
2140
- #: admin/html/whats-new.php:643
2141
  msgid ""
2142
  "Admin has the option to show reCAPTCHA field in login form. Check the "
2143
  "related settings from <strong>User Frontend > Settings > "
2144
  "Login/Registration</strong>"
2145
  msgstr ""
2146
 
2147
- #: admin/html/whats-new.php:646
2148
  msgid "Added preview option in forms"
2149
  msgstr ""
2150
 
2151
- #: admin/html/whats-new.php:648
2152
  msgid ""
2153
  "You can see a nice <strong>Preview</strong> button with <strong>Save "
2154
  "Form</strong> button, admin can take a quick look of the form without using "
2155
  "shortcode"
2156
  msgstr ""
2157
 
2158
- #: admin/html/whats-new.php:651
2159
  msgid "Fixed hiding “Select Image” button while uploading multiple images."
2160
  msgstr ""
2161
 
2162
- #: admin/html/whats-new.php:653
2163
  msgid ""
2164
  "The upload button will not be hidden until the user selects max number of "
2165
  "files "
2166
  msgstr ""
2167
 
2168
- #: admin/html/whats-new.php:656
2169
  msgid "Added form limit notice before form submission"
2170
  msgstr ""
2171
 
2172
- #: admin/html/whats-new.php:658
2173
  msgid ""
2174
  "Limit notice message was showing after submission, now it is showing when "
2175
  "rendering the form"
2176
  msgstr ""
2177
 
2178
- #: admin/html/whats-new.php:661
2179
  msgid "Fixed: default post category not saving"
2180
  msgstr ""
2181
 
2182
- #: admin/html/whats-new.php:663
2183
  msgid ""
2184
  "From the form <strong>Settings > Post Settings</strong>, default post "
2185
  "category options were not saving. Now, it's fixed."
2186
  msgstr ""
2187
 
2188
- #: admin/html/whats-new.php:666
2189
  msgid ""
2190
  "WPUF dashboard shortcode with form_id attribute was not showing posts "
2191
  "properly"
2192
  msgstr ""
2193
 
2194
- #: admin/html/whats-new.php:668
2195
  msgid ""
2196
  "Now you can list posts on the frontend by using <strong>form_id<strong/> "
2197
  "attribute with <strong>[wpuf_dashboard]</strong> shortcode"
2198
  msgstr ""
2199
 
2200
- #: admin/html/whats-new.php:677
2201
  msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
2202
  msgstr ""
2203
 
2204
- #: admin/html/whats-new.php:679
2205
  msgid ""
2206
  "If you are using other language than English. Please <b>rename</b> your "
2207
  "<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
2208
  "change was made to support translations from translate.wordpress.org"
2209
  msgstr ""
2210
 
2211
- #: admin/html/whats-new.php:682
2212
  msgid "Added WP User Frontend Data export and erase functionality."
2213
  msgstr ""
2214
 
2215
- #: admin/html/whats-new.php:684
2216
  msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
2217
  msgstr ""
2218
 
2219
- #: admin/html/whats-new.php:687
2220
  msgid "Added billing address customizer."
2221
  msgstr ""
2222
 
2223
- #: admin/html/whats-new.php:689
2224
  msgid "Added customizer options for billing address in payment page."
2225
  msgstr ""
2226
 
2227
- #: admin/html/whats-new.php:692
2228
  msgid "Make the payment page responsive."
2229
  msgstr ""
2230
 
2231
- #: admin/html/whats-new.php:694
2232
  msgid "Some css adjustments are made in payment page to make it responsive."
2233
  msgstr ""
2234
 
2235
- #: admin/html/whats-new.php:697
2236
  msgid "Fixed image upload issue in Safari."
2237
  msgstr ""
2238
 
2239
- #: admin/html/whats-new.php:699
2240
  msgid "Images were not showing after upload in safari, it is fixed now."
2241
  msgstr ""
2242
 
2243
- #: admin/html/whats-new.php:702
2244
  msgid "Post update issue after updating or removing post images."
2245
  msgstr ""
2246
 
2247
- #: admin/html/whats-new.php:704
2248
  msgid ""
2249
  "Posts cannot be updated after updating or removing post images, it is fixed "
2250
  "now."
2251
  msgstr ""
2252
 
2253
- #: admin/html/whats-new.php:713
2254
  msgid "Allow overriding form input styles using theme styling."
2255
  msgstr ""
2256
 
2257
- #: admin/html/whats-new.php:715
2258
  msgid "Overriding form input styles using theme style is now possible."
2259
  msgstr ""
2260
 
2261
- #: admin/html/whats-new.php:718
2262
  msgid "Fixed Auto Login after registration."
2263
  msgstr ""
2264
 
2265
- #: admin/html/whats-new.php:720
2266
  msgid "Auto Login after registration was not working is fixed now."
2267
  msgstr ""
2268
 
2269
- #: admin/html/whats-new.php:723
2270
  msgid "Fixed fallback cost calculation"
2271
  msgstr ""
2272
 
2273
- #: admin/html/whats-new.php:725
2274
  msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
2275
  msgstr ""
2276
 
2277
- #: admin/html/whats-new.php:728
2278
  msgid "Removal of subscription from User Profile gets reverted if updated"
2279
  msgstr ""
2280
 
2281
- #: admin/html/whats-new.php:730
2282
  msgid "User subscription deletion gets reverted if updated is fixed."
2283
  msgstr ""
2284
 
2285
- #: admin/html/whats-new.php:733
2286
  msgid "Show Free pack users in subscribers list."
2287
  msgstr ""
2288
 
2289
- #: admin/html/whats-new.php:735
2290
  msgid "Free pack users were not showing in subscribers list, now they will."
2291
  msgstr ""
2292
 
2293
- #: admin/html/whats-new.php:744
2294
  msgid "WP User Frontend Guten Block is added"
2295
  msgstr ""
2296
 
2297
- #: admin/html/whats-new.php:746
2298
  msgid ""
2299
  "WPUF Form Block is now available to be used within gutenberg editor with "
2300
  "preview of the form. "
2301
  msgstr ""
2302
 
2303
- #: admin/html/whats-new.php:749
2304
  msgid "Advanced Custom Fields plugin compatibility"
2305
  msgstr ""
2306
 
2307
- #: admin/html/whats-new.php:751
2308
  msgid "Now all your ACF fields can be used within WPUF Post forms. "
2309
  msgstr ""
2310
 
2311
- #: admin/html/whats-new.php:754
2312
  msgid "Taxonomy Terms not showing for custom post types"
2313
  msgstr ""
2314
 
2315
- #: admin/html/whats-new.php:756
2316
  msgid ""
2317
  "Fixed an issue with taxonomy terms not appearing for Custom Post types "
2318
  "within Form Settings and Dashboard Post Listing"
2319
  msgstr ""
2320
 
2321
- #: admin/html/whats-new.php:759
2322
  msgid "Various other code optimizations"
2323
  msgstr ""
2324
 
2325
- #: admin/html/whats-new.php:761 admin/html/whats-new.php:818
2326
  msgid "Code structure organization and optimization for better performance"
2327
  msgstr ""
2328
 
2329
- #: admin/html/whats-new.php:770
2330
  msgid "WoooCommerce billing address Sync"
2331
  msgstr ""
2332
 
2333
- #: admin/html/whats-new.php:772
2334
  msgid ""
2335
  "If an existing customer has previously set his billing address, that will "
2336
  "be imported into WPUF Billing address "
2337
  msgstr ""
2338
 
2339
- #: admin/html/whats-new.php:775
2340
  msgid "Trial subscription message not showing properly"
2341
  msgstr ""
2342
 
2343
- #: admin/html/whats-new.php:777
2344
  msgid "Subscriptions with Trial now shows trial notices"
2345
  msgstr ""
2346
 
2347
- #: admin/html/whats-new.php:780
2348
  msgid "Reset email Key not working"
2349
  msgstr ""
2350
 
2351
- #: admin/html/whats-new.php:782
2352
  msgid "Reset Email key was not working in some cases"
2353
  msgstr ""
2354
 
2355
- #: admin/html/whats-new.php:785
2356
  msgid "Post count not showing on the frontend dashboard"
2357
  msgstr ""
2358
 
2359
- #: admin/html/whats-new.php:787
2360
  msgid ""
2361
  "Dashboard with multiple post type was not showing post counts properly, is "
2362
  "now fixed and shows count for each post type"
2363
  msgstr ""
2364
 
2365
- #: admin/html/whats-new.php:790
2366
  msgid "Login Redirect showing blank page is fixed"
2367
  msgstr ""
2368
 
2369
- #: admin/html/whats-new.php:792
2370
  msgid ""
2371
  "If \"Previous Page\" was set for redirection, login redirect was "
2372
  "redirecting to blank page for users who hit login page directly"
2373
  msgstr ""
2374
 
2375
- #: admin/html/whats-new.php:801
2376
  msgid "Enhanced Login Redirect to redirect users to previous page"
2377
  msgstr ""
2378
 
2379
- #: admin/html/whats-new.php:803
2380
  msgid ""
2381
  "You can choose Previous Page as Login Redirect page settings now to "
2382
  "redirect users to the page from which they went for Login. "
2383
  msgstr ""
2384
 
2385
- #: admin/html/whats-new.php:806
2386
  msgid "Email HTML links not Rendreing properly issue is fixed"
2387
  msgstr ""
2388
 
2389
- #: admin/html/whats-new.php:808
2390
  msgid ""
2391
  "For some clients emails were not rendering the HTML links properly, this is "
2392
  "now fixed"
2393
  msgstr ""
2394
 
2395
- #: admin/html/whats-new.php:811
2396
  msgid "Form Builder : Form Field's Help text styles not showing properly"
2397
  msgstr ""
2398
 
2399
- #: admin/html/whats-new.php:813
2400
  msgid "Help texts styling is now fixed and much easier to read and understand"
2401
  msgstr ""
2402
 
2403
- #: admin/html/whats-new.php:816
2404
  msgid "Various other code improvements"
2405
  msgstr ""
2406
 
2407
- #: admin/html/whats-new.php:827
2408
  msgid "Dashboard Post Listing now supports multiple post types"
2409
  msgstr ""
2410
 
2411
- #: admin/html/whats-new.php:829
2412
  msgid ""
2413
  "Now you can show multiple post type in user dashboard using shortcode like "
2414
  "this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
2415
  msgstr ""
2416
 
2417
- #: admin/html/whats-new.php:832
2418
  msgid "Added Login Redirect Settings"
2419
  msgstr ""
2420
 
2421
- #: admin/html/whats-new.php:834
2422
  msgid ""
2423
  "You can now set a page from <i>WPUF Settings > Login/Registration > "
2424
  "Redirect after Login</i>. When login redirection is active the user will be "
2425
  "redirected to this page after login."
2426
  msgstr ""
2427
 
2428
- #: admin/html/whats-new.php:837
2429
  msgid "Image Upload field button text can be changed"
2430
  msgstr ""
2431
 
2432
- #: admin/html/whats-new.php:839
2433
  msgid ""
2434
  "The upload button text can now be changed for image upload fields which "
2435
  "defaults to \"Select Image\" if not set. "
2436
  msgstr ""
2437
 
2438
- #: admin/html/whats-new.php:842
2439
  msgid "Multi Step Form styles made compatible with more themes"
2440
  msgstr ""
2441
 
2442
- #: admin/html/whats-new.php:844
2443
  msgid "Multi Step form can now be styled more easily with other themes "
2444
  msgstr ""
2445
 
2446
- #: admin/html/whats-new.php:847
2447
  msgid "Required field condition for google map not working is fixed"
2448
  msgstr ""
2449
 
2450
- #: admin/html/whats-new.php:849
2451
  msgid ""
2452
  "If Google Map field was set as required users were able to submit form "
2453
  "without changing the default value."
2454
  msgstr ""
2455
 
2456
- #: admin/html/whats-new.php:858
2457
  msgid "Admin form builder is now fully responsive."
2458
  msgstr ""
2459
 
2460
- #: admin/html/whats-new.php:860
2461
  msgid ""
2462
  "Now you can edit forms from your mobile devices directly. Our improved "
2463
  "responsive layouts of form builder makes it easy for you to build forms on "
2464
  "the go."
2465
  msgstr ""
2466
 
2467
- #: admin/html/whats-new.php:863
2468
  msgid "Added color schemes for creating attractive form layouts."
2469
  msgstr ""
2470
 
2471
- #: admin/html/whats-new.php:865
2472
  msgid ""
2473
  "We have added 3 new color schemes for the form layouts which you can choose "
2474
  "from each form's new display settings."
2475
  msgstr ""
2476
 
2477
- #: admin/html/whats-new.php:868
2478
  msgid "Restrict Free subscription pack to be enabled multiple times "
2479
  msgstr ""
2480
 
2481
- #: admin/html/whats-new.php:870
2482
  msgid ""
2483
  "Free subscription packs now can only be purchased once and the limit "
2484
  "applies properly"
2485
  msgstr ""
2486
 
2487
- #: admin/html/whats-new.php:873
2488
  msgid "Various other bug fixes and improvements were made "
2489
  msgstr ""
2490
 
2491
- #: admin/html/whats-new.php:875
2492
  msgid "Please see the change log to see full details."
2493
  msgstr ""
2494
 
2495
- #: admin/html/whats-new.php:884
2496
  msgid "Added upgrade function for default category"
2497
  msgstr ""
2498
 
2499
- #: admin/html/whats-new.php:886
2500
  msgid "Upgrader added to upgrade previously set default post category."
2501
  msgstr ""
2502
 
2503
- #: admin/html/whats-new.php:889
2504
  msgid "Subscription pack cannot be canceled"
2505
  msgstr ""
2506
 
2507
- #: admin/html/whats-new.php:891
2508
  msgid ""
2509
  "Fixed recurring subscription pack cannot be canceled from my account page "
2510
  "in subscription details section."
2511
  msgstr ""
2512
 
2513
- #: admin/html/whats-new.php:894
2514
  msgid "page installer admin notice logic issue"
2515
  msgstr ""
2516
 
2517
- #: admin/html/whats-new.php:896
2518
  msgid ""
2519
  "Fixed page installer admin notice logic problem due to new payment settings "
2520
  "default value not set."
2521
  msgstr ""
2522
 
2523
- #: admin/html/whats-new.php:906
2524
  msgid "Setup Wizard"
2525
  msgstr ""
2526
 
2527
- #: admin/html/whats-new.php:908
2528
  msgid "Setup Wizard added to turn off payment options and install pages."
2529
  msgstr ""
2530
 
2531
- #: admin/html/whats-new.php:912
2532
  msgid "Multi-select Category"
2533
  msgstr ""
2534
 
2535
- #: admin/html/whats-new.php:914
2536
  msgid "Add multi-select to default category in post form settings."
2537
  msgstr ""
2538
 
2539
- #: admin/html/whats-new.php:918
2540
  msgid "Select Text option for Taxonomy"
2541
  msgstr ""
2542
 
2543
- #: admin/html/whats-new.php:920
2544
  msgid ""
2545
  "Add Select Text option for taxonomy fields. Now you can add default text "
2546
  "with empty value as first option for Taxonomy dropdown."
2547
  msgstr ""
2548
 
2549
- #: admin/html/whats-new.php:923
2550
  msgid "Taxonomy Checkbox Inline"
2551
  msgstr ""
2552
 
2553
- #: admin/html/whats-new.php:925
2554
  msgid ""
2555
  "Added checkbox inline option to taxonomy checkbox. You can now display "
2556
  "Taxonomy checkbox fields inline."
2557
  msgstr ""
2558
 
2559
- #: admin/html/whats-new.php:935
2560
  msgid "Manage schedule for form submission"
2561
  msgstr ""
2562
 
2563
- #: admin/html/whats-new.php:937
2564
  msgid ""
2565
  "Do not accept form submission if the current date is not between the date "
2566
  "range of the schedule."
2567
  msgstr ""
2568
 
2569
- #: admin/html/whats-new.php:941
2570
  msgid "Restrict form submission based on the user roles"
2571
  msgstr ""
2572
 
2573
- #: admin/html/whats-new.php:943
2574
  msgid ""
2575
  "Restrict form submission based on the user roles. Now you can manage user "
2576
  "role base permission on form submission."
2577
  msgstr ""
2578
 
2579
- #: admin/html/whats-new.php:947
2580
  msgid "Limit how many entries a form will accept"
2581
  msgstr ""
2582
 
2583
- #: admin/html/whats-new.php:949
2584
  msgid ""
2585
  "Limit how many entries a form will accept and display a custom message when "
2586
  "that limit is reached."
2587
  msgstr ""
2588
 
2589
- #: admin/html/whats-new.php:953
2590
  msgid "Show/hide Admin Bar"
2591
  msgstr ""
2592
 
2593
- #: admin/html/whats-new.php:955
2594
  msgid "Control the admin bar visibility based on user roles."
2595
  msgstr ""
2596
 
2597
- #: admin/html/whats-new.php:959
2598
  msgid "Ajax Login widget"
2599
  msgstr ""
2600
 
2601
- #: admin/html/whats-new.php:961
2602
  msgid ""
2603
  "Login user is more simple now with Ajax Login Widget. The simple ajax login "
2604
  "form do not required page loading for login."
2605
  msgstr ""
2606
 
2607
- #: admin/html/whats-new.php:965
2608
  msgid "Form submission with Captcha field"
2609
  msgstr ""
2610
 
2611
- #: admin/html/whats-new.php:967
2612
  msgid "Form field validation process updated if form submits with captcha field."
2613
  msgstr ""
2614
 
2615
- #: admin/html/whats-new.php:981
2616
  msgid "What's New in WPUF?"
2617
  msgstr ""
2618
 
@@ -2910,8 +2926,8 @@ msgid ""
2910
  "subscriptions only with just a shortcode."
2911
  msgstr ""
2912
 
2913
- #: admin/premium.php:71 admin/premium.php:74 includes/class-pro-upgrades.php:94
2914
- #: includes/free/form-element.php:496
2915
  msgid "Conditional Logic"
2916
  msgstr ""
2917
 
@@ -3612,7 +3628,7 @@ msgstr ""
3612
  msgid "Max. file size"
3613
  msgstr ""
3614
 
3615
- #: admin/template-post.php:147 includes/fields/class-abstract-fields.php:381
3616
  msgid "Type"
3617
  msgstr ""
3618
 
@@ -3621,70 +3637,70 @@ msgstr ""
3621
  msgid "Dropdown"
3622
  msgstr ""
3623
 
3624
- #: admin/template-post.php:150 includes/fields/class-abstract-fields.php:385
3625
  #: includes/fields/class-field-multidropdown.php:9
3626
  #: includes/fields/class-field-multidropdown.php:79
3627
  msgid "Multi Select"
3628
  msgstr ""
3629
 
3630
- #: admin/template-post.php:151 includes/fields/class-abstract-fields.php:386
3631
  #: includes/fields/class-field-checkbox.php:9
3632
  msgid "Checkbox"
3633
  msgstr ""
3634
 
3635
- #: admin/template-post.php:152 includes/fields/class-abstract-fields.php:387
3636
  msgid "Text Input"
3637
  msgstr ""
3638
 
3639
- #: admin/template-post.php:153 includes/fields/class-abstract-fields.php:388
3640
  msgid "Ajax"
3641
  msgstr ""
3642
 
3643
- #: admin/template-post.php:158 includes/fields/class-abstract-fields.php:421
3644
  msgid "Order By"
3645
  msgstr ""
3646
 
3647
- #: admin/template-post.php:161 includes/fields/class-abstract-fields.php:425
3648
  msgid "Term ID"
3649
  msgstr ""
3650
 
3651
- #: admin/template-post.php:162 includes/fields/class-abstract-fields.php:426
3652
  msgid "Slug"
3653
  msgstr ""
3654
 
3655
- #: admin/template-post.php:163 includes/fields/class-abstract-fields.php:427
3656
  msgid "Count"
3657
  msgstr ""
3658
 
3659
- #: admin/template-post.php:164 includes/fields/class-abstract-fields.php:428
3660
  msgid "Term Group"
3661
  msgstr ""
3662
 
3663
- #: admin/template-post.php:169 includes/fields/class-abstract-fields.php:437
3664
  msgid "Order"
3665
  msgstr ""
3666
 
3667
- #: admin/template-post.php:171 includes/fields/class-abstract-fields.php:441
3668
  msgid "ASC"
3669
  msgstr ""
3670
 
3671
- #: admin/template-post.php:172 includes/fields/class-abstract-fields.php:442
3672
  msgid "DESC"
3673
  msgstr ""
3674
 
3675
- #: admin/template-post.php:177 includes/fields/class-abstract-fields.php:451
3676
  msgid "Selection Type"
3677
  msgstr ""
3678
 
3679
- #: admin/template-post.php:179 includes/fields/class-abstract-fields.php:454
3680
  msgid "Exclude"
3681
  msgstr ""
3682
 
3683
- #: admin/template-post.php:180 includes/fields/class-abstract-fields.php:455
3684
  msgid "Include"
3685
  msgstr ""
3686
 
3687
- #: admin/template-post.php:181 includes/fields/class-abstract-fields.php:456
3688
  msgid "Child of"
3689
  msgstr ""
3690
 
@@ -3692,7 +3708,7 @@ msgstr ""
3692
  msgid "Selection terms"
3693
  msgstr ""
3694
 
3695
- #: admin/template-post.php:187 includes/fields/class-abstract-fields.php:469
3696
  msgid "Search the terms name."
3697
  msgstr ""
3698
 
@@ -3700,15 +3716,15 @@ msgstr ""
3700
  msgid "WooCommerce Attribute"
3701
  msgstr ""
3702
 
3703
- #: admin/template-post.php:197 includes/fields/class-abstract-fields.php:478
3704
  msgid "This taxonomy is a WooCommerce attribute"
3705
  msgstr ""
3706
 
3707
- #: admin/template-post.php:203 includes/fields/class-abstract-fields.php:300
3708
  msgid "Visibility"
3709
  msgstr ""
3710
 
3711
- #: admin/template-post.php:209 includes/fields/class-abstract-fields.php:489
3712
  msgid "Visible on product page"
3713
  msgstr ""
3714
 
@@ -3757,39 +3773,39 @@ msgid "Toggle"
3757
  msgstr ""
3758
 
3759
  #: admin/template.php:60 includes/class-customizer.php:106
3760
- #: includes/fields/class-abstract-fields.php:249
3761
  msgid "Required"
3762
  msgstr ""
3763
 
3764
- #: admin/template.php:69 includes/fields/class-abstract-fields.php:231
3765
  msgid "Field Label"
3766
  msgstr ""
3767
 
3768
- #: admin/template.php:70 includes/fields/class-abstract-fields.php:235
3769
  msgid "Enter a title of this field"
3770
  msgstr ""
3771
 
3772
  #: admin/template.php:75 admin/template.php:550
3773
- #: includes/fields/class-abstract-fields.php:318
3774
  #: includes/fields/class-field-hidden.php:39
3775
  msgid "Meta Key"
3776
  msgstr ""
3777
 
3778
  #: admin/template.php:76 admin/template.php:551
3779
- #: includes/fields/class-abstract-fields.php:322
3780
  #: includes/fields/class-field-hidden.php:43
3781
  msgid "Name of the meta key this field will save to"
3782
  msgstr ""
3783
 
3784
- #: admin/template.php:87 includes/fields/class-abstract-fields.php:240
3785
  msgid "Help text"
3786
  msgstr ""
3787
 
3788
- #: admin/template.php:88 includes/fields/class-abstract-fields.php:244
3789
  msgid "Give the user some information about this field"
3790
  msgstr ""
3791
 
3792
- #: admin/template.php:92 includes/fields/class-abstract-fields.php:279
3793
  #: includes/fields/class-field-column.php:86
3794
  msgid "CSS Class Name"
3795
  msgstr ""
@@ -3799,32 +3815,32 @@ msgid "Add a CSS class name for this field"
3799
  msgstr ""
3800
 
3801
  #: admin/template.php:117 admin/template.php:175
3802
- #: includes/fields/class-abstract-fields.php:542
3803
- #: includes/fields/class-abstract-fields.php:649
3804
  msgid "Placeholder text"
3805
  msgstr ""
3806
 
3807
- #: admin/template.php:118 includes/fields/class-abstract-fields.php:548
3808
- #: includes/fields/class-abstract-fields.php:653
3809
  msgid "Text for HTML5 placeholder attribute"
3810
  msgstr ""
3811
 
3812
  #: admin/template.php:122 admin/template.php:180
3813
- #: includes/fields/class-abstract-fields.php:553
3814
- #: includes/fields/class-abstract-fields.php:661
3815
  msgid "Default value"
3816
  msgstr ""
3817
 
3818
- #: admin/template.php:123 includes/fields/class-abstract-fields.php:559
3819
- #: includes/fields/class-abstract-fields.php:665
3820
  msgid "The default value this field will have"
3821
  msgstr ""
3822
 
3823
- #: admin/template.php:127 includes/fields/class-abstract-fields.php:564
3824
  msgid "Size"
3825
  msgstr ""
3826
 
3827
- #: admin/template.php:128 includes/fields/class-abstract-fields.php:569
3828
  msgid "Size of this input field"
3829
  msgstr ""
3830
 
@@ -3836,30 +3852,30 @@ msgstr ""
3836
  msgid "Numebr of words the author to be restricted in"
3837
  msgstr ""
3838
 
3839
- #: admin/template.php:165 includes/fields/class-abstract-fields.php:631
3840
  msgid "Rows"
3841
  msgstr ""
3842
 
3843
- #: admin/template.php:170 includes/fields/class-abstract-fields.php:640
3844
  #: includes/fields/class-field-column.php:9
3845
  msgid "Columns"
3846
  msgstr ""
3847
 
3848
- #: admin/template.php:185 includes/fields/class-abstract-fields.php:670
3849
  #: includes/fields/class-field-textarea.php:9
3850
  #: includes/fields/class-field-textarea.php:123
3851
  msgid "Textarea"
3852
  msgstr ""
3853
 
3854
- #: admin/template.php:188 includes/fields/class-abstract-fields.php:673
3855
  msgid "Normal"
3856
  msgstr ""
3857
 
3858
- #: admin/template.php:189 includes/fields/class-abstract-fields.php:674
3859
  msgid "Rich textarea"
3860
  msgstr ""
3861
 
3862
- #: admin/template.php:190 includes/fields/class-abstract-fields.php:675
3863
  msgid "Teeny Rich textarea"
3864
  msgstr ""
3865
 
@@ -3868,13 +3884,13 @@ msgid "show values"
3868
  msgstr ""
3869
 
3870
  #: admin/template.php:377 admin/template.php:401 admin/template.php:432
3871
- #: admin/template.php:463 includes/fields/class-abstract-fields.php:613
3872
  #: templates/dashboard/posts.php:98 templates/dashboard.php:139
3873
  msgid "Options"
3874
  msgstr ""
3875
 
3876
  #: admin/template.php:417 admin/template.php:448
3877
- #: includes/fields/class-abstract-fields.php:401
3878
  #: includes/fields/class-field-dropdown.php:87
3879
  msgid ""
3880
  "First element of the select dropdown. Leave this empty if you don't want to "
@@ -3882,7 +3898,7 @@ msgid ""
3882
  msgstr ""
3883
 
3884
  #: admin/template.php:427 admin/template.php:458
3885
- #: includes/fields/class-abstract-fields.php:397
3886
  #: includes/fields/class-field-dropdown.php:83
3887
  msgid "Select Text"
3888
  msgstr ""
@@ -4180,7 +4196,7 @@ msgid "Select a category for your post"
4180
  msgstr ""
4181
 
4182
  #: class/post-form-templates/post.php:40
4183
- #: includes/fields/class-abstract-fields.php:188
4184
  #: includes/fields/class-field-dropdown.php:106
4185
  #: includes/fields/class-field-multidropdown.php:83
4186
  #: includes/fields/class-field-post-taxonomy.php:353
@@ -4679,12 +4695,19 @@ msgstr ""
4679
  msgid "Sorry, you are not eligible to preview this form."
4680
  msgstr ""
4681
 
4682
- #: includes/class-form.php:198 includes/class-form.php:231
4683
- #: includes/class-form.php:238
 
 
 
 
 
 
 
4684
  msgid "Payment type not selected for this form. Please contact admin."
4685
  msgstr ""
4686
 
4687
- #: includes/class-form.php:218
4688
  msgid "Post Limit Exceeded for your purchased subscription pack."
4689
  msgstr ""
4690
 
@@ -5335,29 +5358,29 @@ msgstr ""
5335
  msgid "Bangladesh"
5336
  msgstr ""
5337
 
5338
- #: includes/fields/class-abstract-fields.php:259
5339
  msgid ""
5340
  "Check this option to mark the field required. A form will not submit unless "
5341
  "all required fields are provided."
5342
  msgstr ""
5343
 
5344
- #: includes/fields/class-abstract-fields.php:264
5345
  msgid "Field Size"
5346
  msgstr ""
5347
 
5348
- #: includes/fields/class-abstract-fields.php:267
5349
  msgid "Small"
5350
  msgstr ""
5351
 
5352
- #: includes/fields/class-abstract-fields.php:268
5353
  msgid "Medium"
5354
  msgstr ""
5355
 
5356
- #: includes/fields/class-abstract-fields.php:269
5357
  msgid "Large"
5358
  msgstr ""
5359
 
5360
- #: includes/fields/class-abstract-fields.php:283
5361
  #: includes/fields/class-field-column.php:90
5362
  msgid ""
5363
  "Provide a container class name for this field. Available classes: "
@@ -5365,87 +5388,91 @@ msgid ""
5365
  "wpuf-col-one-third-last"
5366
  msgstr ""
5367
 
5368
- #: includes/fields/class-abstract-fields.php:304
5369
  msgid "Everyone"
5370
  msgstr ""
5371
 
5372
- #: includes/fields/class-abstract-fields.php:306
5373
  msgid "Logged in users only"
5374
  msgstr ""
5375
 
5376
- #: includes/fields/class-abstract-fields.php:307
5377
  msgid "Subscription users only"
5378
  msgstr ""
5379
 
5380
- #: includes/fields/class-abstract-fields.php:311
5381
  msgid "Select option"
5382
  msgstr ""
5383
 
5384
- #: includes/fields/class-abstract-fields.php:329
5385
  msgid "Show Data in Post"
5386
  msgstr ""
5387
 
5388
- #: includes/fields/class-abstract-fields.php:339
5389
  msgid "Select Yes if you want to show the field data in single post."
5390
  msgstr ""
5391
 
5392
- #: includes/fields/class-abstract-fields.php:343
5393
  msgid "Hide Field Label in Post"
5394
  msgstr ""
5395
 
5396
- #: includes/fields/class-abstract-fields.php:353
5397
  msgid "Select Yes if you want to hide the field label in single post."
5398
  msgstr ""
5399
 
5400
- #: includes/fields/class-abstract-fields.php:406
5401
  #: includes/fields/class-field-checkbox.php:71
5402
  #: includes/fields/class-field-radio.php:80
5403
  msgid "Show in inline list"
5404
  msgstr ""
5405
 
5406
- #: includes/fields/class-abstract-fields.php:416
5407
  #: includes/fields/class-field-checkbox.php:81
5408
  #: includes/fields/class-field-radio.php:90
5409
  msgid "Show this option in an inline list"
5410
  msgstr ""
5411
 
5412
- #: includes/fields/class-abstract-fields.php:465
5413
  msgid "Selection Terms"
5414
  msgstr ""
5415
 
5416
- #: includes/fields/class-abstract-fields.php:504
5417
- #: includes/fields/class-abstract-fields.php:577
5418
- #: includes/fields/class-abstract-fields.php:684
5419
- msgid "Content restricted by"
5420
  msgstr ""
5421
 
5422
  #: includes/fields/class-abstract-fields.php:507
5423
- #: includes/fields/class-abstract-fields.php:580
5424
- #: includes/fields/class-abstract-fields.php:687
 
 
 
 
 
 
5425
  msgid "Character"
5426
  msgstr ""
5427
 
5428
- #: includes/fields/class-abstract-fields.php:508
5429
- #: includes/fields/class-abstract-fields.php:581
5430
- #: includes/fields/class-abstract-fields.php:688
5431
  msgid "Word"
5432
  msgstr ""
5433
 
5434
- #: includes/fields/class-abstract-fields.php:522
5435
- #: includes/fields/class-abstract-fields.php:595
5436
- #: includes/fields/class-abstract-fields.php:702
5437
  msgid "Number of characters or words the author to be restricted in"
5438
  msgstr ""
5439
 
5440
- #: includes/fields/class-abstract-fields.php:618
5441
  msgid "Add options for the form field"
5442
  msgstr ""
5443
 
5444
- #: includes/fields/class-abstract-fields.php:635
5445
  msgid "Number of rows in textarea"
5446
  msgstr ""
5447
 
5448
- #: includes/fields/class-abstract-fields.php:644
5449
  msgid "Number of columns in textarea"
5450
  msgstr ""
5451
 
@@ -5644,6 +5671,14 @@ msgstr ""
5644
  msgid "Terms & Conditions"
5645
  msgstr ""
5646
 
 
 
 
 
 
 
 
 
5647
  #: includes/free/admin/shortcode-builder.php:5
5648
  msgid "Select a form to insert"
5649
  msgstr ""
1
+ # Copyright (C) 2021 weDevs
2
  # This file is distributed under the GPL2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP User Frontend 3.5.11\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2021-01-12 09:00:30+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
14
  "X-Generator: grunt-wp-i18n 0.5.4\n"
172
  #: admin/settings-options.php:116 admin/settings-options.php:127
173
  #: admin/settings-options.php:223 admin/settings-options.php:234
174
  #: admin/template.php:63 class/asset-loader.php:50
175
+ #: includes/fields/class-abstract-fields.php:253
176
+ #: includes/fields/class-abstract-fields.php:334
177
+ #: includes/fields/class-abstract-fields.php:348
178
+ #: includes/fields/class-abstract-fields.php:412
179
  #: includes/fields/class-field-checkbox.php:74
180
  #: includes/fields/class-field-radio.php:83 includes/free/form-element.php:499
181
  #: wpuf.php:715
187
  #: admin/settings-options.php:117 admin/settings-options.php:128
188
  #: admin/settings-options.php:224 admin/settings-options.php:235
189
  #: admin/template.php:64 class/asset-loader.php:51
190
+ #: includes/fields/class-abstract-fields.php:254
191
+ #: includes/fields/class-abstract-fields.php:335
192
+ #: includes/fields/class-abstract-fields.php:349
193
+ #: includes/fields/class-abstract-fields.php:413
194
  #: includes/fields/class-field-checkbox.php:75
195
  #: includes/fields/class-field-radio.php:84 includes/free/form-element.php:500
196
  #: wpuf.php:716
642
  msgstr ""
643
 
644
  #: admin/form-builder/class-wpuf-admin-form-builder.php:293
645
+ #: includes/fields/class-abstract-fields.php:387
646
  msgid "Select"
647
  msgstr ""
648
 
855
  msgstr ""
856
 
857
  #: admin/html/form-settings-display.php:19 includes/class-customizer.php:104
858
+ #: includes/fields/class-abstract-fields.php:306
859
  msgid "Hidden"
860
  msgstr ""
861
 
1097
  msgstr ""
1098
 
1099
  #: admin/html/form-submission-restriction.php:11 admin/template-post.php:160
1100
+ #: includes/fields/class-abstract-fields.php:427
1101
  #: includes/free/edit-profile.php:98 templates/registration-form.php:30
1102
  msgid "Name"
1103
  msgstr ""
1337
  msgid "Subscription &amp; Payment"
1338
  msgstr ""
1339
 
1340
+ #: admin/html/support.php:282 includes/fields/class-abstract-fields.php:521
1341
+ #: includes/fields/class-abstract-fields.php:595
1342
+ #: includes/fields/class-abstract-fields.php:703
1343
  msgid "Content Restriction"
1344
  msgstr ""
1345
 
1412
  msgstr ""
1413
 
1414
  #: admin/html/whats-new.php:9
1415
+ msgid "QR and math captcha added to pro feature list"
1416
  msgstr ""
1417
 
1418
  #: admin/html/whats-new.php:13
1419
+ msgid "Tooltip for category navigate"
1420
  msgstr ""
1421
 
1422
  #: admin/html/whats-new.php:17
1423
+ msgid "Understandable guest payment notice"
1424
  msgstr ""
1425
 
1426
  #: admin/html/whats-new.php:21
1427
+ msgid "Paypal non recurring pack id does not set"
1428
+ msgstr ""
1429
+
1430
+ #: admin/html/whats-new.php:32
1431
+ msgid "Once trial subscription is used, it couldn't reset"
1432
+ msgstr ""
1433
+
1434
+ #: admin/html/whats-new.php:36
1435
+ msgid "Subscription cancel doesn't work"
1436
+ msgstr ""
1437
+
1438
+ #: admin/html/whats-new.php:40
1439
+ msgid "The tax rate was not calculated with the total amount"
1440
+ msgstr ""
1441
+
1442
+ #: admin/html/whats-new.php:44
1443
  msgid "The width of the column field was breaking"
1444
  msgstr ""
1445
 
1446
+ #: admin/html/whats-new.php:48
1447
  msgid "Paypal recurring payment"
1448
  msgstr ""
1449
 
1450
+ #: admin/html/whats-new.php:59
1451
  msgid "Updated codebase to fix timezone mismatch"
1452
  msgstr ""
1453
 
1454
+ #: admin/html/whats-new.php:70
1455
  msgid "Custom html content field's width"
1456
  msgstr ""
1457
 
1458
+ #: admin/html/whats-new.php:74
1459
  msgid "All states of New Zealand are added"
1460
  msgstr ""
1461
 
1462
+ #: admin/html/whats-new.php:85
1463
  msgid "Get appropriate user id when role based conditions are present"
1464
  msgstr ""
1465
 
1466
+ #: admin/html/whats-new.php:89
1467
  msgid "Show Invalid subscription message if wrong pack id passed"
1468
  msgstr ""
1469
 
1470
+ #: admin/html/whats-new.php:93
1471
  msgid "URL field new window not working"
1472
  msgstr ""
1473
 
1474
+ #: admin/html/whats-new.php:97
1475
  msgid "Option label not working when & use"
1476
  msgstr ""
1477
 
1478
+ #: admin/html/whats-new.php:101
1479
  msgid "Ajax type category not showing on edit"
1480
  msgstr ""
1481
 
1482
+ #: admin/html/whats-new.php:105
1483
  msgid "Multiple file image can't select"
1484
  msgstr ""
1485
 
1486
+ #: admin/html/whats-new.php:109
1487
  msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
1488
  msgstr ""
1489
 
1490
+ #: admin/html/whats-new.php:113
1491
  msgid "Conflict image field with acf image field"
1492
  msgstr ""
1493
 
1494
+ #: admin/html/whats-new.php:117
1495
  msgid "Missing Auckland State for New Zealand country"
1496
  msgstr ""
1497
 
1498
+ #: admin/html/whats-new.php:121
1499
  msgid "Added support for WooCommerce product category value replacemen"
1500
  msgstr ""
1501
 
1502
+ #: admin/html/whats-new.php:131
1503
  msgid "Add character restriction feature"
1504
  msgstr ""
1505
 
1506
+ #: admin/html/whats-new.php:135
1507
  msgid "Make sure post author edit link works only in frontend"
1508
  msgstr ""
1509
 
1510
+ #: admin/html/whats-new.php:139
1511
  msgid "Inconsistency in lost password reset email message"
1512
  msgstr ""
1513
 
1514
+ #: admin/html/whats-new.php:143
1515
  msgid "Saving custom taxonomy terms when input type is text"
1516
  msgstr ""
1517
 
1518
+ #: admin/html/whats-new.php:147
1519
  msgid "Taxonomy field JS error in builder"
1520
  msgstr ""
1521
 
1522
+ #: admin/html/whats-new.php:151
1523
  msgid "Showing WPUF edit link for WP default roles"
1524
  msgstr ""
1525
 
1526
+ #: admin/html/whats-new.php:155
1527
  msgid "Upload button unresponsive issue in iOS"
1528
  msgstr ""
1529
 
1530
+ #: admin/html/whats-new.php:165
1531
  msgid "Add post edit link for post authors in single or archive pages"
1532
  msgstr ""
1533
 
1534
+ #: admin/html/whats-new.php:169
1535
  msgid "Enhance post delete message"
1536
  msgstr ""
1537
 
1538
+ #: admin/html/whats-new.php:173
1539
  msgid "Refactor control buttons visibility in form builder"
1540
  msgstr ""
1541
 
1542
+ #: admin/html/whats-new.php:177
1543
  msgid "Add missing colons after field label"
1544
  msgstr ""
1545
 
1546
+ #: admin/html/whats-new.php:181
1547
  msgid "Post edit map capability condition"
1548
  msgstr ""
1549
 
1550
+ #: admin/html/whats-new.php:185
1551
  msgid "Role based permission for accessing a post form"
1552
  msgstr ""
1553
 
1554
+ #: admin/html/whats-new.php:189
1555
  msgid "Section-break field alignment"
1556
  msgstr ""
1557
 
1558
+ #: admin/html/whats-new.php:193
1559
  msgid "Pay per post doesn't work if subscription pack is activated"
1560
  msgstr ""
1561
 
1562
+ #: admin/html/whats-new.php:197
1563
  msgid "Mime type for uploading JSON files"
1564
  msgstr ""
1565
 
1566
+ #: admin/html/whats-new.php:201
1567
  msgid "File upload with same file name"
1568
  msgstr ""
1569
 
1570
+ #: admin/html/whats-new.php:205
1571
  msgid "Post preview missing fields"
1572
  msgstr ""
1573
 
1574
+ #: admin/html/whats-new.php:209
1575
  msgid "Illigal variable declartion"
1576
  msgstr ""
1577
 
1578
+ #: admin/html/whats-new.php:213
1579
  msgid "Featured image updating issue"
1580
  msgstr ""
1581
 
1582
+ #: admin/html/whats-new.php:217
1583
  msgid "Conflict with Phlox theme"
1584
  msgstr ""
1585
 
1586
+ #: admin/html/whats-new.php:221
1587
  msgid "Textarea custom field data sanitization"
1588
  msgstr ""
1589
 
1590
+ #: admin/html/whats-new.php:225
1591
  msgid "exclude_type warning in wpuf_category_checklist"
1592
  msgstr ""
1593
 
1594
+ #: admin/html/whats-new.php:229
1595
  msgid "Category field not showing all child categories for selection type child of"
1596
  msgstr ""
1597
 
1598
+ #: admin/html/whats-new.php:233
1599
  msgid "Conflict between image and file upload custom fields"
1600
  msgstr ""
1601
 
1602
+ #: admin/html/whats-new.php:237
1603
  msgid "Login url when login page is not set"
1604
  msgstr ""
1605
 
1606
+ #: admin/html/whats-new.php:247
1607
  msgid ""
1608
  "Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
1609
  "their official names"
1610
  msgstr ""
1611
 
1612
+ #: admin/html/whats-new.php:251
1613
  msgid "Fix condition to use default avatar"
1614
  msgstr ""
1615
 
1616
+ #: admin/html/whats-new.php:255
1617
  msgid "Make Email and URL fields clickable"
1618
  msgstr ""
1619
 
1620
+ #: admin/html/whats-new.php:259
1621
  msgid "Fix redirect after user login"
1622
  msgstr ""
1623
 
1624
+ #: admin/html/whats-new.php:263
1625
  msgid "Sanitize textarea field data"
1626
  msgstr ""
1627
 
1628
+ #: admin/html/whats-new.php:267
1629
  msgid ""
1630
  "Fix missing colon to email, URL, text and textarea labels when renders "
1631
  "their data"
1632
  msgstr ""
1633
 
1634
+ #: admin/html/whats-new.php:271
1635
  msgid "Prevent showing empty labels for fields that have render_field_data method"
1636
  msgstr ""
1637
 
1638
+ #: admin/html/whats-new.php:281
1639
  msgid "Add Namibian Dollar in currency list"
1640
  msgstr ""
1641
 
1642
+ #: admin/html/whats-new.php:285
1643
  msgid "Add sync values option for option data fields"
1644
  msgstr ""
1645
 
1646
+ #: admin/html/whats-new.php:289
1647
  msgid "Allow uploading image that having filesize meets php ini settings"
1648
  msgstr ""
1649
 
1650
+ #: admin/html/whats-new.php:293
1651
  msgid "Limit the selection of one image at a time"
1652
  msgstr ""
1653
 
1654
+ #: admin/html/whats-new.php:297
1655
  msgid "Use file name and size to generate hash to prevent duplicant image upload"
1656
  msgstr ""
1657
 
1658
+ #: admin/html/whats-new.php:301
1659
  msgid "Sanitize text and textarea field data"
1660
  msgstr ""
1661
 
1662
+ #: admin/html/whats-new.php:305
1663
  msgid ""
1664
  "Show label instead of values for radio, checkbox, dropdown and multiselect "
1665
  "data"
1666
  msgstr ""
1667
 
1668
+ #: admin/html/whats-new.php:309
1669
  msgid "Saving custom taxonomies for type text input"
1670
  msgstr ""
1671
 
1672
+ #: admin/html/whats-new.php:313
1673
  msgid "Admin settings link for recaptcha helper text"
1674
  msgstr ""
1675
 
1676
+ #: admin/html/whats-new.php:317
1677
  msgid "Undefined name property for Custom HTML fields"
1678
  msgstr ""
1679
 
1680
+ #: admin/html/whats-new.php:321
1681
  msgid "Delete attachment process"
1682
  msgstr ""
1683
 
1684
+ #: admin/html/whats-new.php:325
1685
  msgid "Missing billing address in invoice PDF"
1686
  msgstr ""
1687
 
1688
+ #: admin/html/whats-new.php:329
1689
  msgid "Showing country field value in frontend post content"
1690
  msgstr ""
1691
 
1692
+ #: admin/html/whats-new.php:333
1693
  msgid "Avatar size display not complying with admin settings size"
1694
  msgstr ""
1695
 
1696
+ #: admin/html/whats-new.php:337
1697
  msgid "Display default avatars on admin settings discussion page"
1698
  msgstr ""
1699
 
1700
+ #: admin/html/whats-new.php:341
1701
  msgid "Redirect to subscription page at registration"
1702
  msgstr ""
1703
 
1704
+ #: admin/html/whats-new.php:345
1705
  msgid "Error notice regarding registration page redirect"
1706
  msgstr ""
1707
 
1708
+ #: admin/html/whats-new.php:349
1709
  msgid "Escaping html in registration errors"
1710
  msgstr ""
1711
 
1712
+ #: admin/html/whats-new.php:353
1713
  msgid "Default login redirect link"
1714
  msgstr ""
1715
 
1716
+ #: admin/html/whats-new.php:357
1717
  msgid "Implementing default WP login page override option"
1718
  msgstr ""
1719
 
1720
+ #: admin/html/whats-new.php:361
1721
  msgid "Transparent background of autosuggestion dropdown"
1722
  msgstr ""
1723
 
1724
+ #: admin/html/whats-new.php:371
1725
  msgid "Import forms system"
1726
  msgstr ""
1727
 
1728
+ #: admin/html/whats-new.php:375
1729
  msgid "Password reset system"
1730
  msgstr ""
1731
 
1732
+ #: admin/html/whats-new.php:379
1733
  msgid "Updated url validation regex to support modern tlds"
1734
  msgstr ""
1735
 
1736
+ #: admin/html/whats-new.php:383
1737
  msgid "Export WPUF forms individually from admin tools page"
1738
  msgstr ""
1739
 
1740
+ #: admin/html/whats-new.php:387
1741
  msgid "Subscription cycle label translation issue"
1742
  msgstr ""
1743
 
1744
+ #: admin/html/whats-new.php:391
1745
  msgid "ACF integration for checkbox fields"
1746
  msgstr ""
1747
 
1748
+ #: admin/html/whats-new.php:395
1749
  msgid "Illegal string offset warning while updating settings"
1750
  msgstr ""
1751
 
1752
+ #: admin/html/whats-new.php:399
1753
  msgid "Conditional logic for Section Break field"
1754
  msgstr ""
1755
 
1756
+ #: admin/html/whats-new.php:403
1757
  msgid "Subscriptions cannot be deleted from backend"
1758
  msgstr ""
1759
 
1760
+ #: admin/html/whats-new.php:407
1761
  msgid "A regression regarding saving checkbox data"
1762
  msgstr ""
1763
 
1764
+ #: admin/html/whats-new.php:411
1765
  msgid "Default value of multi-select fields is not showing"
1766
  msgstr ""
1767
 
1768
+ #: admin/html/whats-new.php:421
1769
  msgid "Hide post edit option when subscription is expired"
1770
  msgstr ""
1771
 
1772
+ #: admin/html/whats-new.php:423
1773
  msgid "Hide post edit option from users whose subscription pack is expired."
1774
  msgstr ""
1775
 
1776
+ #: admin/html/whats-new.php:426
1777
  msgid "Check files to prevent duplicity in media upload"
1778
  msgstr ""
1779
 
1780
+ #: admin/html/whats-new.php:428
1781
  msgid ""
1782
  "A simple measure has been taken to prevent maliciously flooding the site by "
1783
  "uploading same file multiple times. Though this won't work with already "
1784
  "uploaded medias."
1785
  msgstr ""
1786
 
1787
+ #: admin/html/whats-new.php:431
1788
  msgid "Refactor address fields in Account section"
1789
  msgstr ""
1790
 
1791
+ #: admin/html/whats-new.php:433
1792
  msgid "Address edit section from Account section has been rewritten to improve UX."
1793
  msgstr ""
1794
 
1795
+ #: admin/html/whats-new.php:436
1796
  msgid "Update Paypal payment gateway"
1797
  msgstr ""
1798
 
1799
+ #: admin/html/whats-new.php:438
1800
  msgid "Paypal payment gateway has seen some improvements."
1801
  msgstr ""
1802
 
1803
+ #: admin/html/whats-new.php:441
1804
  msgid "Default Category selection improvements"
1805
  msgstr ""
1806
 
1807
+ #: admin/html/whats-new.php:443
1808
  msgid ""
1809
  "An intuitive way of selecting default category of a selected post type has "
1810
  "been introduced."
1811
  msgstr ""
1812
 
1813
+ #: admin/html/whats-new.php:446
1814
  msgid "Compatibility issue with ACF date time field"
1815
  msgstr ""
1816
 
1817
+ #: admin/html/whats-new.php:448
1818
  msgid "A Compatibility issue with ACF date time field has been addressed."
1819
  msgstr ""
1820
 
1821
+ #: admin/html/whats-new.php:451
1822
  msgid "Media title, caption & description not saving"
1823
  msgstr ""
1824
 
1825
+ #: admin/html/whats-new.php:453
1826
  msgid ""
1827
  "Media title, caption & description were not saving from frontend. They will "
1828
  "now."
1829
  msgstr ""
1830
 
1831
+ #: admin/html/whats-new.php:456
1832
  msgid ""
1833
  "The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
1834
  "metabox"
1835
  msgstr ""
1836
 
1837
+ #: admin/html/whats-new.php:458
1838
  msgid ""
1839
  "A workaround has been introduced to save The Events Calendar Venue and "
1840
  "Organizer fields properly from WPUF Custom Fields metabox."
1841
  msgstr ""
1842
 
1843
+ #: admin/html/whats-new.php:461
1844
  msgid "Checkbox data not saving from WPUF Custom Fields metabox"
1845
  msgstr ""
1846
 
1847
+ #: admin/html/whats-new.php:463
1848
  msgid ""
1849
  "Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
1850
  "fixed."
1851
  msgstr ""
1852
 
1853
+ #: admin/html/whats-new.php:466
1854
  msgid "Multi-column Repeater field data saving issue"
1855
  msgstr ""
1856
 
1857
+ #: admin/html/whats-new.php:468
1858
  msgid ""
1859
  "Multi-column Repeater field data from a form was not saving. It has been "
1860
  "fixed."
1861
  msgstr ""
1862
 
1863
+ #: admin/html/whats-new.php:471
1864
  msgid "Multistep form conflict with Elementor"
1865
  msgstr ""
1866
 
1867
+ #: admin/html/whats-new.php:473
1868
  msgid "Multistep form had a conflict with Elementor. It has been fixed."
1869
  msgstr ""
1870
 
1871
+ #: admin/html/whats-new.php:476
1872
  msgid "Multiple images showing issue in frontend"
1873
  msgstr ""
1874
 
1875
+ #: admin/html/whats-new.php:478
1876
  msgid "Multiple images in a post were not showing in frontend. Now they will."
1877
  msgstr ""
1878
 
1879
+ #: admin/html/whats-new.php:487
1880
  msgid "Nonce not verify on login"
1881
  msgstr ""
1882
 
1883
+ #: admin/html/whats-new.php:489
1884
  msgid "Return of function wp_verify_nonce() was ignored."
1885
  msgstr ""
1886
 
1887
+ #: admin/html/whats-new.php:498
1888
  msgid "Option to set which tab shows as active on the account page"
1889
  msgstr ""
1890
 
1891
+ #: admin/html/whats-new.php:500
1892
  msgid ""
1893
  "Option to set which tab shows as active on the account page. To configure "
1894
  "this setting navigate to wp-admin->User Frontend->Settings->My "
1895
  "Account->Active Tab "
1896
  msgstr ""
1897
 
1898
+ #: admin/html/whats-new.php:503
1899
  msgid "Unlock option was unavailable after the post being locked"
1900
  msgstr ""
1901
 
1902
+ #: admin/html/whats-new.php:505
1903
  msgid "Unlock option was unavailable after the post being locked."
1904
  msgstr ""
1905
 
1906
+ #: admin/html/whats-new.php:508
1907
  msgid "Gutenberg block of WPUF didn't work on bedrock installation"
1908
  msgstr ""
1909
 
1910
+ #: admin/html/whats-new.php:510
1911
  msgid "Gutenberg block of WPUF didn't work on bedrock installation."
1912
  msgstr ""
1913
 
1914
+ #: admin/html/whats-new.php:513
1915
  msgid "Sending admin payment received email twice"
1916
  msgstr ""
1917
 
1918
+ #: admin/html/whats-new.php:515
1919
  msgid ""
1920
  "After processing payment admin & user was receiving payment received email "
1921
  "twice."
1922
  msgstr ""
1923
 
1924
+ #: admin/html/whats-new.php:518
1925
  msgid ""
1926
  "Add shortcode support to display post information in the Post Expiration "
1927
  "Message"
1928
  msgstr ""
1929
 
1930
+ #: admin/html/whats-new.php:520
1931
  msgid ""
1932
  "Add shortcode support to display post information in the Post Expiration "
1933
  "Message. You can use: <strong>{post_author} {post_url} {blogname} "
1934
  "{post_title} {post_status}</strong>"
1935
  msgstr ""
1936
 
1937
+ #: admin/html/whats-new.php:523
1938
  msgid "Add optin on the setup wizard"
1939
  msgstr ""
1940
 
1941
+ #: admin/html/whats-new.php:525
1942
  msgid ""
1943
  "Added optin on the setup wizard, admin can choose whether he/she wants to "
1944
  "share server environment details (php, mysql, server, WordPress versions), "
1946
  "name and url, admin name and email address. No sensitive data is tracked"
1947
  msgstr ""
1948
 
1949
+ #: admin/html/whats-new.php:534
1950
  msgid "Post Owner problem"
1951
  msgstr ""
1952
 
1953
+ #: admin/html/whats-new.php:536
1954
  msgid ""
1955
  "Posts were not assigned to the selected default post owner, this issue has "
1956
  "been fixed."
1957
  msgstr ""
1958
 
1959
+ #: admin/html/whats-new.php:539
1960
  msgid "Google reCaptcha was not working"
1961
  msgstr ""
1962
 
1963
+ #: admin/html/whats-new.php:541
1964
  msgid ""
1965
  "Google reCaptcha was not working, users could submit the form without "
1966
  "reCaptcha validation."
1967
  msgstr ""
1968
 
1969
+ #: admin/html/whats-new.php:550
1970
  msgid "Added column field"
1971
  msgstr ""
1972
 
1973
+ #: admin/html/whats-new.php:555
1974
  msgid "Unable to render the events on the front-end dashboard"
1975
  msgstr ""
1976
 
1977
+ #: admin/html/whats-new.php:557
1978
  msgid ""
1979
  "On the frontend dashboard, the submitted events were not showing, you will "
1980
  "get it fixed in this version."
1981
  msgstr ""
1982
 
1983
+ #: admin/html/whats-new.php:560
1984
  msgid "Page order getting 0(zero) after editing from the frontend"
1985
  msgstr ""
1986
 
1987
+ #: admin/html/whats-new.php:562
1988
  msgid ""
1989
  "Page order was not saving while editing a post using WPUF form, it has been "
1990
  "fixed."
1991
  msgstr ""
1992
 
1993
+ #: admin/html/whats-new.php:565
1994
  msgid "Text input field for taxonomies not working"
1995
  msgstr ""
1996
 
1997
+ #: admin/html/whats-new.php:567
1998
  msgid ""
1999
  "When taxonomy field type is set to `Text Input` then a fatal error was "
2000
  "showing on the frontend, no error with taxonomy field in the latest version."
2001
  msgstr ""
2002
 
2003
+ #: admin/html/whats-new.php:570
2004
  msgid ""
2005
  "In radio and checkbox field use conditional logic that value does not save "
2006
  "in database"
2007
  msgstr ""
2008
 
2009
+ #: admin/html/whats-new.php:572
2010
  msgid ""
2011
  "The selected value of radio and checkbox field were not showing while "
2012
  "editing posts from the backend or frontend, you can see the selected value "
2013
  "in this version."
2014
  msgstr ""
2015
 
2016
+ #: admin/html/whats-new.php:575
2017
  msgid "The args param not working with get_avatar filter"
2018
  msgstr ""
2019
 
2020
+ #: admin/html/whats-new.php:577
2021
  msgid "The args parameter did not exist with get_avatar filter, which now exists."
2022
  msgstr ""
2023
 
2024
+ #: admin/html/whats-new.php:580
2025
  msgid "The item in ajax taxonomy field was not selected"
2026
  msgstr ""
2027
 
2028
+ #: admin/html/whats-new.php:582
2029
  msgid ""
2030
  "When the taxonomy field type is set to Ajax, the submitted terms were not "
2031
  "showing in the backend and frontend which have been fixed."
2032
  msgstr ""
2033
 
2034
+ #: admin/html/whats-new.php:591
2035
  msgid "Unable to send new user registration email"
2036
  msgstr ""
2037
 
2038
+ #: admin/html/whats-new.php:593
2039
  msgid ""
2040
  "WP User Frontend default registration form `[wpuf-registration]` was unable "
2041
  "to send the new user registration email."
2042
  msgstr ""
2043
 
2044
+ #: admin/html/whats-new.php:596
2045
  msgid "WPUF forms block compatibility issue with the latest WP version"
2046
  msgstr ""
2047
 
2048
+ #: admin/html/whats-new.php:598
2049
  msgid ""
2050
  "With the latest version of WordPress the gutenberg block of WP User "
2051
  "Frontend were not working. In this version, you will get it fixed."
2052
  msgstr ""
2053
 
2054
+ #: admin/html/whats-new.php:601
2055
  msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
2056
  msgstr ""
2057
 
2058
+ #: admin/html/whats-new.php:603
2059
  msgid ""
2060
  "While using Gutenberg, the page were not being updated with WPUF shortcode "
2061
  "[wpuf dashboard]"
2062
  msgstr ""
2063
 
2064
+ #: admin/html/whats-new.php:606
2065
  msgid "Retain default when determining whether to display the admin bar"
2066
  msgstr ""
2067
 
2068
+ #: admin/html/whats-new.php:608
2069
  msgid ""
2070
  "From the User Frontend Settings, set that Administrator, Editor, Vendor can "
2071
  "see the admin bar. Now, the super admin want, one specific user ( who has "
2075
  "frontend."
2076
  msgstr ""
2077
 
2078
+ #: admin/html/whats-new.php:611
2079
  msgid "Fatal error when use PHP lower version (5.4 or lower)"
2080
  msgstr ""
2081
 
2082
+ #: admin/html/whats-new.php:613
2083
  msgid ""
2084
  "It was unable to install WP User Frontend with PHP 5.4 or lower version. "
2085
  "Here is the error details: <br><br><strong>Fatal error: Can't use method "
2087
  "/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
2088
  msgstr ""
2089
 
2090
+ #: admin/html/whats-new.php:616
2091
  msgid "Product form was unable to show the single gallery image"
2092
  msgstr ""
2093
 
2094
+ #: admin/html/whats-new.php:618
2095
  msgid ""
2096
  "When user upload single image for product gallery using WPUF WooCommerce "
2097
  "product form, that image were not showing on the frontend."
2098
  msgstr ""
2099
 
2100
+ #: admin/html/whats-new.php:627
2101
  msgid "WooCommerce gallery images not getting saved"
2102
  msgstr ""
2103
 
2104
+ #: admin/html/whats-new.php:629
2105
  msgid ""
2106
  "After releasing version 2.9.3, WooCommerce gallery image field stopped "
2107
  "working. You will get it fixed in this version."
2108
  msgstr ""
2109
 
2110
+ #: admin/html/whats-new.php:638
2111
  msgid "The Events Calendar Integration Form"
2112
  msgstr ""
2113
 
2114
+ #: admin/html/whats-new.php:640
2115
  msgid ""
2116
  "Now admin can allow users to create event from the frontend. Currently WPUF "
2117
  "has a one click pre-build event form that has been integrated with The "
2118
  "Events Calendar plugin"
2119
  msgstr ""
2120
 
2121
+ #: admin/html/whats-new.php:643
2122
  msgid "Post Submission Facility From Account Page"
2123
  msgstr ""
2124
 
2125
+ #: admin/html/whats-new.php:645
2126
  msgid ""
2127
  "On the frontend account page, added a new menu item named <b>Submit "
2128
  "Post</b>. Now admin can allow users to submit post from their default "
2131
  "you can assign any post form that will use to submit posts."
2132
  msgstr ""
2133
 
2134
+ #: admin/html/whats-new.php:648
2135
  msgid "Login/Lost Password Link Under Registration Form"
2136
  msgstr ""
2137
 
2138
+ #: admin/html/whats-new.php:650
2139
  msgid "Added Login/Lost Password link under registration form"
2140
  msgstr ""
2141
 
2142
+ #: admin/html/whats-new.php:659
2143
  msgid "Added drag and drop image ordering on image upload"
2144
  msgstr ""
2145
 
2146
+ #: admin/html/whats-new.php:661
2147
  msgid ""
2148
  "Now frontend users can drag & drop the images/files to change the order "
2149
  "while uploading."
2150
  msgstr ""
2151
 
2152
+ #: admin/html/whats-new.php:664
2153
  msgid "Added reCAPTCHA field in login form"
2154
  msgstr ""
2155
 
2156
+ #: admin/html/whats-new.php:666
2157
  msgid ""
2158
  "Admin has the option to show reCAPTCHA field in login form. Check the "
2159
  "related settings from <strong>User Frontend > Settings > "
2160
  "Login/Registration</strong>"
2161
  msgstr ""
2162
 
2163
+ #: admin/html/whats-new.php:669
2164
  msgid "Added preview option in forms"
2165
  msgstr ""
2166
 
2167
+ #: admin/html/whats-new.php:671
2168
  msgid ""
2169
  "You can see a nice <strong>Preview</strong> button with <strong>Save "
2170
  "Form</strong> button, admin can take a quick look of the form without using "
2171
  "shortcode"
2172
  msgstr ""
2173
 
2174
+ #: admin/html/whats-new.php:674
2175
  msgid "Fixed hiding “Select Image” button while uploading multiple images."
2176
  msgstr ""
2177
 
2178
+ #: admin/html/whats-new.php:676
2179
  msgid ""
2180
  "The upload button will not be hidden until the user selects max number of "
2181
  "files "
2182
  msgstr ""
2183
 
2184
+ #: admin/html/whats-new.php:679
2185
  msgid "Added form limit notice before form submission"
2186
  msgstr ""
2187
 
2188
+ #: admin/html/whats-new.php:681
2189
  msgid ""
2190
  "Limit notice message was showing after submission, now it is showing when "
2191
  "rendering the form"
2192
  msgstr ""
2193
 
2194
+ #: admin/html/whats-new.php:684
2195
  msgid "Fixed: default post category not saving"
2196
  msgstr ""
2197
 
2198
+ #: admin/html/whats-new.php:686
2199
  msgid ""
2200
  "From the form <strong>Settings > Post Settings</strong>, default post "
2201
  "category options were not saving. Now, it's fixed."
2202
  msgstr ""
2203
 
2204
+ #: admin/html/whats-new.php:689
2205
  msgid ""
2206
  "WPUF dashboard shortcode with form_id attribute was not showing posts "
2207
  "properly"
2208
  msgstr ""
2209
 
2210
+ #: admin/html/whats-new.php:691
2211
  msgid ""
2212
  "Now you can list posts on the frontend by using <strong>form_id<strong/> "
2213
  "attribute with <strong>[wpuf_dashboard]</strong> shortcode"
2214
  msgstr ""
2215
 
2216
+ #: admin/html/whats-new.php:700
2217
  msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
2218
  msgstr ""
2219
 
2220
+ #: admin/html/whats-new.php:702
2221
  msgid ""
2222
  "If you are using other language than English. Please <b>rename</b> your "
2223
  "<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
2224
  "change was made to support translations from translate.wordpress.org"
2225
  msgstr ""
2226
 
2227
+ #: admin/html/whats-new.php:705
2228
  msgid "Added WP User Frontend Data export and erase functionality."
2229
  msgstr ""
2230
 
2231
+ #: admin/html/whats-new.php:707
2232
  msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
2233
  msgstr ""
2234
 
2235
+ #: admin/html/whats-new.php:710
2236
  msgid "Added billing address customizer."
2237
  msgstr ""
2238
 
2239
+ #: admin/html/whats-new.php:712
2240
  msgid "Added customizer options for billing address in payment page."
2241
  msgstr ""
2242
 
2243
+ #: admin/html/whats-new.php:715
2244
  msgid "Make the payment page responsive."
2245
  msgstr ""
2246
 
2247
+ #: admin/html/whats-new.php:717
2248
  msgid "Some css adjustments are made in payment page to make it responsive."
2249
  msgstr ""
2250
 
2251
+ #: admin/html/whats-new.php:720
2252
  msgid "Fixed image upload issue in Safari."
2253
  msgstr ""
2254
 
2255
+ #: admin/html/whats-new.php:722
2256
  msgid "Images were not showing after upload in safari, it is fixed now."
2257
  msgstr ""
2258
 
2259
+ #: admin/html/whats-new.php:725
2260
  msgid "Post update issue after updating or removing post images."
2261
  msgstr ""
2262
 
2263
+ #: admin/html/whats-new.php:727
2264
  msgid ""
2265
  "Posts cannot be updated after updating or removing post images, it is fixed "
2266
  "now."
2267
  msgstr ""
2268
 
2269
+ #: admin/html/whats-new.php:736
2270
  msgid "Allow overriding form input styles using theme styling."
2271
  msgstr ""
2272
 
2273
+ #: admin/html/whats-new.php:738
2274
  msgid "Overriding form input styles using theme style is now possible."
2275
  msgstr ""
2276
 
2277
+ #: admin/html/whats-new.php:741
2278
  msgid "Fixed Auto Login after registration."
2279
  msgstr ""
2280
 
2281
+ #: admin/html/whats-new.php:743
2282
  msgid "Auto Login after registration was not working is fixed now."
2283
  msgstr ""
2284
 
2285
+ #: admin/html/whats-new.php:746
2286
  msgid "Fixed fallback cost calculation"
2287
  msgstr ""
2288
 
2289
+ #: admin/html/whats-new.php:748
2290
  msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
2291
  msgstr ""
2292
 
2293
+ #: admin/html/whats-new.php:751
2294
  msgid "Removal of subscription from User Profile gets reverted if updated"
2295
  msgstr ""
2296
 
2297
+ #: admin/html/whats-new.php:753
2298
  msgid "User subscription deletion gets reverted if updated is fixed."
2299
  msgstr ""
2300
 
2301
+ #: admin/html/whats-new.php:756
2302
  msgid "Show Free pack users in subscribers list."
2303
  msgstr ""
2304
 
2305
+ #: admin/html/whats-new.php:758
2306
  msgid "Free pack users were not showing in subscribers list, now they will."
2307
  msgstr ""
2308
 
2309
+ #: admin/html/whats-new.php:767
2310
  msgid "WP User Frontend Guten Block is added"
2311
  msgstr ""
2312
 
2313
+ #: admin/html/whats-new.php:769
2314
  msgid ""
2315
  "WPUF Form Block is now available to be used within gutenberg editor with "
2316
  "preview of the form. "
2317
  msgstr ""
2318
 
2319
+ #: admin/html/whats-new.php:772
2320
  msgid "Advanced Custom Fields plugin compatibility"
2321
  msgstr ""
2322
 
2323
+ #: admin/html/whats-new.php:774
2324
  msgid "Now all your ACF fields can be used within WPUF Post forms. "
2325
  msgstr ""
2326
 
2327
+ #: admin/html/whats-new.php:777
2328
  msgid "Taxonomy Terms not showing for custom post types"
2329
  msgstr ""
2330
 
2331
+ #: admin/html/whats-new.php:779
2332
  msgid ""
2333
  "Fixed an issue with taxonomy terms not appearing for Custom Post types "
2334
  "within Form Settings and Dashboard Post Listing"
2335
  msgstr ""
2336
 
2337
+ #: admin/html/whats-new.php:782
2338
  msgid "Various other code optimizations"
2339
  msgstr ""
2340
 
2341
+ #: admin/html/whats-new.php:784 admin/html/whats-new.php:841
2342
  msgid "Code structure organization and optimization for better performance"
2343
  msgstr ""
2344
 
2345
+ #: admin/html/whats-new.php:793
2346
  msgid "WoooCommerce billing address Sync"
2347
  msgstr ""
2348
 
2349
+ #: admin/html/whats-new.php:795
2350
  msgid ""
2351
  "If an existing customer has previously set his billing address, that will "
2352
  "be imported into WPUF Billing address "
2353
  msgstr ""
2354
 
2355
+ #: admin/html/whats-new.php:798
2356
  msgid "Trial subscription message not showing properly"
2357
  msgstr ""
2358
 
2359
+ #: admin/html/whats-new.php:800
2360
  msgid "Subscriptions with Trial now shows trial notices"
2361
  msgstr ""
2362
 
2363
+ #: admin/html/whats-new.php:803
2364
  msgid "Reset email Key not working"
2365
  msgstr ""
2366
 
2367
+ #: admin/html/whats-new.php:805
2368
  msgid "Reset Email key was not working in some cases"
2369
  msgstr ""
2370
 
2371
+ #: admin/html/whats-new.php:808
2372
  msgid "Post count not showing on the frontend dashboard"
2373
  msgstr ""
2374
 
2375
+ #: admin/html/whats-new.php:810
2376
  msgid ""
2377
  "Dashboard with multiple post type was not showing post counts properly, is "
2378
  "now fixed and shows count for each post type"
2379
  msgstr ""
2380
 
2381
+ #: admin/html/whats-new.php:813
2382
  msgid "Login Redirect showing blank page is fixed"
2383
  msgstr ""
2384
 
2385
+ #: admin/html/whats-new.php:815
2386
  msgid ""
2387
  "If \"Previous Page\" was set for redirection, login redirect was "
2388
  "redirecting to blank page for users who hit login page directly"
2389
  msgstr ""
2390
 
2391
+ #: admin/html/whats-new.php:824
2392
  msgid "Enhanced Login Redirect to redirect users to previous page"
2393
  msgstr ""
2394
 
2395
+ #: admin/html/whats-new.php:826
2396
  msgid ""
2397
  "You can choose Previous Page as Login Redirect page settings now to "
2398
  "redirect users to the page from which they went for Login. "
2399
  msgstr ""
2400
 
2401
+ #: admin/html/whats-new.php:829
2402
  msgid "Email HTML links not Rendreing properly issue is fixed"
2403
  msgstr ""
2404
 
2405
+ #: admin/html/whats-new.php:831
2406
  msgid ""
2407
  "For some clients emails were not rendering the HTML links properly, this is "
2408
  "now fixed"
2409
  msgstr ""
2410
 
2411
+ #: admin/html/whats-new.php:834
2412
  msgid "Form Builder : Form Field's Help text styles not showing properly"
2413
  msgstr ""
2414
 
2415
+ #: admin/html/whats-new.php:836
2416
  msgid "Help texts styling is now fixed and much easier to read and understand"
2417
  msgstr ""
2418
 
2419
+ #: admin/html/whats-new.php:839
2420
  msgid "Various other code improvements"
2421
  msgstr ""
2422
 
2423
+ #: admin/html/whats-new.php:850
2424
  msgid "Dashboard Post Listing now supports multiple post types"
2425
  msgstr ""
2426
 
2427
+ #: admin/html/whats-new.php:852
2428
  msgid ""
2429
  "Now you can show multiple post type in user dashboard using shortcode like "
2430
  "this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
2431
  msgstr ""
2432
 
2433
+ #: admin/html/whats-new.php:855
2434
  msgid "Added Login Redirect Settings"
2435
  msgstr ""
2436
 
2437
+ #: admin/html/whats-new.php:857
2438
  msgid ""
2439
  "You can now set a page from <i>WPUF Settings > Login/Registration > "
2440
  "Redirect after Login</i>. When login redirection is active the user will be "
2441
  "redirected to this page after login."
2442
  msgstr ""
2443
 
2444
+ #: admin/html/whats-new.php:860
2445
  msgid "Image Upload field button text can be changed"
2446
  msgstr ""
2447
 
2448
+ #: admin/html/whats-new.php:862
2449
  msgid ""
2450
  "The upload button text can now be changed for image upload fields which "
2451
  "defaults to \"Select Image\" if not set. "
2452
  msgstr ""
2453
 
2454
+ #: admin/html/whats-new.php:865
2455
  msgid "Multi Step Form styles made compatible with more themes"
2456
  msgstr ""
2457
 
2458
+ #: admin/html/whats-new.php:867
2459
  msgid "Multi Step form can now be styled more easily with other themes "
2460
  msgstr ""
2461
 
2462
+ #: admin/html/whats-new.php:870
2463
  msgid "Required field condition for google map not working is fixed"
2464
  msgstr ""
2465
 
2466
+ #: admin/html/whats-new.php:872
2467
  msgid ""
2468
  "If Google Map field was set as required users were able to submit form "
2469
  "without changing the default value."
2470
  msgstr ""
2471
 
2472
+ #: admin/html/whats-new.php:881
2473
  msgid "Admin form builder is now fully responsive."
2474
  msgstr ""
2475
 
2476
+ #: admin/html/whats-new.php:883
2477
  msgid ""
2478
  "Now you can edit forms from your mobile devices directly. Our improved "
2479
  "responsive layouts of form builder makes it easy for you to build forms on "
2480
  "the go."
2481
  msgstr ""
2482
 
2483
+ #: admin/html/whats-new.php:886
2484
  msgid "Added color schemes for creating attractive form layouts."
2485
  msgstr ""
2486
 
2487
+ #: admin/html/whats-new.php:888
2488
  msgid ""
2489
  "We have added 3 new color schemes for the form layouts which you can choose "
2490
  "from each form's new display settings."
2491
  msgstr ""
2492
 
2493
+ #: admin/html/whats-new.php:891
2494
  msgid "Restrict Free subscription pack to be enabled multiple times "
2495
  msgstr ""
2496
 
2497
+ #: admin/html/whats-new.php:893
2498
  msgid ""
2499
  "Free subscription packs now can only be purchased once and the limit "
2500
  "applies properly"
2501
  msgstr ""
2502
 
2503
+ #: admin/html/whats-new.php:896
2504
  msgid "Various other bug fixes and improvements were made "
2505
  msgstr ""
2506
 
2507
+ #: admin/html/whats-new.php:898
2508
  msgid "Please see the change log to see full details."
2509
  msgstr ""
2510
 
2511
+ #: admin/html/whats-new.php:907
2512
  msgid "Added upgrade function for default category"
2513
  msgstr ""
2514
 
2515
+ #: admin/html/whats-new.php:909
2516
  msgid "Upgrader added to upgrade previously set default post category."
2517
  msgstr ""
2518
 
2519
+ #: admin/html/whats-new.php:912
2520
  msgid "Subscription pack cannot be canceled"
2521
  msgstr ""
2522
 
2523
+ #: admin/html/whats-new.php:914
2524
  msgid ""
2525
  "Fixed recurring subscription pack cannot be canceled from my account page "
2526
  "in subscription details section."
2527
  msgstr ""
2528
 
2529
+ #: admin/html/whats-new.php:917
2530
  msgid "page installer admin notice logic issue"
2531
  msgstr ""
2532
 
2533
+ #: admin/html/whats-new.php:919
2534
  msgid ""
2535
  "Fixed page installer admin notice logic problem due to new payment settings "
2536
  "default value not set."
2537
  msgstr ""
2538
 
2539
+ #: admin/html/whats-new.php:929
2540
  msgid "Setup Wizard"
2541
  msgstr ""
2542
 
2543
+ #: admin/html/whats-new.php:931
2544
  msgid "Setup Wizard added to turn off payment options and install pages."
2545
  msgstr ""
2546
 
2547
+ #: admin/html/whats-new.php:935
2548
  msgid "Multi-select Category"
2549
  msgstr ""
2550
 
2551
+ #: admin/html/whats-new.php:937
2552
  msgid "Add multi-select to default category in post form settings."
2553
  msgstr ""
2554
 
2555
+ #: admin/html/whats-new.php:941
2556
  msgid "Select Text option for Taxonomy"
2557
  msgstr ""
2558
 
2559
+ #: admin/html/whats-new.php:943
2560
  msgid ""
2561
  "Add Select Text option for taxonomy fields. Now you can add default text "
2562
  "with empty value as first option for Taxonomy dropdown."
2563
  msgstr ""
2564
 
2565
+ #: admin/html/whats-new.php:946
2566
  msgid "Taxonomy Checkbox Inline"
2567
  msgstr ""
2568
 
2569
+ #: admin/html/whats-new.php:948
2570
  msgid ""
2571
  "Added checkbox inline option to taxonomy checkbox. You can now display "
2572
  "Taxonomy checkbox fields inline."
2573
  msgstr ""
2574
 
2575
+ #: admin/html/whats-new.php:958
2576
  msgid "Manage schedule for form submission"
2577
  msgstr ""
2578
 
2579
+ #: admin/html/whats-new.php:960
2580
  msgid ""
2581
  "Do not accept form submission if the current date is not between the date "
2582
  "range of the schedule."
2583
  msgstr ""
2584
 
2585
+ #: admin/html/whats-new.php:964
2586
  msgid "Restrict form submission based on the user roles"
2587
  msgstr ""
2588
 
2589
+ #: admin/html/whats-new.php:966
2590
  msgid ""
2591
  "Restrict form submission based on the user roles. Now you can manage user "
2592
  "role base permission on form submission."
2593
  msgstr ""
2594
 
2595
+ #: admin/html/whats-new.php:970
2596
  msgid "Limit how many entries a form will accept"
2597
  msgstr ""
2598
 
2599
+ #: admin/html/whats-new.php:972
2600
  msgid ""
2601
  "Limit how many entries a form will accept and display a custom message when "
2602
  "that limit is reached."
2603
  msgstr ""
2604
 
2605
+ #: admin/html/whats-new.php:976
2606
  msgid "Show/hide Admin Bar"
2607
  msgstr ""
2608
 
2609
+ #: admin/html/whats-new.php:978
2610
  msgid "Control the admin bar visibility based on user roles."
2611
  msgstr ""
2612
 
2613
+ #: admin/html/whats-new.php:982
2614
  msgid "Ajax Login widget"
2615
  msgstr ""
2616
 
2617
+ #: admin/html/whats-new.php:984
2618
  msgid ""
2619
  "Login user is more simple now with Ajax Login Widget. The simple ajax login "
2620
  "form do not required page loading for login."
2621
  msgstr ""
2622
 
2623
+ #: admin/html/whats-new.php:988
2624
  msgid "Form submission with Captcha field"
2625
  msgstr ""
2626
 
2627
+ #: admin/html/whats-new.php:990
2628
  msgid "Form field validation process updated if form submits with captcha field."
2629
  msgstr ""
2630
 
2631
+ #: admin/html/whats-new.php:1004
2632
  msgid "What's New in WPUF?"
2633
  msgstr ""
2634
 
2926
  "subscriptions only with just a shortcode."
2927
  msgstr ""
2928
 
2929
+ #: admin/premium.php:71 admin/premium.php:74
2930
+ #: includes/class-pro-upgrades.php:109 includes/free/form-element.php:496
2931
  msgid "Conditional Logic"
2932
  msgstr ""
2933
 
3628
  msgid "Max. file size"
3629
  msgstr ""
3630
 
3631
+ #: admin/template-post.php:147 includes/fields/class-abstract-fields.php:384
3632
  msgid "Type"
3633
  msgstr ""
3634
 
3637
  msgid "Dropdown"
3638
  msgstr ""
3639
 
3640
+ #: admin/template-post.php:150 includes/fields/class-abstract-fields.php:388
3641
  #: includes/fields/class-field-multidropdown.php:9
3642
  #: includes/fields/class-field-multidropdown.php:79
3643
  msgid "Multi Select"
3644
  msgstr ""
3645
 
3646
+ #: admin/template-post.php:151 includes/fields/class-abstract-fields.php:389
3647
  #: includes/fields/class-field-checkbox.php:9
3648
  msgid "Checkbox"
3649
  msgstr ""
3650
 
3651
+ #: admin/template-post.php:152 includes/fields/class-abstract-fields.php:390
3652
  msgid "Text Input"
3653
  msgstr ""
3654
 
3655
+ #: admin/template-post.php:153 includes/fields/class-abstract-fields.php:391
3656
  msgid "Ajax"
3657
  msgstr ""
3658
 
3659
+ #: admin/template-post.php:158 includes/fields/class-abstract-fields.php:424
3660
  msgid "Order By"
3661
  msgstr ""
3662
 
3663
+ #: admin/template-post.php:161 includes/fields/class-abstract-fields.php:428
3664
  msgid "Term ID"
3665
  msgstr ""
3666
 
3667
+ #: admin/template-post.php:162 includes/fields/class-abstract-fields.php:429
3668
  msgid "Slug"
3669
  msgstr ""
3670
 
3671
+ #: admin/template-post.php:163 includes/fields/class-abstract-fields.php:430
3672
  msgid "Count"
3673
  msgstr ""
3674
 
3675
+ #: admin/template-post.php:164 includes/fields/class-abstract-fields.php:431
3676
  msgid "Term Group"
3677
  msgstr ""
3678
 
3679
+ #: admin/template-post.php:169 includes/fields/class-abstract-fields.php:440
3680
  msgid "Order"
3681
  msgstr ""
3682
 
3683
+ #: admin/template-post.php:171 includes/fields/class-abstract-fields.php:444
3684
  msgid "ASC"
3685
  msgstr ""
3686
 
3687
+ #: admin/template-post.php:172 includes/fields/class-abstract-fields.php:445
3688
  msgid "DESC"
3689
  msgstr ""
3690
 
3691
+ #: admin/template-post.php:177 includes/fields/class-abstract-fields.php:454
3692
  msgid "Selection Type"
3693
  msgstr ""
3694
 
3695
+ #: admin/template-post.php:179 includes/fields/class-abstract-fields.php:457
3696
  msgid "Exclude"
3697
  msgstr ""
3698
 
3699
+ #: admin/template-post.php:180 includes/fields/class-abstract-fields.php:458
3700
  msgid "Include"
3701
  msgstr ""
3702
 
3703
+ #: admin/template-post.php:181 includes/fields/class-abstract-fields.php:459
3704
  msgid "Child of"
3705
  msgstr ""
3706
 
3708
  msgid "Selection terms"
3709
  msgstr ""
3710
 
3711
+ #: admin/template-post.php:187
3712
  msgid "Search the terms name."
3713
  msgstr ""
3714
 
3716
  msgid "WooCommerce Attribute"
3717
  msgstr ""
3718
 
3719
+ #: admin/template-post.php:197 includes/fields/class-abstract-fields.php:481
3720
  msgid "This taxonomy is a WooCommerce attribute"
3721
  msgstr ""
3722
 
3723
+ #: admin/template-post.php:203 includes/fields/class-abstract-fields.php:301
3724
  msgid "Visibility"
3725
  msgstr ""
3726
 
3727
+ #: admin/template-post.php:209 includes/fields/class-abstract-fields.php:492
3728
  msgid "Visible on product page"
3729
  msgstr ""
3730
 
3773
  msgstr ""
3774
 
3775
  #: admin/template.php:60 includes/class-customizer.php:106
3776
+ #: includes/fields/class-abstract-fields.php:250
3777
  msgid "Required"
3778
  msgstr ""
3779
 
3780
+ #: admin/template.php:69 includes/fields/class-abstract-fields.php:232
3781
  msgid "Field Label"
3782
  msgstr ""
3783
 
3784
+ #: admin/template.php:70 includes/fields/class-abstract-fields.php:236
3785
  msgid "Enter a title of this field"
3786
  msgstr ""
3787
 
3788
  #: admin/template.php:75 admin/template.php:550
3789
+ #: includes/fields/class-abstract-fields.php:319
3790
  #: includes/fields/class-field-hidden.php:39
3791
  msgid "Meta Key"
3792
  msgstr ""
3793
 
3794
  #: admin/template.php:76 admin/template.php:551
3795
+ #: includes/fields/class-abstract-fields.php:323
3796
  #: includes/fields/class-field-hidden.php:43
3797
  msgid "Name of the meta key this field will save to"
3798
  msgstr ""
3799
 
3800
+ #: admin/template.php:87 includes/fields/class-abstract-fields.php:241
3801
  msgid "Help text"
3802
  msgstr ""
3803
 
3804
+ #: admin/template.php:88 includes/fields/class-abstract-fields.php:245
3805
  msgid "Give the user some information about this field"
3806
  msgstr ""
3807
 
3808
+ #: admin/template.php:92 includes/fields/class-abstract-fields.php:280
3809
  #: includes/fields/class-field-column.php:86
3810
  msgid "CSS Class Name"
3811
  msgstr ""
3815
  msgstr ""
3816
 
3817
  #: admin/template.php:117 admin/template.php:175
3818
+ #: includes/fields/class-abstract-fields.php:545
3819
+ #: includes/fields/class-abstract-fields.php:654
3820
  msgid "Placeholder text"
3821
  msgstr ""
3822
 
3823
+ #: admin/template.php:118 includes/fields/class-abstract-fields.php:551
3824
+ #: includes/fields/class-abstract-fields.php:658
3825
  msgid "Text for HTML5 placeholder attribute"
3826
  msgstr ""
3827
 
3828
  #: admin/template.php:122 admin/template.php:180
3829
+ #: includes/fields/class-abstract-fields.php:556
3830
+ #: includes/fields/class-abstract-fields.php:666
3831
  msgid "Default value"
3832
  msgstr ""
3833
 
3834
+ #: admin/template.php:123 includes/fields/class-abstract-fields.php:562
3835
+ #: includes/fields/class-abstract-fields.php:670
3836
  msgid "The default value this field will have"
3837
  msgstr ""
3838
 
3839
+ #: admin/template.php:127 includes/fields/class-abstract-fields.php:567
3840
  msgid "Size"
3841
  msgstr ""
3842
 
3843
+ #: admin/template.php:128 includes/fields/class-abstract-fields.php:572
3844
  msgid "Size of this input field"
3845
  msgstr ""
3846
 
3852
  msgid "Numebr of words the author to be restricted in"
3853
  msgstr ""
3854
 
3855
+ #: admin/template.php:165 includes/fields/class-abstract-fields.php:636
3856
  msgid "Rows"
3857
  msgstr ""
3858
 
3859
+ #: admin/template.php:170 includes/fields/class-abstract-fields.php:645
3860
  #: includes/fields/class-field-column.php:9
3861
  msgid "Columns"
3862
  msgstr ""
3863
 
3864
+ #: admin/template.php:185 includes/fields/class-abstract-fields.php:675
3865
  #: includes/fields/class-field-textarea.php:9
3866
  #: includes/fields/class-field-textarea.php:123
3867
  msgid "Textarea"
3868
  msgstr ""
3869
 
3870
+ #: admin/template.php:188 includes/fields/class-abstract-fields.php:678
3871
  msgid "Normal"
3872
  msgstr ""
3873
 
3874
+ #: admin/template.php:189 includes/fields/class-abstract-fields.php:679
3875
  msgid "Rich textarea"
3876
  msgstr ""
3877
 
3878
+ #: admin/template.php:190 includes/fields/class-abstract-fields.php:680
3879
  msgid "Teeny Rich textarea"
3880
  msgstr ""
3881
 
3884
  msgstr ""
3885
 
3886
  #: admin/template.php:377 admin/template.php:401 admin/template.php:432
3887
+ #: admin/template.php:463 includes/fields/class-abstract-fields.php:618
3888
  #: templates/dashboard/posts.php:98 templates/dashboard.php:139
3889
  msgid "Options"
3890
  msgstr ""
3891
 
3892
  #: admin/template.php:417 admin/template.php:448
3893
+ #: includes/fields/class-abstract-fields.php:404
3894
  #: includes/fields/class-field-dropdown.php:87
3895
  msgid ""
3896
  "First element of the select dropdown. Leave this empty if you don't want to "
3898
  msgstr ""
3899
 
3900
  #: admin/template.php:427 admin/template.php:458
3901
+ #: includes/fields/class-abstract-fields.php:400
3902
  #: includes/fields/class-field-dropdown.php:83
3903
  msgid "Select Text"
3904
  msgstr ""
4196
  msgstr ""
4197
 
4198
  #: class/post-form-templates/post.php:40
4199
+ #: includes/fields/class-abstract-fields.php:189
4200
  #: includes/fields/class-field-dropdown.php:106
4201
  #: includes/fields/class-field-multidropdown.php:83
4202
  #: includes/fields/class-field-post-taxonomy.php:353
4695
  msgid "Sorry, you are not eligible to preview this form."
4696
  msgstr ""
4697
 
4698
+ #: includes/class-form.php:193
4699
+ #. translators: %s: Pack page link
4700
+ msgid ""
4701
+ "You need to <a href=\"%s\">purchase a subscription package</a> to post in "
4702
+ "this form"
4703
+ msgstr ""
4704
+
4705
+ #: includes/class-form.php:200 includes/class-form.php:233
4706
+ #: includes/class-form.php:240
4707
  msgid "Payment type not selected for this form. Please contact admin."
4708
  msgstr ""
4709
 
4710
+ #: includes/class-form.php:220
4711
  msgid "Post Limit Exceeded for your purchased subscription pack."
4712
  msgstr ""
4713
 
5358
  msgid "Bangladesh"
5359
  msgstr ""
5360
 
5361
+ #: includes/fields/class-abstract-fields.php:260
5362
  msgid ""
5363
  "Check this option to mark the field required. A form will not submit unless "
5364
  "all required fields are provided."
5365
  msgstr ""
5366
 
5367
+ #: includes/fields/class-abstract-fields.php:265
5368
  msgid "Field Size"
5369
  msgstr ""
5370
 
5371
+ #: includes/fields/class-abstract-fields.php:268
5372
  msgid "Small"
5373
  msgstr ""
5374
 
5375
+ #: includes/fields/class-abstract-fields.php:269
5376
  msgid "Medium"
5377
  msgstr ""
5378
 
5379
+ #: includes/fields/class-abstract-fields.php:270
5380
  msgid "Large"
5381
  msgstr ""
5382
 
5383
+ #: includes/fields/class-abstract-fields.php:284
5384
  #: includes/fields/class-field-column.php:90
5385
  msgid ""
5386
  "Provide a container class name for this field. Available classes: "
5388
  "wpuf-col-one-third-last"
5389
  msgstr ""
5390
 
5391
+ #: includes/fields/class-abstract-fields.php:305
5392
  msgid "Everyone"
5393
  msgstr ""
5394
 
5395
+ #: includes/fields/class-abstract-fields.php:307
5396
  msgid "Logged in users only"
5397
  msgstr ""
5398
 
5399
+ #: includes/fields/class-abstract-fields.php:308
5400
  msgid "Subscription users only"
5401
  msgstr ""
5402
 
5403
+ #: includes/fields/class-abstract-fields.php:312
5404
  msgid "Select option"
5405
  msgstr ""
5406
 
5407
+ #: includes/fields/class-abstract-fields.php:331
5408
  msgid "Show Data in Post"
5409
  msgstr ""
5410
 
5411
+ #: includes/fields/class-abstract-fields.php:341
5412
  msgid "Select Yes if you want to show the field data in single post."
5413
  msgstr ""
5414
 
5415
+ #: includes/fields/class-abstract-fields.php:345
5416
  msgid "Hide Field Label in Post"
5417
  msgstr ""
5418
 
5419
+ #: includes/fields/class-abstract-fields.php:355
5420
  msgid "Select Yes if you want to hide the field label in single post."
5421
  msgstr ""
5422
 
5423
+ #: includes/fields/class-abstract-fields.php:409
5424
  #: includes/fields/class-field-checkbox.php:71
5425
  #: includes/fields/class-field-radio.php:80
5426
  msgid "Show in inline list"
5427
  msgstr ""
5428
 
5429
+ #: includes/fields/class-abstract-fields.php:419
5430
  #: includes/fields/class-field-checkbox.php:81
5431
  #: includes/fields/class-field-radio.php:90
5432
  msgid "Show this option in an inline list"
5433
  msgstr ""
5434
 
5435
+ #: includes/fields/class-abstract-fields.php:468
5436
  msgid "Selection Terms"
5437
  msgstr ""
5438
 
5439
+ #: includes/fields/class-abstract-fields.php:472
5440
+ msgid "Search the terms name. use ⇦ ⇨ for navigate"
 
 
5441
  msgstr ""
5442
 
5443
  #: includes/fields/class-abstract-fields.php:507
5444
+ #: includes/fields/class-abstract-fields.php:581
5445
+ #: includes/fields/class-abstract-fields.php:689
5446
+ msgid "Content restricted by"
5447
+ msgstr ""
5448
+
5449
+ #: includes/fields/class-abstract-fields.php:510
5450
+ #: includes/fields/class-abstract-fields.php:584
5451
+ #: includes/fields/class-abstract-fields.php:692
5452
  msgid "Character"
5453
  msgstr ""
5454
 
5455
+ #: includes/fields/class-abstract-fields.php:511
5456
+ #: includes/fields/class-abstract-fields.php:585
5457
+ #: includes/fields/class-abstract-fields.php:693
5458
  msgid "Word"
5459
  msgstr ""
5460
 
5461
+ #: includes/fields/class-abstract-fields.php:525
5462
+ #: includes/fields/class-abstract-fields.php:599
5463
+ #: includes/fields/class-abstract-fields.php:707
5464
  msgid "Number of characters or words the author to be restricted in"
5465
  msgstr ""
5466
 
5467
+ #: includes/fields/class-abstract-fields.php:623
5468
  msgid "Add options for the form field"
5469
  msgstr ""
5470
 
5471
+ #: includes/fields/class-abstract-fields.php:640
5472
  msgid "Number of rows in textarea"
5473
  msgstr ""
5474
 
5475
+ #: includes/fields/class-abstract-fields.php:649
5476
  msgid "Number of columns in textarea"
5477
  msgstr ""
5478
 
5671
  msgid "Terms & Conditions"
5672
  msgstr ""
5673
 
5674
+ #: includes/fields/class-pro-upgrade-fields.php:193
5675
+ msgid "Math Captcha"
5676
+ msgstr ""
5677
+
5678
+ #: includes/fields/class-pro-upgrade-fields.php:205
5679
+ msgid "QR Code"
5680
+ msgstr ""
5681
+
5682
  #: includes/free/admin/shortcode-builder.php:5
5683
  msgid "Select a form to insert"
5684
  msgstr ""
lib/gateway/paypal.php CHANGED
@@ -308,16 +308,16 @@ class WPUF_Paypal {
308
 
309
  $postdata = $_POST;
310
  $type = $postdata['custom'];
311
- $item_number = $postdata['item_number'];
 
312
  $amount = $postdata['mc_gross'];
313
  $is_recurring = false;
314
- $post_id = 0;
315
- $pack_id = 0;
316
 
317
- $custom = json_decode( stripcslashes( $postdata['custom'] ) );
318
  $coupon_id = isset( $custom->coupon_id ) ? $custom->coupon_id : false;
319
 
320
- if ($postdata['period3']) {
321
  update_user_meta($custom->user_id, '_wpuf_used_trial', 'yes');
322
  }
323
 
308
 
309
  $postdata = $_POST;
310
  $type = $postdata['custom'];
311
+ $custom = json_decode( stripcslashes( $postdata['custom'] ) );
312
+ $item_number = ! empty( $postdata['item_number'] ) ? $postdata['item_number'] : 0;
313
  $amount = $postdata['mc_gross'];
314
  $is_recurring = false;
315
+ $post_id = $custom->type === 'post' ? $item_number : 0;
316
+ $pack_id = $custom->type === 'pack' ? $item_number : 0;
317
 
 
318
  $coupon_id = isset( $custom->coupon_id ) ? $custom->coupon_id : false;
319
 
320
+ if (! empty( $postdata['period3'] ) ) {
321
  update_user_meta($custom->user_id, '_wpuf_used_trial', 'yes');
322
  }
323
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Forms, registration, profile-builder, login, membership, frontend-post
5
  Requires at least: 4.0
6
  Tested up to: 5.6
7
  Requires PHP: 5.6
8
- Stable tag: 3.5.10
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.10 (18 December, 2020) =
267
  * Update - Added holiday promotional offer notice
268
 
5
  Requires at least: 4.0
6
  Tested up to: 5.6
7
  Requires PHP: 5.6
8
+ Stable tag: 3.5.11
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
263
 
264
  == Changelog ==
265
 
266
+ = v3.5.11 (12 January, 2021) =
267
+ * Fix - QR and math captcha added to pro feature list
268
+ * Fix - Tooltip for category navigate
269
+ * Fix - Understandable guest payment notice
270
+ * Fix - Paypal non recurring pack id does not set
271
+
272
  = v3.5.10 (18 December, 2020) =
273
  * Update - Added holiday promotional offer notice
274
 
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.10
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.10' );
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.11
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.11' );
16
  define( 'WPUF_FILE', __FILE__ );
17
  define( 'WPUF_ROOT', __DIR__ );
18
  define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );