Version Description
Download this release
Release Info
Developer | rabbii |
Plugin | WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress |
Version | 3.1.10 |
Comparing to | |
See all releases |
Code changes from version 3.1.9 to 3.1.10
- admin/class-admin-subscription.php +1 -1
- admin/html/whats-new.php +16 -0
- admin/template-post.php +1 -1
- assets/js/billing-address.js +25 -20
- class/frontend-account.php +6 -0
- class/payment.php +4 -1
- class/subscription.php +28 -11
- includes/class-billing-address.php +1 -0
- includes/class-frontend-form-post.php +3 -2
- includes/class-user-subscription.php +3 -3
- includes/fields/class-abstract-fields.php +1 -1
- includes/fields/class-field-recaptcha.php +3 -3
- languages/wp-user-frontend.pot +231 -209
- lib/gateway/paypal.php +1 -1
- readme.txt +6 -1
- templates/subscriptions/pack-details.php +1 -1
- wpuf.php +2 -2
admin/class-admin-subscription.php
CHANGED
@@ -773,7 +773,7 @@ class WPUF_Admin_Subscription {
|
|
773 |
do_action( 'wpuf_admin_subscription_content', $userdata->ID ) ?>
|
774 |
<?php if ( !empty( $user_sub ) ): ?>
|
775 |
<div class="wpuf-sub-actions">
|
776 |
-
<a class="btn button-secondary wpuf-delete-pack-btn" href="javascript:" data-userid="<?php echo $userdata->ID; ?>" data-packid="<?php echo $user_sub['pack_id']; ?>"><?php _e( 'Delete Package', 'wp-user-frontend' ); ?></a>
|
777 |
</div>
|
778 |
<?php endif; ?>
|
779 |
</div>
|
773 |
do_action( 'wpuf_admin_subscription_content', $userdata->ID ) ?>
|
774 |
<?php if ( !empty( $user_sub ) ): ?>
|
775 |
<div class="wpuf-sub-actions">
|
776 |
+
<a class="btn button-secondary wpuf-delete-pack-btn" href="javascript:" data-userid="<?php echo $userdata->ID; ?>" data-packid="<?php echo isset( $user_sub['pack_id'] ) ? $user_sub['pack_id'] : ''; ?>"><?php _e( 'Delete Package', 'wp-user-frontend' ); ?></a>
|
777 |
</div>
|
778 |
<?php endif; ?>
|
779 |
</div>
|
admin/html/whats-new.php
CHANGED
@@ -1,5 +1,21 @@
|
|
1 |
<?php
|
2 |
$changelog = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
array(
|
4 |
'version' => 'Version 3.1.2',
|
5 |
'released' => '2019-04-01',
|
1 |
<?php
|
2 |
$changelog = array(
|
3 |
+
array(
|
4 |
+
'version' => 'Version 3.1.10',
|
5 |
+
'released' => '2019-09-06',
|
6 |
+
'changes' => array(
|
7 |
+
array(
|
8 |
+
'title' => __( 'Post Owner problem', 'wp-user-frontend' ),
|
9 |
+
'type' => 'Fix',
|
10 |
+
'description' => __( 'Posts were not assigned to the selected default post owner, this issue has been fixed.', 'wp-user-frontend' ),
|
11 |
+
),
|
12 |
+
array(
|
13 |
+
'title' => __( 'Google reCaptcha was not working', 'wp-user-frontend' ),
|
14 |
+
'type' => 'Fix',
|
15 |
+
'description' => __( 'Google reCaptcha was not working, users could submit the form without reCaptcha validation.', 'wp-user-frontend' )
|
16 |
+
),
|
17 |
+
)
|
18 |
+
),
|
19 |
array(
|
20 |
'version' => 'Version 3.1.2',
|
21 |
'released' => '2019-04-01',
|
admin/template-post.php
CHANGED
@@ -191,7 +191,7 @@ class WPUF_Admin_Template_Post extends WPUF_Admin_Template {
|
|
191 |
|
192 |
<div class="wpuf-form-rows">
|
193 |
<label><?php _e( 'Selection terms', 'wp-user-frontend' ); ?></label>
|
194 |
-
<input type="text" class="smallipopInput" name="<?php echo $exclude_name; ?>" title="<?php _e( '
|
195 |
</div> <!-- .wpuf-form-rows -->
|
196 |
|
197 |
<div class="wpuf-form-rows">
|
191 |
|
192 |
<div class="wpuf-form-rows">
|
193 |
<label><?php _e( 'Selection terms', 'wp-user-frontend' ); ?></label>
|
194 |
+
<input type="text" class="smallipopInput" name="<?php echo $exclude_name; ?>" title="<?php _e( 'Search the terms name.', 'wp-user-frontend' ); ?>" value="<?php echo $exclude_value; ?>" />
|
195 |
</div> <!-- .wpuf-form-rows -->
|
196 |
|
197 |
<div class="wpuf-form-rows">
|
assets/js/billing-address.js
CHANGED
@@ -1,7 +1,31 @@
|
|
|
|
1 |
jQuery(function($){
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
$('#wpuf-payment-gateway').submit(function (e) {
|
4 |
-
wpuf_validate_address(e)
|
|
|
|
|
5 |
|
6 |
$('#wpuf-ajax-address-form').trigger('submit');
|
7 |
});
|
@@ -39,25 +63,6 @@ jQuery(function($){
|
|
39 |
|
40 |
var ajax_tax_count = 0;
|
41 |
|
42 |
-
function wpuf_validate_address(e) {
|
43 |
-
var country = $("td.bill_required").find('.wpuf_biiling_country, .input');
|
44 |
-
var state = $("td.bill_required").find('.wpuf_biiling_state, .input');
|
45 |
-
var add_1 = $("#wpuf_biiling_add_line_1");
|
46 |
-
var add_2 = $("#wpuf_biiling_add_line_2");
|
47 |
-
var city = $("#wpuf_biiling_city");
|
48 |
-
var zip = $("#wpuf_biiling_zip_code");
|
49 |
-
|
50 |
-
if ( ( country.val() === '' || state.val() === '' ) ||
|
51 |
-
( add_1.hasClass('bill_required') && add_1.val() === "" ) ||
|
52 |
-
( add_2.hasClass('bill_required') && add_2.val() === "" ) ||
|
53 |
-
( city.hasClass('bill_required') && city.val() === "" ) ||
|
54 |
-
( zip.hasClass('bill_required') && zip.val() === "" ) )
|
55 |
-
{
|
56 |
-
alert( ajax_object.fill_notice );
|
57 |
-
e.preventDefault();
|
58 |
-
}
|
59 |
-
}
|
60 |
-
|
61 |
function wpuf_calculate_tax() {
|
62 |
|
63 |
var $wpuf_cc_address = jQuery('#wpuf-address-country-state');
|
1 |
+
|
2 |
jQuery(function($){
|
3 |
|
4 |
+
window.wpuf_validate_address = function(e) {
|
5 |
+
var country = $("td.bill_required").find('.wpuf_biiling_country, .input');
|
6 |
+
var state = $("td.bill_required").find('.wpuf_biiling_state, .input');
|
7 |
+
var add_1 = $("#wpuf_biiling_add_line_1");
|
8 |
+
var add_2 = $("#wpuf_biiling_add_line_2");
|
9 |
+
var city = $("#wpuf_biiling_city");
|
10 |
+
var zip = $("#wpuf_biiling_zip_code");
|
11 |
+
var isValid = true;
|
12 |
+
|
13 |
+
if ( ( country.val() === '' || state.val() === '' ) ||
|
14 |
+
( add_1.hasClass('bill_required') && add_1.val() === "" ) ||
|
15 |
+
( add_2.hasClass('bill_required') && add_2.val() === "" ) ||
|
16 |
+
( city.hasClass('bill_required') && city.val() === "" ) ||
|
17 |
+
( zip.hasClass('bill_required') && zip.val() === "" ) )
|
18 |
+
{
|
19 |
+
e.preventDefault();
|
20 |
+
isValid = false;
|
21 |
+
}
|
22 |
+
return isValid;
|
23 |
+
}
|
24 |
+
|
25 |
$('#wpuf-payment-gateway').submit(function (e) {
|
26 |
+
if ( ! window.wpuf_validate_address(e) ) {
|
27 |
+
alert( ajax_object.fill_notice );
|
28 |
+
}
|
29 |
|
30 |
$('#wpuf-ajax-address-form').trigger('submit');
|
31 |
});
|
63 |
|
64 |
var ajax_tax_count = 0;
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
function wpuf_calculate_tax() {
|
67 |
|
68 |
var $wpuf_cc_address = jQuery('#wpuf-address-country-state');
|
class/frontend-account.php
CHANGED
@@ -233,6 +233,12 @@ class WPUF_Frontend_Account {
|
|
233 |
}
|
234 |
$user_subscription = new WPUF_User_Subscription( $wpuf_user );
|
235 |
$user_sub = $user_subscription->current_pack();
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
$pack = WPUF_Subscription::get_subscription( $sub_id );
|
237 |
|
238 |
$details_meta['payment_page'] = get_permalink( wpuf_get_option( 'payment_page', 'wpuf_payment' ) );
|
233 |
}
|
234 |
$user_subscription = new WPUF_User_Subscription( $wpuf_user );
|
235 |
$user_sub = $user_subscription->current_pack();
|
236 |
+
|
237 |
+
if ( $user_sub['status'] != "completed" ) {
|
238 |
+
_e( "<p>You may processed your payment, but the pack is not activated yet.</p>", 'wp-user-frontend' );
|
239 |
+
return;
|
240 |
+
}
|
241 |
+
|
242 |
$pack = WPUF_Subscription::get_subscription( $sub_id );
|
243 |
|
244 |
$details_meta['payment_page'] = get_permalink( wpuf_get_option( 'payment_page', 'wpuf_payment' ) );
|
class/payment.php
CHANGED
@@ -84,7 +84,9 @@ class WPUF_Payment {
|
|
84 |
$is_free = false;
|
85 |
|
86 |
if ( $pack_id ) {
|
87 |
-
$pack_detail
|
|
|
|
|
88 |
if ( empty( $pack_detail->meta_value['billing_amount'] ) || $pack_detail->meta_value['billing_amount'] <= 0) {
|
89 |
$is_free = true;
|
90 |
}
|
@@ -272,6 +274,7 @@ class WPUF_Payment {
|
|
272 |
|
273 |
<?php if ( $pack_id ) { ?>
|
274 |
<input type="hidden" name="pack_id" value="<?php echo $pack_id; ?>" />
|
|
|
275 |
<?php } ?>
|
276 |
<input type="submit" name="wpuf_payment_submit" class="wpuf-btn" value="<?php _e( 'Proceed', 'wp-user-frontend' ); ?>"/>
|
277 |
</p>
|
84 |
$is_free = false;
|
85 |
|
86 |
if ( $pack_id ) {
|
87 |
+
$pack_detail = WPUF_Subscription::get_subscription( $pack_id );
|
88 |
+
$recurring_pay = isset( $pack_detail->meta_value['recurring_pay'] ) ? $pack_detail->meta_value['recurring_pay'] : 'no';
|
89 |
+
|
90 |
if ( empty( $pack_detail->meta_value['billing_amount'] ) || $pack_detail->meta_value['billing_amount'] <= 0) {
|
91 |
$is_free = true;
|
92 |
}
|
274 |
|
275 |
<?php if ( $pack_id ) { ?>
|
276 |
<input type="hidden" name="pack_id" value="<?php echo $pack_id; ?>" />
|
277 |
+
<input type="hidden" name="recurring_pay" value="<?php echo $recurring_pay; ?>" />
|
278 |
<?php } ?>
|
279 |
<input type="submit" name="wpuf_payment_submit" class="wpuf-btn" value="<?php _e( 'Proceed', 'wp-user-frontend' ); ?>"/>
|
280 |
</p>
|
class/subscription.php
CHANGED
@@ -755,7 +755,12 @@ class WPUF_Subscription {
|
|
755 |
|
756 |
$current_pack = self::get_user_pack( get_current_user_id() );
|
757 |
|
758 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
759 |
global $wpdb;
|
760 |
|
761 |
$user_id = get_current_user_id();
|
@@ -834,6 +839,17 @@ class WPUF_Subscription {
|
|
834 |
$price_with_tax = wpuf_prices_include_tax();
|
835 |
}
|
836 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
$billing_amount = ( $pack->meta_value['billing_amount'] >= 0 && !empty( $pack->meta_value['billing_amount'] ) ) ? $pack->meta_value['billing_amount'] : '0.00';
|
838 |
$trial_des = '';
|
839 |
$recurring_des = '<div class="wpuf-pack-cycle wpuf-nullamount-hide">' . __( 'One time payment', 'wp-user-frontend' ) . '</div>';
|
@@ -881,16 +897,17 @@ class WPUF_Subscription {
|
|
881 |
}
|
882 |
|
883 |
wpuf_load_template( 'subscriptions/pack-details.php', apply_filters( 'wpuf_subscription_pack_details_args', array(
|
884 |
-
'pack'
|
885 |
-
'billing_amount'
|
886 |
-
'details_meta'
|
887 |
-
'recurring_des'
|
888 |
-
'trial_des'
|
889 |
-
'coupon_status'
|
890 |
-
'current_pack_id'
|
891 |
-
'
|
892 |
-
'
|
893 |
-
'
|
|
|
894 |
) ) );
|
895 |
}
|
896 |
|
755 |
|
756 |
$current_pack = self::get_user_pack( get_current_user_id() );
|
757 |
|
758 |
+
if (
|
759 |
+
isset( $current_pack['pack_id'] ) &&
|
760 |
+
!empty( $current_pack['pack_id'] ) &&
|
761 |
+
isset( $current_pack['status'] ) &&
|
762 |
+
$current_pack['status'] == 'completed'
|
763 |
+
) {
|
764 |
global $wpdb;
|
765 |
|
766 |
$user_id = get_current_user_id();
|
839 |
$price_with_tax = wpuf_prices_include_tax();
|
840 |
}
|
841 |
|
842 |
+
$user_id = get_current_user_id();
|
843 |
+
|
844 |
+
if ( $user_id != 0 ) {
|
845 |
+
$user_pack_meta = '_wpuf_subscription_pack';
|
846 |
+
$pack_details = get_user_meta( $user_id, $user_pack_meta, true);
|
847 |
+
|
848 |
+
if ( !empty( $pack_details ) ) {
|
849 |
+
$current_pack_status = isset( $pack_details['status'] ) ? $pack_details['status'] : '';
|
850 |
+
}
|
851 |
+
}
|
852 |
+
|
853 |
$billing_amount = ( $pack->meta_value['billing_amount'] >= 0 && !empty( $pack->meta_value['billing_amount'] ) ) ? $pack->meta_value['billing_amount'] : '0.00';
|
854 |
$trial_des = '';
|
855 |
$recurring_des = '<div class="wpuf-pack-cycle wpuf-nullamount-hide">' . __( 'One time payment', 'wp-user-frontend' ) . '</div>';
|
897 |
}
|
898 |
|
899 |
wpuf_load_template( 'subscriptions/pack-details.php', apply_filters( 'wpuf_subscription_pack_details_args', array(
|
900 |
+
'pack' => $pack,
|
901 |
+
'billing_amount' => $billing_amount,
|
902 |
+
'details_meta' => $details_meta,
|
903 |
+
'recurring_des' => $recurring_des,
|
904 |
+
'trial_des' => $trial_des,
|
905 |
+
'coupon_status' => $coupon_status,
|
906 |
+
'current_pack_id' => $current_pack_id,
|
907 |
+
'current_pack_status' => isset( $current_pack_status ) ? $current_pack_status : '',
|
908 |
+
'button_name' => $button_name,
|
909 |
+
'query_args' => $query_args,
|
910 |
+
'query_url' => $query_url,
|
911 |
) ) );
|
912 |
}
|
913 |
|
includes/class-billing-address.php
CHANGED
@@ -10,6 +10,7 @@ class WPUF_Ajax_Address_Form {
|
|
10 |
public function __construct() {
|
11 |
add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_scripts' ) );
|
12 |
add_action( 'wp_ajax_wpuf_address_ajax_action', array( $this, 'ajax_form_action' ), 10, 1 );
|
|
|
13 |
}
|
14 |
|
15 |
/**
|
10 |
public function __construct() {
|
11 |
add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_scripts' ) );
|
12 |
add_action( 'wp_ajax_wpuf_address_ajax_action', array( $this, 'ajax_form_action' ), 10, 1 );
|
13 |
+
add_action( 'wp_ajax_nopriv_wpuf_address_ajax_action', array( $this, 'ajax_form_action' ), 10, 1 );
|
14 |
}
|
15 |
|
16 |
/**
|
includes/class-frontend-form-post.php
CHANGED
@@ -474,6 +474,7 @@ class WPUF_Frontend_Form extends WPUF_Frontend_Render_Form{
|
|
474 |
|
475 |
|
476 |
public function wpuf_get_post_user() {
|
|
|
477 |
|
478 |
if ( !is_user_logged_in() ) {
|
479 |
|
@@ -538,7 +539,7 @@ class WPUF_Frontend_Form extends WPUF_Frontend_Render_Form{
|
|
538 |
|
539 |
}
|
540 |
|
541 |
-
|
542 |
} elseif ( isset( $this->form_settings['guest_post'] ) && $this->form_settings['guest_post'] == 'true' && $this->form_settings['guest_details'] == 'false' ) {
|
543 |
$post_author = $default_post_author;
|
544 |
} elseif ( isset( $this->form_settings['guest_post'] ) && $this->form_settings['guest_post'] != 'true' ) {
|
@@ -962,7 +963,7 @@ class WPUF_Frontend_Form extends WPUF_Frontend_Render_Form{
|
|
962 |
$subject = wp_strip_all_tags( $subject );
|
963 |
$mail_body = get_formatted_mail_body( $mail_body, $subject );
|
964 |
|
965 |
-
wp_mail( $to, $subject, $mail_body
|
966 |
}
|
967 |
|
968 |
//redirect the user
|
474 |
|
475 |
|
476 |
public function wpuf_get_post_user() {
|
477 |
+
$default_post_author = wpuf_get_option( 'default_post_owner', 'wpuf_frontend_posting', 1 );
|
478 |
|
479 |
if ( !is_user_logged_in() ) {
|
480 |
|
539 |
|
540 |
}
|
541 |
|
542 |
+
// guest post is enabled and details are off
|
543 |
} elseif ( isset( $this->form_settings['guest_post'] ) && $this->form_settings['guest_post'] == 'true' && $this->form_settings['guest_details'] == 'false' ) {
|
544 |
$post_author = $default_post_author;
|
545 |
} elseif ( isset( $this->form_settings['guest_post'] ) && $this->form_settings['guest_post'] != 'true' ) {
|
963 |
$subject = wp_strip_all_tags( $subject );
|
964 |
$mail_body = get_formatted_mail_body( $mail_body, $subject );
|
965 |
|
966 |
+
wp_mail( $to, $subject, $mail_body );
|
967 |
}
|
968 |
|
969 |
//redirect the user
|
includes/class-user-subscription.php
CHANGED
@@ -209,7 +209,7 @@ class WPUF_User_Subscription {
|
|
209 |
|
210 |
if ( ! $this->is_free_pack( $pack_id ) ) {
|
211 |
$sql = $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "wpuf_transaction
|
212 |
-
WHERE user_id = %d AND pack_id = %d LIMIT 1", $this->user->id, $pack_id );
|
213 |
|
214 |
$result = $wpdb->get_row( $sql );
|
215 |
}
|
@@ -220,8 +220,8 @@ class WPUF_User_Subscription {
|
|
220 |
'name' => $this->user->user->data->display_name,
|
221 |
'subscribtion_id' => $pack_id,
|
222 |
'subscribtion_status' => $status,
|
223 |
-
'gateway' => isset( $result->payment_type ) ?
|
224 |
-
'transaction_id' => isset( $result->transaction_id ) ?
|
225 |
'starts_from' => date( 'd-m-Y' ),
|
226 |
'expire' => $user_meta['expire'] == '' ? 'recurring' : $user_meta['expire'],
|
227 |
);
|
209 |
|
210 |
if ( ! $this->is_free_pack( $pack_id ) ) {
|
211 |
$sql = $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "wpuf_transaction
|
212 |
+
WHERE user_id = %d AND pack_id = %d ORDER BY id DESC LIMIT 1", $this->user->id, $pack_id );
|
213 |
|
214 |
$result = $wpdb->get_row( $sql );
|
215 |
}
|
220 |
'name' => $this->user->user->data->display_name,
|
221 |
'subscribtion_id' => $pack_id,
|
222 |
'subscribtion_status' => $status,
|
223 |
+
'gateway' => isset( $result->payment_type ) ? $result->payment_type : 'bank',
|
224 |
+
'transaction_id' => isset( $result->transaction_id ) ? $result->transaction_id : 'NA',
|
225 |
'starts_from' => date( 'd-m-Y' ),
|
226 |
'expire' => $user_meta['expire'] == '' ? 'recurring' : $user_meta['expire'],
|
227 |
);
|
includes/fields/class-abstract-fields.php
CHANGED
@@ -483,7 +483,7 @@ abstract class WPUF_Field_Contract {
|
|
483 |
'type' => 'multiselect',
|
484 |
'section' => 'advanced',
|
485 |
'priority' => 27,
|
486 |
-
'help_text' => __( '
|
487 |
'options' => wpuf_get_terms( $tax_name ),
|
488 |
),
|
489 |
|
483 |
'type' => 'multiselect',
|
484 |
'section' => 'advanced',
|
485 |
'priority' => 27,
|
486 |
+
'help_text' => __( 'Search the terms name.', 'wp-user-frontend' ),
|
487 |
'options' => wpuf_get_terms( $tax_name ),
|
488 |
),
|
489 |
|
includes/fields/class-field-recaptcha.php
CHANGED
@@ -61,12 +61,12 @@ class WPUF_Form_Field_reCaptcha extends WPUF_Field_Contract {
|
|
61 |
<script>
|
62 |
function weformsRecaptchaCallback(token) {
|
63 |
jQuery('[name="g-recaptcha-response"]').val(token);
|
64 |
-
jQuery('.
|
65 |
jQuery('.weforms_submit_btn_recaptcha').hide();
|
66 |
}
|
67 |
|
68 |
jQuery(document).ready( function($) {
|
69 |
-
$('.
|
70 |
});
|
71 |
</script>
|
72 |
|
@@ -80,7 +80,7 @@ class WPUF_Form_Field_reCaptcha extends WPUF_Field_Contract {
|
|
80 |
<script>
|
81 |
|
82 |
jQuery(document).ready(function($) {
|
83 |
-
var btn = $('.
|
84 |
var gc_btn = btn.clone().removeClass().addClass('weforms_submit_btn_recaptcha').attr('disabled',false);
|
85 |
btn.after(gc_btn);
|
86 |
btn.hide();
|
61 |
<script>
|
62 |
function weformsRecaptchaCallback(token) {
|
63 |
jQuery('[name="g-recaptcha-response"]').val(token);
|
64 |
+
jQuery('.wpuf-submit-button').attr('disabled',false).show();
|
65 |
jQuery('.weforms_submit_btn_recaptcha').hide();
|
66 |
}
|
67 |
|
68 |
jQuery(document).ready( function($) {
|
69 |
+
$('.wpuf-submit-button').attr('disabled',true);
|
70 |
});
|
71 |
</script>
|
72 |
|
80 |
<script>
|
81 |
|
82 |
jQuery(document).ready(function($) {
|
83 |
+
var btn = $('.wpuf-submit-button');
|
84 |
var gc_btn = btn.clone().removeClass().addClass('weforms_submit_btn_recaptcha').attr('disabled',false);
|
85 |
btn.after(gc_btn);
|
86 |
btn.hide();
|
languages/wp-user-frontend.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP User Frontend 3.1.
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -141,8 +141,8 @@ msgid "Duration"
|
|
141 |
msgstr ""
|
142 |
|
143 |
#: admin/class-admin-subscription.php:216
|
144 |
-
#: admin/class-admin-subscription.php:570 class/frontend-account.php:
|
145 |
-
#: class/subscription.php:
|
146 |
#: templates/subscriptions/pack-details.php:25
|
147 |
msgid "Free"
|
148 |
msgstr ""
|
@@ -256,11 +256,11 @@ msgstr ""
|
|
256 |
msgid "WPUF Subscription Information"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/class-admin-subscription.php:574 class/frontend-account.php:
|
260 |
msgid "For each %s %s"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin/class-admin-subscription.php:575 class/frontend-account.php:
|
264 |
msgid ", for %s installments"
|
265 |
msgstr ""
|
266 |
|
@@ -304,7 +304,7 @@ msgstr ""
|
|
304 |
|
305 |
#: admin/class-admin-subscription.php:754
|
306 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:266
|
307 |
-
#: class/payment.php:
|
308 |
#: includes/class-list-table-subscribers.php:128 lib/appsero/Insights.php:751
|
309 |
#: templates/dashboard/subscription.php:61
|
310 |
msgid "Cancel"
|
@@ -1381,105 +1381,125 @@ msgid "Contact Support"
|
|
1381 |
msgstr ""
|
1382 |
|
1383 |
#: admin/html/whats-new.php:8
|
1384 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1385 |
msgstr ""
|
1386 |
|
1387 |
#: admin/html/whats-new.php:13
|
1388 |
-
msgid "
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: admin/html/whats-new.php:15
|
1392 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1393 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
1394 |
"get it fixed in this version."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: admin/html/whats-new.php:
|
1398 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: admin/html/whats-new.php:
|
1402 |
msgid ""
|
1403 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
1404 |
"fixed."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: admin/html/whats-new.php:
|
1408 |
msgid "Text input field for taxonomies not working"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: admin/html/whats-new.php:
|
1412 |
msgid ""
|
1413 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
1414 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: admin/html/whats-new.php:
|
1418 |
msgid ""
|
1419 |
"In radio and checkbox field use conditional logic that value does not save "
|
1420 |
"in database"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: admin/html/whats-new.php:
|
1424 |
msgid ""
|
1425 |
"The selected value of radio and checkbox field were not showing while "
|
1426 |
"editing posts from the backend or frontend, you can see the selected value "
|
1427 |
"in this version."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: admin/html/whats-new.php:
|
1431 |
msgid "The args param not working with get_avatar filter"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: admin/html/whats-new.php:
|
1435 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: admin/html/whats-new.php:
|
1439 |
msgid "The item in ajax taxonomy field was not selected"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: admin/html/whats-new.php:
|
1443 |
msgid ""
|
1444 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
1445 |
"showing in the backend and frontend which have been fixed."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: admin/html/whats-new.php:
|
1449 |
msgid "Unable to send new user registration email"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: admin/html/whats-new.php:
|
1453 |
msgid ""
|
1454 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
1455 |
"to send the new user registration email."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: admin/html/whats-new.php:
|
1459 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: admin/html/whats-new.php:
|
1463 |
msgid ""
|
1464 |
"With the latest version of WordPress the gutenberg block of WP User "
|
1465 |
"Frontend were not working. In this version, you will get it fixed."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: admin/html/whats-new.php:
|
1469 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: admin/html/whats-new.php:
|
1473 |
msgid ""
|
1474 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
1475 |
"[wpuf dashboard]"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: admin/html/whats-new.php:
|
1479 |
msgid "Retain default when determining whether to display the admin bar"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: admin/html/whats-new.php:
|
1483 |
msgid ""
|
1484 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
1485 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
@@ -1489,11 +1509,11 @@ msgid ""
|
|
1489 |
"frontend."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: admin/html/whats-new.php:
|
1493 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: admin/html/whats-new.php:
|
1497 |
msgid ""
|
1498 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
1499 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
@@ -1501,42 +1521,42 @@ msgid ""
|
|
1501 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: admin/html/whats-new.php:
|
1505 |
msgid "Product form was unable to show the single gallery image"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: admin/html/whats-new.php:
|
1509 |
msgid ""
|
1510 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
1511 |
"product form, that image were not showing on the frontend."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: admin/html/whats-new.php:
|
1515 |
msgid "WooCommerce gallery images not getting saved"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: admin/html/whats-new.php:
|
1519 |
msgid ""
|
1520 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
1521 |
"working. You will get it fixed in this version."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: admin/html/whats-new.php:
|
1525 |
msgid "The Events Calendar Integration Form"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: admin/html/whats-new.php:
|
1529 |
msgid ""
|
1530 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
1531 |
"has a one click pre-build event form that has been integrated with The "
|
1532 |
"Events Calendar plugin"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: admin/html/whats-new.php:
|
1536 |
msgid "Post Submission Facility From Account Page"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: admin/html/whats-new.php:
|
1540 |
msgid ""
|
1541 |
"On the frontend account page, added a new menu item named <b>Submit "
|
1542 |
"Post</b>. Now admin can allow users to submit post from their default "
|
@@ -1545,504 +1565,504 @@ msgid ""
|
|
1545 |
"you can assign any post form that will use to submit posts."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: admin/html/whats-new.php:
|
1549 |
msgid "Login/Lost Password Link Under Registration Form"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: admin/html/whats-new.php:
|
1553 |
msgid "Added Login/Lost Password link under registration form"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: admin/html/whats-new.php:
|
1557 |
msgid "Added drag and drop image ordering on image upload"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: admin/html/whats-new.php:
|
1561 |
msgid ""
|
1562 |
"Now frontend users can drag & drop the images/files to change the order "
|
1563 |
"while uploading."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: admin/html/whats-new.php:
|
1567 |
msgid "Added reCAPTCHA field in login form"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: admin/html/whats-new.php:
|
1571 |
msgid ""
|
1572 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
1573 |
"related settings from <strong>User Frontend > Settings > "
|
1574 |
"Login/Registration</strong>"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: admin/html/whats-new.php:
|
1578 |
msgid "Added preview option in forms"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: admin/html/whats-new.php:
|
1582 |
msgid ""
|
1583 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
1584 |
"Form</strong> button, admin can take a quick look of the form without using "
|
1585 |
"shortcode"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: admin/html/whats-new.php:
|
1589 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: admin/html/whats-new.php:
|
1593 |
msgid ""
|
1594 |
"The upload button will not be hidden until the user selects max number of "
|
1595 |
"files "
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: admin/html/whats-new.php:
|
1599 |
msgid "Added form limit notice before form submission"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: admin/html/whats-new.php:
|
1603 |
msgid ""
|
1604 |
"Limit notice message was showing after submission, now it is showing when "
|
1605 |
"rendering the form"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: admin/html/whats-new.php:
|
1609 |
msgid "Fixed: default post category not saving"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: admin/html/whats-new.php:
|
1613 |
msgid ""
|
1614 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
1615 |
"category options were not saving. Now, it's fixed."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: admin/html/whats-new.php:
|
1619 |
msgid ""
|
1620 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
1621 |
"properly"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: admin/html/whats-new.php:
|
1625 |
msgid ""
|
1626 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
1627 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: admin/html/whats-new.php:
|
1631 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: admin/html/whats-new.php:
|
1635 |
msgid ""
|
1636 |
"If you are using other language than English. Please <b>rename</b> your "
|
1637 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
1638 |
"change was made to support translations from translate.wordpress.org"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: admin/html/whats-new.php:
|
1642 |
msgid "Added WP User Frontend Data export and erase functionality."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: admin/html/whats-new.php:
|
1646 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: admin/html/whats-new.php:
|
1650 |
msgid "Added billing address customizer."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: admin/html/whats-new.php:
|
1654 |
msgid "Added customizer options for billing address in payment page."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: admin/html/whats-new.php:
|
1658 |
msgid "Make the payment page responsive."
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: admin/html/whats-new.php:
|
1662 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: admin/html/whats-new.php:
|
1666 |
msgid "Fixed image upload issue in Safari."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: admin/html/whats-new.php:
|
1670 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: admin/html/whats-new.php:
|
1674 |
msgid "Post update issue after updating or removing post images."
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: admin/html/whats-new.php:
|
1678 |
msgid ""
|
1679 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
1680 |
"now."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: admin/html/whats-new.php:
|
1684 |
msgid "Allow overriding form input styles using theme styling."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: admin/html/whats-new.php:
|
1688 |
msgid "Overriding form input styles using theme style is now possible."
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: admin/html/whats-new.php:
|
1692 |
msgid "Fixed Auto Login after registration."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: admin/html/whats-new.php:
|
1696 |
msgid "Auto Login after registration was not working is fixed now."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: admin/html/whats-new.php:
|
1700 |
msgid "Fixed fallback cost calculation"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: admin/html/whats-new.php:
|
1704 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: admin/html/whats-new.php:
|
1708 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: admin/html/whats-new.php:
|
1712 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: admin/html/whats-new.php:
|
1716 |
msgid "Show Free pack users in subscribers list."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: admin/html/whats-new.php:
|
1720 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: admin/html/whats-new.php:
|
1724 |
msgid "WP User Frontend Guten Block is added"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: admin/html/whats-new.php:
|
1728 |
msgid ""
|
1729 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
1730 |
"preview of the form. "
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: admin/html/whats-new.php:
|
1734 |
msgid "Advanced Custom Fields plugin compatibility"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: admin/html/whats-new.php:
|
1738 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: admin/html/whats-new.php:
|
1742 |
msgid "Taxonomy Terms not showing for custom post types"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: admin/html/whats-new.php:
|
1746 |
msgid ""
|
1747 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
1748 |
"within Form Settings and Dashboard Post Listing"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: admin/html/whats-new.php:
|
1752 |
msgid "Various other code optimizations"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: admin/html/whats-new.php:
|
1756 |
msgid "Code structure organization and optimization for better performance"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: admin/html/whats-new.php:
|
1760 |
msgid "WoooCommerce billing address Sync"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: admin/html/whats-new.php:
|
1764 |
msgid ""
|
1765 |
"If an existing customer has previously set his billing address, that will "
|
1766 |
"be imported into WPUF Billing address "
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: admin/html/whats-new.php:
|
1770 |
msgid "Trial subscription message not showing properly"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: admin/html/whats-new.php:
|
1774 |
msgid "Subscriptions with Trial now shows trial notices"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: admin/html/whats-new.php:
|
1778 |
msgid "Reset email Key not working"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: admin/html/whats-new.php:
|
1782 |
msgid "Reset Email key was not working in some cases"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: admin/html/whats-new.php:
|
1786 |
msgid "Post count not showing on the frontend dashboard"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: admin/html/whats-new.php:
|
1790 |
msgid ""
|
1791 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
1792 |
"now fixed and shows count for each post type"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: admin/html/whats-new.php:
|
1796 |
msgid "Login Redirect showing blank page is fixed"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: admin/html/whats-new.php:
|
1800 |
msgid ""
|
1801 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
1802 |
"redirecting to blank page for users who hit login page directly"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: admin/html/whats-new.php:
|
1806 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: admin/html/whats-new.php:
|
1810 |
msgid ""
|
1811 |
"You can choose Previous Page as Login Redirect page settings now to "
|
1812 |
"redirect users to the page from which they went for Login. "
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: admin/html/whats-new.php:
|
1816 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: admin/html/whats-new.php:
|
1820 |
msgid ""
|
1821 |
"For some clients emails were not rendering the HTML links properly, this is "
|
1822 |
"now fixed"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: admin/html/whats-new.php:
|
1826 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: admin/html/whats-new.php:
|
1830 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: admin/html/whats-new.php:
|
1834 |
msgid "Various other code improvements"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: admin/html/whats-new.php:
|
1838 |
msgid "Dashboard Post Listing now supports multiple post types"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: admin/html/whats-new.php:
|
1842 |
msgid ""
|
1843 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
1844 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: admin/html/whats-new.php:
|
1848 |
msgid "Added Login Redirect Settings"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: admin/html/whats-new.php:
|
1852 |
msgid ""
|
1853 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
1854 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
1855 |
"redirected to this page after login."
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: admin/html/whats-new.php:
|
1859 |
msgid "Image Upload field button text can be changed"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: admin/html/whats-new.php:
|
1863 |
msgid ""
|
1864 |
"The upload button text can now be changed for image upload fields which "
|
1865 |
"defaults to \"Select Image\" if not set. "
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: admin/html/whats-new.php:
|
1869 |
msgid "Multi Step Form styles made compatible with more themes"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: admin/html/whats-new.php:
|
1873 |
msgid "Multi Step form can now be styled more easily with other themes "
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: admin/html/whats-new.php:
|
1877 |
msgid "Required field condition for google map not working is fixed"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: admin/html/whats-new.php:
|
1881 |
msgid ""
|
1882 |
"If Google Map field was set as required users were able to submit form "
|
1883 |
"without changing the default value."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: admin/html/whats-new.php:
|
1887 |
msgid "Admin form builder is now fully responsive."
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: admin/html/whats-new.php:
|
1891 |
msgid ""
|
1892 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
1893 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
1894 |
"the go."
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: admin/html/whats-new.php:
|
1898 |
msgid "Added color schemes for creating attractive form layouts."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: admin/html/whats-new.php:
|
1902 |
msgid ""
|
1903 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
1904 |
"from each form's new display settings."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: admin/html/whats-new.php:
|
1908 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: admin/html/whats-new.php:
|
1912 |
msgid ""
|
1913 |
"Free subscription packs now can only be purchased once and the limit "
|
1914 |
"applies properly"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: admin/html/whats-new.php:
|
1918 |
msgid "Various other bug fixes and improvements were made "
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: admin/html/whats-new.php:
|
1922 |
msgid "Please see the change log to see full details."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: admin/html/whats-new.php:
|
1926 |
msgid "Added upgrade function for default category"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: admin/html/whats-new.php:
|
1930 |
msgid "Upgrader added to upgrade previously set default post category."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: admin/html/whats-new.php:
|
1934 |
msgid "Subscription pack cannot be canceled"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: admin/html/whats-new.php:
|
1938 |
msgid ""
|
1939 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
1940 |
"in subscription details section."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: admin/html/whats-new.php:
|
1944 |
msgid "page installer admin notice logic issue"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: admin/html/whats-new.php:
|
1948 |
msgid ""
|
1949 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
1950 |
"default value not set."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: admin/html/whats-new.php:
|
1954 |
msgid "Setup Wizard"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: admin/html/whats-new.php:
|
1958 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: admin/html/whats-new.php:
|
1962 |
msgid "Multi-select Category"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: admin/html/whats-new.php:
|
1966 |
msgid "Add multi-select to default category in post form settings."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: admin/html/whats-new.php:
|
1970 |
msgid "Select Text option for Taxonomy"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: admin/html/whats-new.php:
|
1974 |
msgid ""
|
1975 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
1976 |
"with empty value as first option for Taxonomy dropdown."
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: admin/html/whats-new.php:
|
1980 |
msgid "Taxonomy Checkbox Inline"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: admin/html/whats-new.php:
|
1984 |
msgid ""
|
1985 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
1986 |
"Taxonomy checkbox fields inline."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: admin/html/whats-new.php:
|
1990 |
msgid "Manage schedule for form submission"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: admin/html/whats-new.php:
|
1994 |
msgid ""
|
1995 |
"Do not accept form submission if the current date is not between the date "
|
1996 |
"range of the schedule."
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: admin/html/whats-new.php:
|
2000 |
msgid "Restrict form submission based on the user roles"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: admin/html/whats-new.php:
|
2004 |
msgid ""
|
2005 |
"Restrict form submission based on the user roles. Now you can manage user "
|
2006 |
"role base permission on form submission."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: admin/html/whats-new.php:
|
2010 |
msgid "Limit how many entries a form will accept"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: admin/html/whats-new.php:
|
2014 |
msgid ""
|
2015 |
"Limit how many entries a form will accept and display a custom message when "
|
2016 |
"that limit is reached."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: admin/html/whats-new.php:
|
2020 |
msgid "Show/hide Admin Bar"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: admin/html/whats-new.php:
|
2024 |
msgid "Control the admin bar visibility based on user roles."
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: admin/html/whats-new.php:
|
2028 |
msgid "Ajax Login widget"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: admin/html/whats-new.php:
|
2032 |
msgid ""
|
2033 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
2034 |
"form do not required page loading for login."
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: admin/html/whats-new.php:
|
2038 |
msgid "Form submission with Captcha field"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: admin/html/whats-new.php:
|
2042 |
msgid "Form field validation process updated if form submits with captcha field."
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: admin/html/whats-new.php:
|
2046 |
msgid "What's New in WPUF?"
|
2047 |
msgstr ""
|
2048 |
|
@@ -3122,9 +3142,7 @@ msgid "Selection terms"
|
|
3122 |
msgstr ""
|
3123 |
|
3124 |
#: admin/template-post.php:194 includes/fields/class-abstract-fields.php:486
|
3125 |
-
msgid ""
|
3126 |
-
"Enter the term IDs as comma separated (without space) to exclude/include in "
|
3127 |
-
"the form."
|
3128 |
msgstr ""
|
3129 |
|
3130 |
#: admin/template-post.php:198
|
@@ -3450,47 +3468,51 @@ msgstr ""
|
|
3450 |
msgid "<p>You are not subscribed to any package yet.</p>"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: class/frontend-account.php:
|
|
|
|
|
|
|
|
|
3454 |
msgid "Nonce failure"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: class/frontend-account.php:
|
3458 |
msgid "First Name is a required field."
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: class/frontend-account.php:
|
3462 |
msgid "Last Name is a required field."
|
3463 |
msgstr ""
|
3464 |
|
3465 |
-
#: class/frontend-account.php:
|
3466 |
msgid "Email is a required field."
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#: class/frontend-account.php:
|
3470 |
msgid "Please provide a valid email address."
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#: class/frontend-account.php:
|
3474 |
msgid "This email address is already registered."
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#: class/frontend-account.php:
|
3478 |
msgid "Please fill out all password fields."
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: class/frontend-account.php:
|
3482 |
msgid "Please enter your current password."
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: class/frontend-account.php:
|
3486 |
msgid "Please re-enter your password."
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: class/frontend-account.php:
|
3490 |
msgid "New passwords do not match."
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: class/frontend-account.php:
|
3494 |
msgid "Your current password is incorrect."
|
3495 |
msgstr ""
|
3496 |
|
@@ -3559,11 +3581,11 @@ msgstr ""
|
|
3559 |
msgid "Empty reCaptcha Field"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: class/frontend-form-post.php:335 includes/class-frontend-form-post.php:
|
3563 |
msgid "Invalid email address."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: class/frontend-form-post.php:344 includes/class-frontend-form-post.php:
|
3567 |
msgid ""
|
3568 |
"You already have an account in our site. Please login to continue.\n"
|
3569 |
"\n"
|
@@ -3572,13 +3594,13 @@ msgid ""
|
|
3572 |
"Click 'Cancel' to stay at this page."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: class/frontend-form-post.php:393 includes/class-frontend-form-post.php:
|
3576 |
msgid "You do not have sufficient permissions to access this form."
|
3577 |
msgstr ""
|
3578 |
|
3579 |
#: class/frontend-form-post.php:732 class/frontend-form-post.php:739
|
3580 |
-
#: includes/class-frontend-form-post.php:
|
3581 |
-
#: includes/class-frontend-form-post.php:
|
3582 |
msgid ""
|
3583 |
"Thank you for posting on our site. We have sent you an confirmation email. "
|
3584 |
"Please check your inbox!"
|
@@ -3588,7 +3610,7 @@ msgstr ""
|
|
3588 |
msgid "Something went wrong"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: class/frontend-form-post.php:1170 includes/class-frontend-form-post.php:
|
3592 |
msgid "Email successfully verified. Please Login."
|
3593 |
msgstr ""
|
3594 |
|
@@ -3604,68 +3626,68 @@ msgstr ""
|
|
3604 |
msgid "Please select your payment page from admin panel"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: class/payment.php:
|
3608 |
msgid "Your free package has been activated. Enjoy!"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: class/payment.php:
|
3612 |
msgid "You already have activated a free package previously."
|
3613 |
msgstr ""
|
3614 |
|
3615 |
-
#: class/payment.php:
|
3616 |
#: wpuf-functions.php:1703
|
3617 |
msgid "Billing Address"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: class/payment.php:
|
3621 |
msgid "Pricing & Plans"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: class/payment.php:
|
3625 |
msgid "Change Pack"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: class/payment.php:
|
3629 |
msgid "Selected Pack "
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: class/payment.php:
|
3633 |
msgid "Pack Price "
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: class/payment.php:
|
3637 |
msgid "Total"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: class/payment.php:
|
3641 |
msgid "Apply Coupon"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: class/payment.php:
|
3645 |
msgid "Have a discount code?"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: class/payment.php:
|
3649 |
msgid "Post cost"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: class/payment.php:
|
3653 |
msgid "Choose Your Payment Method"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: class/payment.php:
|
3657 |
msgid "Proceed"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: class/payment.php:
|
3661 |
msgid "No Payment gateway found"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: class/payment.php:
|
3665 |
msgid "[%s] Payment Received"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: class/payment.php:
|
3669 |
msgid "New payment received at %s"
|
3670 |
msgstr ""
|
3671 |
|
@@ -3855,81 +3877,81 @@ msgstr ""
|
|
3855 |
msgid "Please buy a subscription pack to post"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: class/subscription.php:
|
3859 |
msgid "<p><i>You have a subscription pack activated. </i></p>"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: class/subscription.php:
|
3863 |
msgid "<p><i>Pack name: %s </i></p>"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: class/subscription.php:
|
3867 |
msgid "<p><i>To cancel the pack, press the following cancel button</i></p>"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: class/subscription.php:
|
3871 |
msgid "Day"
|
3872 |
msgid_plural "Days"
|
3873 |
msgstr[0] ""
|
3874 |
msgstr[1] ""
|
3875 |
|
3876 |
-
#: class/subscription.php:
|
3877 |
msgid "Week"
|
3878 |
msgid_plural "Weeks"
|
3879 |
msgstr[0] ""
|
3880 |
msgstr[1] ""
|
3881 |
|
3882 |
-
#: class/subscription.php:
|
3883 |
msgid "Month"
|
3884 |
msgid_plural "Months"
|
3885 |
msgstr[0] ""
|
3886 |
msgstr[1] ""
|
3887 |
|
3888 |
-
#: class/subscription.php:
|
3889 |
msgid "Year"
|
3890 |
msgid_plural "Years"
|
3891 |
msgstr[0] ""
|
3892 |
msgstr[1] ""
|
3893 |
|
3894 |
-
#: class/subscription.php:
|
3895 |
msgid "One time payment"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: class/subscription.php:
|
3899 |
msgid "Every"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: class/subscription.php:
|
3903 |
msgid "for"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: class/subscription.php:
|
3907 |
msgid "installments"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: class/subscription.php:
|
3911 |
msgid "Trial available for first %s %s"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: class/subscription.php:
|
3915 |
msgid "Buy Now"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: class/subscription.php:
|
3919 |
msgid "Sign Up"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: class/subscription.php:
|
3923 |
msgid "There is a <strong>%s</strong> charge to add a new post."
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: class/subscription.php:
|
3927 |
msgid ""
|
3928 |
"Your Subscription pack exhausted. There is a <strong>%s</strong> charge to "
|
3929 |
"add a new post."
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: class/subscription.php:
|
3933 |
msgid "You must <a href=\"%s\">purchase a pack</a> before posting"
|
3934 |
msgstr ""
|
3935 |
|
@@ -4045,56 +4067,56 @@ msgstr ""
|
|
4045 |
msgid "No Thanks"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: includes/class-billing-address.php:
|
4049 |
msgid "Some Required Fields are not filled!"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: includes/class-billing-address.php:
|
4053 |
#: includes/class-customizer.php:69 includes/class-privacy.php:275
|
4054 |
#: templates/dashboard/billing-address.php:78
|
4055 |
msgid "Country"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: includes/class-billing-address.php:
|
4059 |
msgid "Choose a country"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: includes/class-billing-address.php:
|
4063 |
#: includes/class-customizer.php:70 templates/dashboard/billing-address.php:63
|
4064 |
msgid "State/Province/Region"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: includes/class-billing-address.php:
|
4068 |
msgid "Choose a state"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: includes/class-billing-address.php:
|
4072 |
#: templates/dashboard/billing-address.php:42
|
4073 |
msgid "Address Line 1 "
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: includes/class-billing-address.php:
|
4077 |
#: templates/dashboard/billing-address.php:49
|
4078 |
msgid "Address Line 2 "
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: includes/class-billing-address.php:
|
4082 |
#: includes/class-customizer.php:73 includes/class-privacy.php:263
|
4083 |
#: templates/dashboard/billing-address.php:56
|
4084 |
msgid "City"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: includes/class-billing-address.php:
|
4088 |
#: includes/class-customizer.php:74 templates/dashboard/billing-address.php:73
|
4089 |
msgid "Postal Code/ZIP"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: includes/class-billing-address.php:
|
4093 |
#: templates/dashboard/billing-address.php:102
|
4094 |
msgid "Update Billing Address"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: includes/class-billing-address.php:
|
4098 |
#: templates/dashboard/billing-address.php:24
|
4099 |
msgid "Billing address is updated."
|
4100 |
msgstr ""
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP User Frontend 3.1.10\n"
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2019-09-06 08:39:45+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
141 |
msgstr ""
|
142 |
|
143 |
#: admin/class-admin-subscription.php:216
|
144 |
+
#: admin/class-admin-subscription.php:570 class/frontend-account.php:250
|
145 |
+
#: class/subscription.php:880 includes/class-user-subscription.php:307
|
146 |
#: templates/subscriptions/pack-details.php:25
|
147 |
msgid "Free"
|
148 |
msgstr ""
|
256 |
msgid "WPUF Subscription Information"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin/class-admin-subscription.php:574 class/frontend-account.php:252
|
260 |
msgid "For each %s %s"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin/class-admin-subscription.php:575 class/frontend-account.php:253
|
264 |
msgid ", for %s installments"
|
265 |
msgstr ""
|
266 |
|
304 |
|
305 |
#: admin/class-admin-subscription.php:754
|
306 |
#: admin/form-builder/class-wpuf-admin-form-builder.php:266
|
307 |
+
#: class/payment.php:202 class/subscription.php:782
|
308 |
#: includes/class-list-table-subscribers.php:128 lib/appsero/Insights.php:751
|
309 |
#: templates/dashboard/subscription.php:61
|
310 |
msgid "Cancel"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
#: admin/html/whats-new.php:8
|
1384 |
+
msgid "Post Owner problem"
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: admin/html/whats-new.php:10
|
1388 |
+
msgid ""
|
1389 |
+
"Posts were not assigned to the selected default post owner, this issue has "
|
1390 |
+
"been fixed."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
#: admin/html/whats-new.php:13
|
1394 |
+
msgid "Google reCaptcha was not working"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
#: admin/html/whats-new.php:15
|
1398 |
msgid ""
|
1399 |
+
"Google reCaptcha was not working, users could submit the form without "
|
1400 |
+
"reCaptcha validation."
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: admin/html/whats-new.php:24
|
1404 |
+
msgid "Added column field"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: admin/html/whats-new.php:29
|
1408 |
+
msgid "Unable to render the events on the front-end dashboard"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: admin/html/whats-new.php:31
|
1412 |
+
msgid ""
|
1413 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
1414 |
"get it fixed in this version."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: admin/html/whats-new.php:34
|
1418 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: admin/html/whats-new.php:36
|
1422 |
msgid ""
|
1423 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
1424 |
"fixed."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: admin/html/whats-new.php:39
|
1428 |
msgid "Text input field for taxonomies not working"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: admin/html/whats-new.php:41
|
1432 |
msgid ""
|
1433 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
1434 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: admin/html/whats-new.php:44
|
1438 |
msgid ""
|
1439 |
"In radio and checkbox field use conditional logic that value does not save "
|
1440 |
"in database"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: admin/html/whats-new.php:46
|
1444 |
msgid ""
|
1445 |
"The selected value of radio and checkbox field were not showing while "
|
1446 |
"editing posts from the backend or frontend, you can see the selected value "
|
1447 |
"in this version."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: admin/html/whats-new.php:49
|
1451 |
msgid "The args param not working with get_avatar filter"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: admin/html/whats-new.php:51
|
1455 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: admin/html/whats-new.php:54
|
1459 |
msgid "The item in ajax taxonomy field was not selected"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: admin/html/whats-new.php:56
|
1463 |
msgid ""
|
1464 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
1465 |
"showing in the backend and frontend which have been fixed."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: admin/html/whats-new.php:65
|
1469 |
msgid "Unable to send new user registration email"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: admin/html/whats-new.php:67
|
1473 |
msgid ""
|
1474 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
1475 |
"to send the new user registration email."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: admin/html/whats-new.php:70
|
1479 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: admin/html/whats-new.php:72
|
1483 |
msgid ""
|
1484 |
"With the latest version of WordPress the gutenberg block of WP User "
|
1485 |
"Frontend were not working. In this version, you will get it fixed."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: admin/html/whats-new.php:75
|
1489 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: admin/html/whats-new.php:77
|
1493 |
msgid ""
|
1494 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
1495 |
"[wpuf dashboard]"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: admin/html/whats-new.php:80
|
1499 |
msgid "Retain default when determining whether to display the admin bar"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: admin/html/whats-new.php:82
|
1503 |
msgid ""
|
1504 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
1505 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
1509 |
"frontend."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: admin/html/whats-new.php:85
|
1513 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: admin/html/whats-new.php:87
|
1517 |
msgid ""
|
1518 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
1519 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
1521 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: admin/html/whats-new.php:90
|
1525 |
msgid "Product form was unable to show the single gallery image"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: admin/html/whats-new.php:92
|
1529 |
msgid ""
|
1530 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
1531 |
"product form, that image were not showing on the frontend."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: admin/html/whats-new.php:101
|
1535 |
msgid "WooCommerce gallery images not getting saved"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: admin/html/whats-new.php:103
|
1539 |
msgid ""
|
1540 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
1541 |
"working. You will get it fixed in this version."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: admin/html/whats-new.php:112
|
1545 |
msgid "The Events Calendar Integration Form"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: admin/html/whats-new.php:114
|
1549 |
msgid ""
|
1550 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
1551 |
"has a one click pre-build event form that has been integrated with The "
|
1552 |
"Events Calendar plugin"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: admin/html/whats-new.php:117
|
1556 |
msgid "Post Submission Facility From Account Page"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: admin/html/whats-new.php:119
|
1560 |
msgid ""
|
1561 |
"On the frontend account page, added a new menu item named <b>Submit "
|
1562 |
"Post</b>. Now admin can allow users to submit post from their default "
|
1565 |
"you can assign any post form that will use to submit posts."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: admin/html/whats-new.php:122
|
1569 |
msgid "Login/Lost Password Link Under Registration Form"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: admin/html/whats-new.php:124
|
1573 |
msgid "Added Login/Lost Password link under registration form"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: admin/html/whats-new.php:133
|
1577 |
msgid "Added drag and drop image ordering on image upload"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: admin/html/whats-new.php:135
|
1581 |
msgid ""
|
1582 |
"Now frontend users can drag & drop the images/files to change the order "
|
1583 |
"while uploading."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: admin/html/whats-new.php:138
|
1587 |
msgid "Added reCAPTCHA field in login form"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: admin/html/whats-new.php:140
|
1591 |
msgid ""
|
1592 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
1593 |
"related settings from <strong>User Frontend > Settings > "
|
1594 |
"Login/Registration</strong>"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: admin/html/whats-new.php:143
|
1598 |
msgid "Added preview option in forms"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: admin/html/whats-new.php:145
|
1602 |
msgid ""
|
1603 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
1604 |
"Form</strong> button, admin can take a quick look of the form without using "
|
1605 |
"shortcode"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: admin/html/whats-new.php:148
|
1609 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: admin/html/whats-new.php:150
|
1613 |
msgid ""
|
1614 |
"The upload button will not be hidden until the user selects max number of "
|
1615 |
"files "
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: admin/html/whats-new.php:153
|
1619 |
msgid "Added form limit notice before form submission"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: admin/html/whats-new.php:155
|
1623 |
msgid ""
|
1624 |
"Limit notice message was showing after submission, now it is showing when "
|
1625 |
"rendering the form"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: admin/html/whats-new.php:158
|
1629 |
msgid "Fixed: default post category not saving"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: admin/html/whats-new.php:160
|
1633 |
msgid ""
|
1634 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
1635 |
"category options were not saving. Now, it's fixed."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: admin/html/whats-new.php:163
|
1639 |
msgid ""
|
1640 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
1641 |
"properly"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: admin/html/whats-new.php:165
|
1645 |
msgid ""
|
1646 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
1647 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: admin/html/whats-new.php:174
|
1651 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: admin/html/whats-new.php:176
|
1655 |
msgid ""
|
1656 |
"If you are using other language than English. Please <b>rename</b> your "
|
1657 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
1658 |
"change was made to support translations from translate.wordpress.org"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: admin/html/whats-new.php:179
|
1662 |
msgid "Added WP User Frontend Data export and erase functionality."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: admin/html/whats-new.php:181
|
1666 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: admin/html/whats-new.php:184
|
1670 |
msgid "Added billing address customizer."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: admin/html/whats-new.php:186
|
1674 |
msgid "Added customizer options for billing address in payment page."
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: admin/html/whats-new.php:189
|
1678 |
msgid "Make the payment page responsive."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: admin/html/whats-new.php:191
|
1682 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: admin/html/whats-new.php:194
|
1686 |
msgid "Fixed image upload issue in Safari."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: admin/html/whats-new.php:196
|
1690 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: admin/html/whats-new.php:199
|
1694 |
msgid "Post update issue after updating or removing post images."
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: admin/html/whats-new.php:201
|
1698 |
msgid ""
|
1699 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
1700 |
"now."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: admin/html/whats-new.php:210
|
1704 |
msgid "Allow overriding form input styles using theme styling."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: admin/html/whats-new.php:212
|
1708 |
msgid "Overriding form input styles using theme style is now possible."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: admin/html/whats-new.php:215
|
1712 |
msgid "Fixed Auto Login after registration."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: admin/html/whats-new.php:217
|
1716 |
msgid "Auto Login after registration was not working is fixed now."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: admin/html/whats-new.php:220
|
1720 |
msgid "Fixed fallback cost calculation"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: admin/html/whats-new.php:222
|
1724 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: admin/html/whats-new.php:225
|
1728 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: admin/html/whats-new.php:227
|
1732 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: admin/html/whats-new.php:230
|
1736 |
msgid "Show Free pack users in subscribers list."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: admin/html/whats-new.php:232
|
1740 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: admin/html/whats-new.php:241
|
1744 |
msgid "WP User Frontend Guten Block is added"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: admin/html/whats-new.php:243
|
1748 |
msgid ""
|
1749 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
1750 |
"preview of the form. "
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: admin/html/whats-new.php:246
|
1754 |
msgid "Advanced Custom Fields plugin compatibility"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: admin/html/whats-new.php:248
|
1758 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: admin/html/whats-new.php:251
|
1762 |
msgid "Taxonomy Terms not showing for custom post types"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: admin/html/whats-new.php:253
|
1766 |
msgid ""
|
1767 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
1768 |
"within Form Settings and Dashboard Post Listing"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: admin/html/whats-new.php:256
|
1772 |
msgid "Various other code optimizations"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: admin/html/whats-new.php:258 admin/html/whats-new.php:315
|
1776 |
msgid "Code structure organization and optimization for better performance"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: admin/html/whats-new.php:267
|
1780 |
msgid "WoooCommerce billing address Sync"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: admin/html/whats-new.php:269
|
1784 |
msgid ""
|
1785 |
"If an existing customer has previously set his billing address, that will "
|
1786 |
"be imported into WPUF Billing address "
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: admin/html/whats-new.php:272
|
1790 |
msgid "Trial subscription message not showing properly"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: admin/html/whats-new.php:274
|
1794 |
msgid "Subscriptions with Trial now shows trial notices"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: admin/html/whats-new.php:277
|
1798 |
msgid "Reset email Key not working"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: admin/html/whats-new.php:279
|
1802 |
msgid "Reset Email key was not working in some cases"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: admin/html/whats-new.php:282
|
1806 |
msgid "Post count not showing on the frontend dashboard"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: admin/html/whats-new.php:284
|
1810 |
msgid ""
|
1811 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
1812 |
"now fixed and shows count for each post type"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: admin/html/whats-new.php:287
|
1816 |
msgid "Login Redirect showing blank page is fixed"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: admin/html/whats-new.php:289
|
1820 |
msgid ""
|
1821 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
1822 |
"redirecting to blank page for users who hit login page directly"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: admin/html/whats-new.php:298
|
1826 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: admin/html/whats-new.php:300
|
1830 |
msgid ""
|
1831 |
"You can choose Previous Page as Login Redirect page settings now to "
|
1832 |
"redirect users to the page from which they went for Login. "
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: admin/html/whats-new.php:303
|
1836 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: admin/html/whats-new.php:305
|
1840 |
msgid ""
|
1841 |
"For some clients emails were not rendering the HTML links properly, this is "
|
1842 |
"now fixed"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: admin/html/whats-new.php:308
|
1846 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: admin/html/whats-new.php:310
|
1850 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: admin/html/whats-new.php:313
|
1854 |
msgid "Various other code improvements"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: admin/html/whats-new.php:324
|
1858 |
msgid "Dashboard Post Listing now supports multiple post types"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: admin/html/whats-new.php:326
|
1862 |
msgid ""
|
1863 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
1864 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: admin/html/whats-new.php:329
|
1868 |
msgid "Added Login Redirect Settings"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: admin/html/whats-new.php:331
|
1872 |
msgid ""
|
1873 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
1874 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
1875 |
"redirected to this page after login."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: admin/html/whats-new.php:334
|
1879 |
msgid "Image Upload field button text can be changed"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: admin/html/whats-new.php:336
|
1883 |
msgid ""
|
1884 |
"The upload button text can now be changed for image upload fields which "
|
1885 |
"defaults to \"Select Image\" if not set. "
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: admin/html/whats-new.php:339
|
1889 |
msgid "Multi Step Form styles made compatible with more themes"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: admin/html/whats-new.php:341
|
1893 |
msgid "Multi Step form can now be styled more easily with other themes "
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: admin/html/whats-new.php:344
|
1897 |
msgid "Required field condition for google map not working is fixed"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: admin/html/whats-new.php:346
|
1901 |
msgid ""
|
1902 |
"If Google Map field was set as required users were able to submit form "
|
1903 |
"without changing the default value."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: admin/html/whats-new.php:355
|
1907 |
msgid "Admin form builder is now fully responsive."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: admin/html/whats-new.php:357
|
1911 |
msgid ""
|
1912 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
1913 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
1914 |
"the go."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: admin/html/whats-new.php:360
|
1918 |
msgid "Added color schemes for creating attractive form layouts."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: admin/html/whats-new.php:362
|
1922 |
msgid ""
|
1923 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
1924 |
"from each form's new display settings."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: admin/html/whats-new.php:365
|
1928 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: admin/html/whats-new.php:367
|
1932 |
msgid ""
|
1933 |
"Free subscription packs now can only be purchased once and the limit "
|
1934 |
"applies properly"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: admin/html/whats-new.php:370
|
1938 |
msgid "Various other bug fixes and improvements were made "
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: admin/html/whats-new.php:372
|
1942 |
msgid "Please see the change log to see full details."
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: admin/html/whats-new.php:381
|
1946 |
msgid "Added upgrade function for default category"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: admin/html/whats-new.php:383
|
1950 |
msgid "Upgrader added to upgrade previously set default post category."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: admin/html/whats-new.php:386
|
1954 |
msgid "Subscription pack cannot be canceled"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: admin/html/whats-new.php:388
|
1958 |
msgid ""
|
1959 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
1960 |
"in subscription details section."
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: admin/html/whats-new.php:391
|
1964 |
msgid "page installer admin notice logic issue"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: admin/html/whats-new.php:393
|
1968 |
msgid ""
|
1969 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
1970 |
"default value not set."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: admin/html/whats-new.php:403
|
1974 |
msgid "Setup Wizard"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: admin/html/whats-new.php:405
|
1978 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: admin/html/whats-new.php:409
|
1982 |
msgid "Multi-select Category"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: admin/html/whats-new.php:411
|
1986 |
msgid "Add multi-select to default category in post form settings."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: admin/html/whats-new.php:415
|
1990 |
msgid "Select Text option for Taxonomy"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: admin/html/whats-new.php:417
|
1994 |
msgid ""
|
1995 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
1996 |
"with empty value as first option for Taxonomy dropdown."
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: admin/html/whats-new.php:420
|
2000 |
msgid "Taxonomy Checkbox Inline"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: admin/html/whats-new.php:422
|
2004 |
msgid ""
|
2005 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
2006 |
"Taxonomy checkbox fields inline."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: admin/html/whats-new.php:432
|
2010 |
msgid "Manage schedule for form submission"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: admin/html/whats-new.php:434
|
2014 |
msgid ""
|
2015 |
"Do not accept form submission if the current date is not between the date "
|
2016 |
"range of the schedule."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: admin/html/whats-new.php:438
|
2020 |
msgid "Restrict form submission based on the user roles"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: admin/html/whats-new.php:440
|
2024 |
msgid ""
|
2025 |
"Restrict form submission based on the user roles. Now you can manage user "
|
2026 |
"role base permission on form submission."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: admin/html/whats-new.php:444
|
2030 |
msgid "Limit how many entries a form will accept"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: admin/html/whats-new.php:446
|
2034 |
msgid ""
|
2035 |
"Limit how many entries a form will accept and display a custom message when "
|
2036 |
"that limit is reached."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: admin/html/whats-new.php:450
|
2040 |
msgid "Show/hide Admin Bar"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: admin/html/whats-new.php:452
|
2044 |
msgid "Control the admin bar visibility based on user roles."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: admin/html/whats-new.php:456
|
2048 |
msgid "Ajax Login widget"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: admin/html/whats-new.php:458
|
2052 |
msgid ""
|
2053 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
2054 |
"form do not required page loading for login."
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: admin/html/whats-new.php:462
|
2058 |
msgid "Form submission with Captcha field"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: admin/html/whats-new.php:464
|
2062 |
msgid "Form field validation process updated if form submits with captcha field."
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: admin/html/whats-new.php:478
|
2066 |
msgid "What's New in WPUF?"
|
2067 |
msgstr ""
|
2068 |
|
3142 |
msgstr ""
|
3143 |
|
3144 |
#: admin/template-post.php:194 includes/fields/class-abstract-fields.php:486
|
3145 |
+
msgid "Search the terms name."
|
|
|
|
|
3146 |
msgstr ""
|
3147 |
|
3148 |
#: admin/template-post.php:198
|
3468 |
msgid "<p>You are not subscribed to any package yet.</p>"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: class/frontend-account.php:238
|
3472 |
+
msgid "<p>You may processed your payment, but the pack is not activated yet.</p>"
|
3473 |
+
msgstr ""
|
3474 |
+
|
3475 |
+
#: class/frontend-account.php:311 class/subscription.php:73
|
3476 |
msgid "Nonce failure"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: class/frontend-account.php:325
|
3480 |
msgid "First Name is a required field."
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: class/frontend-account.php:329
|
3484 |
msgid "Last Name is a required field."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: class/frontend-account.php:333
|
3488 |
msgid "Email is a required field."
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: class/frontend-account.php:344
|
3492 |
msgid "Please provide a valid email address."
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: class/frontend-account.php:346
|
3496 |
msgid "This email address is already registered."
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: class/frontend-account.php:352
|
3500 |
msgid "Please fill out all password fields."
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: class/frontend-account.php:355
|
3504 |
msgid "Please enter your current password."
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: class/frontend-account.php:358
|
3508 |
msgid "Please re-enter your password."
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: class/frontend-account.php:361
|
3512 |
msgid "New passwords do not match."
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: class/frontend-account.php:364 class/frontend-account.php:375
|
3516 |
msgid "Your current password is incorrect."
|
3517 |
msgstr ""
|
3518 |
|
3581 |
msgid "Empty reCaptcha Field"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: class/frontend-form-post.php:335 includes/class-frontend-form-post.php:489
|
3585 |
msgid "Invalid email address."
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: class/frontend-form-post.php:344 includes/class-frontend-form-post.php:499
|
3589 |
msgid ""
|
3590 |
"You already have an account in our site. Please login to continue.\n"
|
3591 |
"\n"
|
3594 |
"Click 'Cancel' to stay at this page."
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: class/frontend-form-post.php:393 includes/class-frontend-form-post.php:555
|
3598 |
msgid "You do not have sufficient permissions to access this form."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
#: class/frontend-form-post.php:732 class/frontend-form-post.php:739
|
3602 |
+
#: includes/class-frontend-form-post.php:926
|
3603 |
+
#: includes/class-frontend-form-post.php:932
|
3604 |
msgid ""
|
3605 |
"Thank you for posting on our site. We have sent you an confirmation email. "
|
3606 |
"Please check your inbox!"
|
3610 |
msgid "Something went wrong"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
+
#: class/frontend-form-post.php:1170 includes/class-frontend-form-post.php:811
|
3614 |
msgid "Email successfully verified. Please Login."
|
3615 |
msgstr ""
|
3616 |
|
3626 |
msgid "Please select your payment page from admin panel"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: class/payment.php:121
|
3630 |
msgid "Your free package has been activated. Enjoy!"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: class/payment.php:123
|
3634 |
msgid "You already have activated a free package previously."
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: class/payment.php:141 includes/class-customizer.php:59
|
3638 |
#: wpuf-functions.php:1703
|
3639 |
msgid "Billing Address"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: class/payment.php:167
|
3643 |
msgid "Pricing & Plans"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: class/payment.php:169
|
3647 |
msgid "Change Pack"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: class/payment.php:184
|
3651 |
msgid "Selected Pack "
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: class/payment.php:185
|
3655 |
msgid "Pack Price "
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: class/payment.php:189 class/payment.php:235 includes/class-privacy.php:351
|
3659 |
msgid "Total"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: class/payment.php:201
|
3663 |
msgid "Apply Coupon"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: class/payment.php:205
|
3667 |
msgid "Have a discount code?"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: class/payment.php:231
|
3671 |
msgid "Post cost"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: class/payment.php:242
|
3675 |
msgid "Choose Your Payment Method"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: class/payment.php:279
|
3679 |
msgid "Proceed"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: class/payment.php:285
|
3683 |
msgid "No Payment gateway found"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: class/payment.php:453 lib/gateway/bank.php:109
|
3687 |
msgid "[%s] Payment Received"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: class/payment.php:454
|
3691 |
msgid "New payment received at %s"
|
3692 |
msgstr ""
|
3693 |
|
3877 |
msgid "Please buy a subscription pack to post"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: class/subscription.php:772
|
3881 |
msgid "<p><i>You have a subscription pack activated. </i></p>"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: class/subscription.php:773
|
3885 |
msgid "<p><i>Pack name: %s </i></p>"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: class/subscription.php:775
|
3889 |
msgid "<p><i>To cancel the pack, press the following cancel button</i></p>"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: class/subscription.php:819
|
3893 |
msgid "Day"
|
3894 |
msgid_plural "Days"
|
3895 |
msgstr[0] ""
|
3896 |
msgstr[1] ""
|
3897 |
|
3898 |
+
#: class/subscription.php:820
|
3899 |
msgid "Week"
|
3900 |
msgid_plural "Weeks"
|
3901 |
msgstr[0] ""
|
3902 |
msgstr[1] ""
|
3903 |
|
3904 |
+
#: class/subscription.php:821
|
3905 |
msgid "Month"
|
3906 |
msgid_plural "Months"
|
3907 |
msgstr[0] ""
|
3908 |
msgstr[1] ""
|
3909 |
|
3910 |
+
#: class/subscription.php:822
|
3911 |
msgid "Year"
|
3912 |
msgid_plural "Years"
|
3913 |
msgstr[0] ""
|
3914 |
msgstr[1] ""
|
3915 |
|
3916 |
+
#: class/subscription.php:855
|
3917 |
msgid "One time payment"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: class/subscription.php:862
|
3921 |
msgid "Every"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: class/subscription.php:863
|
3925 |
msgid "for"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: class/subscription.php:863
|
3929 |
msgid "installments"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: class/subscription.php:869
|
3933 |
msgid "Trial available for first %s %s"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: class/subscription.php:873
|
3937 |
msgid "Buy Now"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: class/subscription.php:877
|
3941 |
msgid "Sign Up"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: class/subscription.php:941
|
3945 |
msgid "There is a <strong>%s</strong> charge to add a new post."
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: class/subscription.php:958
|
3949 |
msgid ""
|
3950 |
"Your Subscription pack exhausted. There is a <strong>%s</strong> charge to "
|
3951 |
"add a new post."
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: class/subscription.php:1003
|
3955 |
msgid "You must <a href=\"%s\">purchase a pack</a> before posting"
|
3956 |
msgstr ""
|
3957 |
|
4067 |
msgid "No Thanks"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: includes/class-billing-address.php:35
|
4071 |
msgid "Some Required Fields are not filled!"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: includes/class-billing-address.php:123 includes/class-customizer.php:24
|
4075 |
#: includes/class-customizer.php:69 includes/class-privacy.php:275
|
4076 |
#: templates/dashboard/billing-address.php:78
|
4077 |
msgid "Country"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: includes/class-billing-address.php:145
|
4081 |
msgid "Choose a country"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: includes/class-billing-address.php:150 includes/class-customizer.php:25
|
4085 |
#: includes/class-customizer.php:70 templates/dashboard/billing-address.php:63
|
4086 |
msgid "State/Province/Region"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: includes/class-billing-address.php:164
|
4090 |
msgid "Choose a state"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: includes/class-billing-address.php:169
|
4094 |
#: templates/dashboard/billing-address.php:42
|
4095 |
msgid "Address Line 1 "
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: includes/class-billing-address.php:177
|
4099 |
#: templates/dashboard/billing-address.php:49
|
4100 |
msgid "Address Line 2 "
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: includes/class-billing-address.php:185 includes/class-customizer.php:28
|
4104 |
#: includes/class-customizer.php:73 includes/class-privacy.php:263
|
4105 |
#: templates/dashboard/billing-address.php:56
|
4106 |
msgid "City"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: includes/class-billing-address.php:192 includes/class-customizer.php:29
|
4110 |
#: includes/class-customizer.php:74 templates/dashboard/billing-address.php:73
|
4111 |
msgid "Postal Code/ZIP"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: includes/class-billing-address.php:200
|
4115 |
#: templates/dashboard/billing-address.php:102
|
4116 |
msgid "Update Billing Address"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: includes/class-billing-address.php:241
|
4120 |
#: templates/dashboard/billing-address.php:24
|
4121 |
msgid "Billing address is updated."
|
4122 |
msgstr ""
|
lib/gateway/paypal.php
CHANGED
@@ -44,7 +44,7 @@ class WPUF_Paypal {
|
|
44 |
$api_username = wpuf_get_option( 'paypal_api_username', 'wpuf_payment' );
|
45 |
$api_password = wpuf_get_option( 'paypal_api_password', 'wpuf_payment' );
|
46 |
$api_signature = wpuf_get_option( 'paypal_api_signature', 'wpuf_payment' );
|
47 |
-
$profile_id = $sub_info['profile_id'];
|
48 |
$new_status = $status;
|
49 |
$new_status_string = $status;
|
50 |
|
44 |
$api_username = wpuf_get_option( 'paypal_api_username', 'wpuf_payment' );
|
45 |
$api_password = wpuf_get_option( 'paypal_api_password', 'wpuf_payment' );
|
46 |
$api_signature = wpuf_get_option( 'paypal_api_signature', 'wpuf_payment' );
|
47 |
+
$profile_id = isset( $sub_info['profile_id'] ) ? $sub_info['profile_id'] : '';
|
48 |
$new_status = $status;
|
49 |
$new_status_string = $status;
|
50 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: Forms, registration, profile-builder, login, membership
|
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 3.1.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -257,6 +257,11 @@ redirected to the edit page with that post id. Then you'll see the edit post for
|
|
257 |
|
258 |
== Changelog ==
|
259 |
|
|
|
|
|
|
|
|
|
|
|
260 |
= v3.1.9 (22 July, 2019) =
|
261 |
|
262 |
* **Fix:** call_user_func_array() error while editing or add a new post from admin panel.
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.1.10
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
257 |
|
258 |
== Changelog ==
|
259 |
|
260 |
+
= v3.1.10 (06 September, 2019) =
|
261 |
+
|
262 |
+
* **Fix:** Posts were not assigned to the selected default post owner.
|
263 |
+
* **Fix:** Google reCaptcha was not working, users could submit the form without reCaptcha validation.
|
264 |
+
|
265 |
= v3.1.9 (22 July, 2019) =
|
266 |
|
267 |
* **Fix:** call_user_func_array() error while editing or add a new post from admin panel.
|
templates/subscriptions/pack-details.php
CHANGED
@@ -47,7 +47,7 @@ if ( isset( $_GET['action'] ) && $_GET['action'] == 'wpuf_pay' || $coupon_status
|
|
47 |
}
|
48 |
?>
|
49 |
<div class="wpuf-sub-button">
|
50 |
-
<a <?php echo ( $
|
51 |
<?php echo $button_name; ?>
|
52 |
</a>
|
53 |
</div>
|
47 |
}
|
48 |
?>
|
49 |
<div class="wpuf-sub-button">
|
50 |
+
<a <?php echo ( $current_pack_status == 'completed' ) ? ' class = "wpuf-disabled-link" ' : '' ;?> href="<?php echo ( $current_pack_status == 'completed' ) ? 'javascript:' : add_query_arg( $query_args, $query_url ) ?>" onclick="<?php echo esc_attr( $details_meta['onclick'] ); ?>">
|
51 |
<?php echo $button_name; ?>
|
52 |
</a>
|
53 |
</div>
|
wpuf.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP User Frontend
|
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: Tareq Hasan
|
7 |
-
Version: 3.1.
|
8 |
Author URI: https://tareq.co
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -12,7 +12,7 @@ Text Domain: wp-user-frontend
|
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
-
define( 'WPUF_VERSION', '3.1.
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', dirname( __FILE__ ) );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: Tareq Hasan
|
7 |
+
Version: 3.1.10
|
8 |
Author URI: https://tareq.co
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
+
define( 'WPUF_VERSION', '3.1.10' );
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', dirname( __FILE__ ) );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|