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

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

Code changes from version 3.5.27 to 3.5.28

admin/html/whats-new.php CHANGED
@@ -1,5 +1,19 @@
1
  <?php
2
  $changelog = [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  [
4
  'version' => 'Version 3.5.27',
5
  'released' => '2022-03-09',
1
  <?php
2
  $changelog = [
3
+ [
4
+ 'version' => 'Version 3.5.28',
5
+ 'released' => '2022-08-17',
6
+ 'changes' => [
7
+ [
8
+ 'title' => __( 'Updated compatibility with the latest version of WordPress 6.0', 'wp-user-frontend' ),
9
+ 'type' => 'Tweak',
10
+ ],
11
+ [
12
+ 'title' => __( 'Improved some backend implementations', 'wp-user-frontend' ),
13
+ 'type' => 'Tweak',
14
+ ],
15
+ ],
16
+ ],
17
  [
18
  'version' => 'Version 3.5.27',
19
  'released' => '2022-03-09',
assets/js/frontend-form.js CHANGED
@@ -390,7 +390,7 @@
390
 
391
  self.next('span.wpuf-loading').remove();
392
 
393
- self.after('<span class="wpuf-draft-saved">&nbsp; Post Saved</span>');
394
  $('.wpuf-draft-saved').delay(2500).fadeOut('fast', function(){
395
  $(this).remove();
396
  });
@@ -1119,6 +1119,7 @@
1119
  textLimit: function(event, limit, limit_type, limit_to ) {
1120
  var self = $(this),
1121
  content_length = self.val().length + 1;
 
1122
 
1123
  if ( 'word' === limit_type ) {
1124
  content_length = self.val().split(' ').length;
390
 
391
  self.next('span.wpuf-loading').remove();
392
 
393
+ self.after('<span class="wpuf-draft-saved">&nbsp; ' + res.message + '</span>');
394
  $('.wpuf-draft-saved').delay(2500).fadeOut('fast', function(){
395
  $(this).remove();
396
  });
1119
  textLimit: function(event, limit, limit_type, limit_to ) {
1120
  var self = $(this),
1121
  content_length = self.val().length + 1;
1122
+ var content = self.val();
1123
 
1124
  if ( 'word' === limit_type ) {
1125
  content_length = self.val().split(' ').length;
assets/js/frontend-form.min.js CHANGED
@@ -1 +1 @@
1
- !function(a,b){a.fn.listautowidth=function(){return this.each(function(){var b=a(this).width(),c=b/a(this).children("li").length;a(this).children("li").each(function(){var b=a(this).outerWidth(!0)-a(this).width();a(this).width(c-b)})})},b.WP_User_Frontend={init:function(){this.enableMultistep(this),a(".wpuf-form").on("click","img.wpuf-clone-field",this.cloneField),a(".wpuf-form").on("click","img.wpuf-remove-field",this.removeField),a(".wpuf-form").on("click","a.wpuf-delete-avatar",this.deleteAvatar),a(".wpuf-form").on("click","a#wpuf-post-draft",this.draftPost),a(".wpuf-form").on("click","button#wpuf-account-update-profile",this.account_update_profile),a(".wpuf-form-add").on("submit",this.formSubmit),a("form#post").on("submit",this.adminPostSubmit),b.matchMedia("(max-width: 600px)").matches&&(a("table.items-table tr td .post-edit-icon").click(function(b){b.preventDefault(),a(this).parents("tr").find(".data-column").toggleClass("flex-column"),a(this).toggleClass("toggle-icon")}),a(".wpuf-dashboard-navigation ul li:first-child").after().click(function(b){b.preventDefault(),a(".wpuf-dashboard-navigation ul li").not(":first").toggle()})),a(".wpuf-form").on("step-change-fieldset",function(a,b,c){if(wpuf_plupload_items.length)for(var d=wpuf_plupload_items.length-1;d>=0;d--)wpuf_plupload_items[d].refresh();if(wpuf_map_items.length)for(var d=wpuf_map_items.length-1;d>=0;d--)google.maps.event.trigger(wpuf_map_items[d].map,"resize"),wpuf_map_items[d].map.setCenter(wpuf_map_items[d].center)}),this.ajaxCategory(),a(':submit[name="wpuf_user_subscription_cancel"]').click(function(b){b.preventDefault(),swal({text:wpuf_frontend.cancelSubMsg,type:"warning",showCancelButton:!0,confirmButtonColor:"#d54e21",confirmButtonText:wpuf_frontend.delete_it,cancelButtonText:wpuf_frontend.cancel_it,confirmButtonClass:"btn btn-success",cancelButtonClass:"btn btn-danger"}).then(function(b){if(!b)return!1;a("#wpuf_cancel_subscription").submit()})}),this.warningOnExit(),this.handleReadOnly()},warningOnExit:function(){a('input[name="submit"], #wpuf-post-draft').on("click",function(){b.onbeforeunload=null}),a(".wpuf-form-add").on("change",function(){a(".wpuf-form-add input, .wpuf-form-add select, .wpuf-form-add textarea").each(function(c){"hidden"===a(this).attr("type")&&"submit"===a(this).attr("type")&&-1===a(this).val()||(b.onbeforeunload=function(){return"you have changes"})})})},handleReadOnly:function(){a(".wpuf-form .read-only").each(function(){a("input, select, textarea",this).each(function(){a(this).attr("disabled",!0)})})},check_pass_strength:function(){var b=a("#pass1").val();if(a("#pass-strength-result").show(),a("#pass-strength-result").removeClass("short bad good strong"),!b)return a("#pass-strength-result").html("&nbsp;"),void a("#pass-strength-result").hide();if(void 0!==wp.passwordStrength)switch(wp.passwordStrength.meter(b,wp.passwordStrength.userInputBlacklist(),b)){case 2:a("#pass-strength-result").addClass("bad").html(pwsL10n.bad);break;case 3:a("#pass-strength-result").addClass("good").html(pwsL10n.good);break;case 4:a("#pass-strength-result").addClass("strong").html(pwsL10n.strong);break;case 5:a("#pass-strength-result").addClass("short").html(pwsL10n.mismatch);break;default:a("#pass-strength-result").addClass("short").html(pwsL10n.short)}},enableMultistep:function(c){var d=this,e=0,f=a(':hidden[name="wpuf_multistep_type"]').val();if(null!=f){if(a("fieldset.wpuf-multistep-fieldset").find(".wpuf-multistep-prev-btn").first().remove(),a("fieldset.wpuf-multistep-fieldset").find(".wpuf-multistep-next-btn").last().remove(),a(".wpuf-form fieldset").removeClass("field-active").first().addClass("field-active"),"progressive"==f&&0!=a(".wpuf-form .wpuf-multistep-fieldset").length){a("fieldset.wpuf-multistep-fieldset legend").first();a(".wpuf-multistep-progressbar").html('<div class="wpuf-progress-percentage"></div>');var g=a(".wpuf-multistep-progressbar"),h=a(".wpuf-progress-percentage");a(".wpuf-multistep-progressbar").progressbar({change:function(){h.text(g.progressbar("value")+"%")}}),a(".wpuf-multistep-fieldset legend").hide()}else a(".wpuf-form").each(function(){var b=a(this),c=a(".wpuf-multistep-progressbar",b),d="";c.addClass("wizard-steps"),d+='<ul class="wpuf-step-wizard">',a(".wpuf-multistep-fieldset",this).each(function(){d+="<li>"+a.trim(a("legend",this).text())+"</li>",a("legend",this).hide()}),d+="</ul>",c.append(d),a(".wpuf-step-wizard li",c).first().addClass("active-step"),a(".wpuf-step-wizard",c).listautowidth()});this.change_fieldset(e,f),a("fieldset .wpuf-multistep-prev-btn, fieldset .wpuf-multistep-next-btn").click(function(g){if(a(this).hasClass("wpuf-multistep-next-btn")){0!=d.formStepCheck("",a(this).closest("fieldset"))&&c.change_fieldset(++e,f)}else a(this).hasClass("wpuf-multistep-prev-btn")&&c.change_fieldset(--e,f);var h=a("form.wpuf-form-add"),i=h.offset().top;return b.scrollTo({top:i-32,behavior:"smooth"}),!1})}},change_fieldset:function(b,c){var d=a("fieldset.wpuf-multistep-fieldset").eq(b);a("fieldset.wpuf-multistep-fieldset").removeClass("field-active").eq(b).addClass("field-active"),a(".wpuf-step-wizard li").each(function(){a(this).index()<=b?"step_by_step"==c?a(this).addClass("passed-wpuf-ms-bar"):a(".wpuf-ps-bar",this).addClass("passed-wpuf-ms-bar"):"step_by_step"==c?a(this).removeClass("passed-wpuf-ms-bar"):a(".wpuf-ps-bar",this).removeClass("passed-wpuf-ms-bar")}),a(".wpuf-step-wizard li").removeClass("wpuf-ms-bar-active active-step completed-step"),a(".passed-wpuf-ms-bar").addClass("completed-step").last().addClass("wpuf-ms-bar-active"),a(".wpuf-ms-bar-active").addClass("active-step");var e=a("fieldset.wpuf-multistep-fieldset").eq(b).find("legend").text();if(e=a.trim(e),"progressive"==c&&0!=a(".wpuf-form .wpuf-multistep-fieldset").length){var f=100*(b+1)/a("fieldset.wpuf-multistep-fieldset").length,f=Number(f.toFixed(2));a(".wpuf-multistep-progressbar").progressbar({value:f}),a(".wpuf-progress-percentage").text(e+" ("+f+"%)")}a(".wpuf-form").trigger("step-change-fieldset",[b,d])},ajaxCategory:function(){a(".category-wrap").on("change",".cat-ajax",function(){var b=a(this).data("form-id");currentLevel=parseInt(a(this).parent().attr("level")),WP_User_Frontend.getChildCats(a(this),currentLevel+1,"category",b)})},getChildCats:function(b,c,d,e){var f=a(b).val(),g="wpuf-category-dropdown-lvl-"+c,d=void 0!==d?d:"category",h=a(b).siblings("span").data("taxonomy");a.ajax({type:"post",url:wpuf_frontend.ajaxurl,data:{action:"wpuf_get_child_cat",catID:f,nonce:wpuf_frontend.nonce,field_attr:h,form_id:e},beforeSend:function(){a(b).parent().parent().next(".loading").addClass("wpuf-loading")},complete:function(){a(b).parent().parent().next(".loading").removeClass("wpuf-loading")},success:function(e){a(b).parent().nextAll().each(function(){a(this).remove()}),""!=e&&(a(b).parent().addClass("hasChild").parent().append('<div id="'+g+'" level="'+c+'"></div>'),b.parent().parent().find("#"+g).html(e).slideDown("fast")),a(document).trigger("wpuf-ajax-fetched-child-categories",g,c,d)}})},cloneField:function(b){b.preventDefault();var c=a(this).closest("tr"),d=c.clone();d.find("input").val(""),d.find(":checked").attr("checked",""),c.after(d)},removeField:function(){var b=a(this).closest("tr");b.siblings().addBack().length>1&&b.remove()},adminPostSubmit:function(b){b.preventDefault();var c=a(this);if(WP_User_Frontend.validateForm(c))return!0},draftPost:function(b){b.preventDefault();var c=a(this),d=a(this).closest("form"),e=d.serialize()+"&action=wpuf_draft_post",f=d.find('input[type="hidden"][name="post_id"]').val(),g=[];a(".wpuf-rich-validation").each(function(b,c){var c=a(c),d=c.data("id"),e=c.data("name"),f=a.trim(tinyMCE.get(d).getContent());g.push(e+"="+encodeURIComponent(f))}),e=e+"&"+g.join("&"),c.after(' <span class="wpuf-loading"></span>'),a.post(wpuf_frontend.ajaxurl,e,function(b){if(void 0===f){var e='<input type="hidden" name="post_id" value="'+b.post_id+'">';e+='<input type="hidden" name="post_date" value="'+b.date+'">',e+='<input type="hidden" name="post_author" value="'+b.post_author+'">',e+='<input type="hidden" name="comment_status" value="'+b.comment_status+'">',d.append(e)}c.next("span.wpuf-loading").remove(),c.after('<span class="wpuf-draft-saved">&nbsp; Post Saved</span>'),a(".wpuf-draft-saved").delay(2500).fadeOut("fast",function(){a(this).remove()})})},account_update_profile:function(b){b.preventDefault();var c=a(this).closest("form");a.post(wpuf_frontend.ajaxurl,c.serialize(),function(a){a.success?(c.find(".wpuf-error").hide(),c.find(".wpuf-success").show()):(c.find(".wpuf-success").hide(),c.find(".wpuf-error").show(),c.find(".wpuf-error").text(a.data))})},formStepCheck:function(a,b){var c=b,d=(c.find("input[type=submit]"),WP_User_Frontend.validateForm(c));return 0==d&&WP_User_Frontend.addErrorNotice(self,"bottom"),d},formSubmit:function(c){c.preventDefault();var d=a(this),e=d.find("input[type=submit]");form_data=WP_User_Frontend.validateForm(d),form_data&&(d.find("li.wpuf-submit").append('<span class="wpuf-loading"></span>'),e.attr("disabled","disabled").addClass("button-primary-disabled"),a.post(wpuf_frontend.ajaxurl,form_data,function(c){if(c.success)a("body").trigger("wpuf:postform:success",c),1==c.show_message?(d.before('<div class="wpuf-success">'+c.message+"</div>"),d.slideUp("fast",function(){d.remove()}),a("html, body").animate({scrollTop:a(".wpuf-success").offset().top-100},"fast")):b.location=c.redirect_to;else{if(void 0!==c.type&&"login"===c.type)return void(confirm(c.error)?b.location=c.redirect_to:(e.removeAttr("disabled"),e.removeClass("button-primary-disabled"),d.find("span.wpuf-loading").remove()));d.find(".g-recaptcha").length>0&&grecaptcha.reset(),swal({html:c.error,type:"warning",showCancelButton:!1,confirmButtonColor:"#d54e21",confirmButtonText:"OK",cancelButtonClass:"btn btn-danger"}),e.removeAttr("disabled")}e.removeClass("button-primary-disabled"),d.find("span.wpuf-loading").remove()}))},isTelephoneField:function(b){return a(b).hasClass("wpuf_telephone")&&"yes"===a(b).data("show-list")},validateForm:function(c){var d=!1,e="",f=[];if(WP_User_Frontend.removeErrors(c),WP_User_Frontend.removeErrorNotice(c),c.find("input:visible, textarea:visible, select:visible, .wpuf-rich-validation").each(function(g,h){var i=a(h).attr("type"),j=a(h).data("type"),k=a(h).data("required"),l="";switch(j){case"rich":var m=a(h).data("id"),h=a(h),n=h.data("id"),o=h.data("name");l=a.trim(tinyMCE.get(n).getContent()),"yes"===k&&""===l&&(d=!0,e="required",WP_User_Frontend.markError(h)),f.push(o+"="+encodeURIComponent(l));break;case"textarea":case"text":if(l=a.trim(a(h).val()),"yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}if(WP_User_Frontend.isTelephoneField(h)){var p=b.intlTelInputGlobals.getInstance(h);if(""!==p.getNumber()&&!p.isValidNumber()){d=!0,e="validation",WP_User_Frontend.markError(h,e);break}var m=a(h).attr("name"),q=p.getNumber();a("<input>").attr("type","hidden").attr("name",m).attr("value",q).appendTo(c);break}if("url"===i&&""!==l&&!WP_User_Frontend.isValidURL(l)){d=!0,e="validation",WP_User_Frontend.markError(h,e);break}d=WP_User_Frontend.editorLimit.checkRestrictionError(h);break;case"password":case"confirm_password":var r=a(h).data("repeat");if(l=a.trim(a(h).val()),"yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}if(r){var s=a('[data-type="confirm_password"]').eq(0);s.val()!=l&&(d=!0,e="mismatch",WP_User_Frontend.markError(s,e))}break;case"select":l=a(h).val(),"yes"===k&&"-1"==l&&(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"multiselect":l=a(h).val(),"yes"===k&&0===l.length&&(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"tax-checkbox":var t=a(h).children().find("input:checked").length;"yes"!==k||t||(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"radio":var t=a(h).find("input:checked").length;"yes"!==k||t||(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"file":var t=a(h).find("ul").children().length;"yes"!==k||t||(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"email":if(l=a(h).val(),"yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}""===l||WP_User_Frontend.isValidEmail(l)||(d=!0,e="validation",WP_User_Frontend.markError(h,e));break;case"url":var l=a(h).val();if("yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}""===l||WP_User_Frontend.isValidURL(l)||(d=!0,e="validation",WP_User_Frontend.markError(h,e));break;default:if(a(h).attr("id")&&a(h).attr("id").startsWith("wpuf-map")){var u=a(h).parents(".wpuf-form-google-map-container");map_field=a(u).find('input[id^="wpuf-map-lat"]'),k=a(map_field).data("required"),l=a(map_field).val(),"yes"==k&&""==l&&(d=!0,e="required",WP_User_Frontend.markError(u,e))}}if(d)return WP_User_Frontend.markError(h,e),!1}),c.find('li.wpuf-el[style*="display: none"] input').each(function(b,c){switch(a(c).attr("type")){case"url":case"email":a(c).val("")}}),d)return WP_User_Frontend.addErrorNotice(c,"end"),!1;var g=c.serialize();return g=g+"&"+f.join("&")},addErrorNotice:function(b,c){"bottom"==c?a(".wpuf-multistep-fieldset:visible").append('<div class="wpuf-errors">'+wpuf_frontend.error_message+"</div>"):a(b).find("li.wpuf-submit").append('<div class="wpuf-errors">'+wpuf_frontend.error_message+"</div>")},removeErrorNotice:function(b){a(b).find(".wpuf-errors").remove()},markError:function(b,c){if(a(b).closest("div").addClass("has-error"),c){var d="",e=a(b).data("label");switch(d=e||a(b).closest("li").data("label"),c){case"required":case"mismatch":case"validation":d=d+" "+error_str_obj[c];break;case"limit":d=""}a(b).siblings(".wpuf-error-msg").remove(),"DIV"!==a(b).prev().prop("nodeName")||a(b).hasClass("wpuf_telephone")?a(b).after('<div class="wpuf-error-msg">'+d+"</div>"):a(b).append('<div class="wpuf-error-msg">'+d+"</div>")}a(b).focus()},removeErrors:function(b){a(b).find(".has-error").removeClass("has-error"),a(".wpuf-error-msg").remove()},isValidEmail:function(a){return new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i).test(a)},isValidURL:function(a){return new RegExp("^(http:\\/\\/www\\.|https:\\/\\/www\\.|http:\\/\\/|https:\\/\\/){1}[a-z0-9]+([\\-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,20}(:[0-9]{1,20})?(\\/.*)?$").test(a)},insertImage:function(b,c){if(a("#"+b).length){var d=new plupload.Uploader({runtimes:"html5,html4",browse_button:b,container:"wpuf-insert-image-container",multipart:!0,multipart_params:{action:"wpuf_insert_image",form_id:a("#"+b).data("form_id")},multiple_queues:!1,multi_selection:!1,urlstream_upload:!0,file_data_name:"wpuf_file",max_file_size:wpuf_frontend_upload.max_filesize,url:wpuf_frontend_upload.plupload.url,flash_swf_url:wpuf_frontend_upload.flash_swf_url,filters:[{title:"Allowed Files",extensions:"jpg,jpeg,gif,png,bmp"}]});d.bind("Init",function(a,b){}),d.bind("FilesAdded",function(b,c){var d=a("#wpuf-insert-image-container");a.each(c,function(a,b){d.append('<div class="upload-item" id="'+b.id+'"><div class="progress progress-striped active"><div class="bar"></div></div></div>')}),b.refresh(),b.start()}),d.bind("QueueChanged",function(a){d.start()}),d.bind("UploadProgress",function(b,c){var d=a("#"+c.id);a(".bar",d).css({width:c.percent+"%"}),a(".percent",d).html(c.percent+"%")}),d.bind("Error",function(a,b){alert("Error #"+b.code+": "+b.message)}),d.bind("FileUploaded",function(b,d,e){if(a("#"+d.id).remove(),"error"!==e.response){if("undefined"!=typeof tinyMCE)if("function"!=typeof tinyMCE.execInstanceCommand){var f=tinyMCE.get("post_content_"+c);null!==f&&f.insertContent(e.response)}else tinyMCE.execInstanceCommand("post_content_"+c,"mceInsertContent",!1,e.response);var g=a("#post_content_"+c);g.val(g.val()+e.response)}else alert("Something went wrong")}),d.init()}},deleteAvatar:function(b){b.preventDefault(),confirm(a(this).data("confirm"))&&a.post(wpuf_frontend.ajaxurl,{action:"wpuf_delete_avatar",_wpnonce:wpuf_frontend.nonce},function(){a(b.target).parent().remove(),a("[id^=wpuf-avatar]").css("display","")})},editorLimit:{bind:function(b,c,d,e,f){"no"===d?(a("textarea#"+c).keydown(function(a){WP_User_Frontend.editorLimit.textLimit.call(this,a,b,e,f)}),a("input#"+c).keydown(function(a){WP_User_Frontend.editorLimit.textLimit.call(this,a,b,e,f)}),a("input#"+c).change(function(a){WP_User_Frontend.editorLimit.textLimit.call(this,a,b,e,f)}),a("textarea#"+c).on("paste",function(c){var d=a(this);setTimeout(function(){WP_User_Frontend.editorLimit.textLimit.call(d,c,b,e,f)},100)}),a("input#"+c).on("paste",function(c){var d=a(this);setTimeout(function(){WP_User_Frontend.editorLimit.textLimit.call(d,c,b,e,f)},100)})):setTimeout(function(){tinyMCE.get(c).onKeyDown.add(function(a,c){WP_User_Frontend.editorLimit.tinymce.onKeyDown(a,c,b,e,f)}),tinyMCE.get(c).onPaste.add(function(a,c){setTimeout(function(){WP_User_Frontend.editorLimit.tinymce.onPaste(a,c,b,e,f)},100)})},1e3)},checkTinyMCERestriction:function(b,c,d){var e=0,f=void 0!==c[0]&&null!==c[0]?parseInt(c[0]):0,g=(void 0!==c[1]&&null!==c[1]&&c[1].trim(),void 0!==c[2]&&null!==c[2]&&c[2].trim(),void 0!==c[3]&&null!==c[3]?c[3].trim():""),h=void 0!==c[4]&&null!==c[4]?c[4].trim():"";e="word"===g?WP_User_Frontend.editorLimit.tinymce.getStats(d).words:WP_User_Frontend.editorLimit.tinymce.getStats(d).chars+1;wpuf_frontend["word_"+h];return e>1&&e>f&&"max"===h?(WP_User_Frontend.markError(b,"limit"),jQuery(".mce-path-item.mce-last",d.container).html(wpuf_frontend["word_"+h]+" "+e+"/"+f),!0):e<f&&"min"===h&&e>1?(WP_User_Frontend.markError(b,"limit"),jQuery(".mce-path-item.mce-last",d.container).html(wpuf_frontend["word_"+h]+" "+e+"/"+f),!0):(a(b).hasClass("has-error")&&a(b).removeClass("has-error"),!1)},checkRestrictionError:function(b){var c=a(b).attr("id"),d=!1,e=null,f=0,g="";if("undefined"!=typeof tinyMCE&&null!==tinyMCE.get(c)&&(d=!0,e=tinyMCE.get(c),e.focus()),a(b).closest("li.wpuf-el").find("script").html()){var h=a(b).closest("li.wpuf-el").find("script").html();g=h.match(/(?:bind\()(.*?(?=\)))/)?h.match(/(?:bind\()(.*?(?=\)))/)[1].replace(/['"]/g,"").split(","):""}if(d)return WP_User_Frontend.editorLimit.checkTinyMCERestriction(b,g,e);var i=void 0!==g[0]&&null!==g[0]?parseInt(g[0]):0,c=void 0!==g[1]&&null!==g[1]?g[1].trim():"",j=(void 0!==g[2]&&null!==g[2]&&g[2].trim(),void 0!==g[3]&&null!==g[3]&&g[3].trim(),void 0!==g[4]&&null!==g[4]?g[4].trim():"");f=a(b).val().length;wpuf_frontend["word_"+j];return f>1&&f>i&&"max"===j?(WP_User_Frontend.markError(b,"limit"),!0):f<i&&"min"===j&&f>1?(WP_User_Frontend.markError(b,"limit"),!0):(a(b).hasClass("has-error")&&a(b).removeClass("has-error"),!1)},tinymce:{getStats:function(a){var b=a.getBody(),c=tinymce.trim(b.innerText||b.textContent);return{chars:c.length,words:c.split(/[\w\u2019\'-]+/).length}},onKeyDown:function(b,c,d,e,f){var g=a(".wpuf-fields.wpuf_"+b.id),h=WP_User_Frontend.editorLimit.tinymce.getStats(b).chars+1;"word"===e&&(h=WP_User_Frontend.editorLimit.tinymce.getStats(b).words),d&&h>d&&"max"===f?(WP_User_Frontend.editorLimit.blockTyping(c),WP_User_Frontend.markError(g,"limit"),jQuery(".mce-path-item.mce-last",b.container).html(wpuf_frontend["word_"+f]+" "+h+"/"+d)):d&&h<d&&"min"===f?(WP_User_Frontend.markError(g,"limit"),jQuery(".mce-path-item.mce-last",b.container).html(wpuf_frontend["word_"+f]+" "+h+"/"+d)):(g.removeClass("has-error"),jQuery(".mce-path-item.mce-last",b.container).html(""))},onPaste:function(a,b,c){var d=a.getContent().split(" ").slice(0,c).join(" ");a.setContent(d),WP_User_Frontend.editorLimit.make_media_embed_code(d,a)}},textLimit:function(b,c,d,e){var f=a(this),g=f.val().length+1;"word"===d&&(g=f.val().split(" ").length),c&&g>c&&"max"===e?(WP_User_Frontend.content_limit_message(f,d,e,c),WP_User_Frontend.editorLimit.blockTyping(b)):c&&g<c&&"min"===e?WP_User_Frontend.content_limit_message(f,d,e,c):(f.closest("li").removeClass("has-error"),f.closest(".wpuf-fields").find("span.wpuf-wordlimit-message").html("")),"paste"===b.type&&(f.val(content.substring(0,c)),"word"===d&&f.val(content.slice(0,c).join(" ")))},blockTyping:function(b){-1!==a.inArray(b.keyCode,[46,8,9,27,13,110,190,189])||65==b.keyCode&&!0===b.ctrlKey||b.keyCode>=35&&b.keyCode<=40||(b.preventDefault(),b.stopPropagation())},make_media_embed_code:function(b,c){a.post(ajaxurl,{action:"make_media_embed_code",content:b},function(a){c.setContent(c.getContent()+c.setContent(a))})}},doUncheckRadioBtn:function(a){a.checked=!1},content_limit_message:function(a,b,c,d){WP_User_Frontend.markError(a,"limit");var e="";"word"===b&&(e=wpuf_frontend["word_"+c]+" "+d),"character"===b&&(e=wpuf_frontend["char_"+c]+" "+d),a.closest(".wpuf-fields").find("span.wpuf-wordlimit-message").html(e)}},a(function(){if(WP_User_Frontend.init(),a("ul.wpuf-payment-gateways").on("click","input[type=radio]",function(b){a(".wpuf-payment-instruction").slideUp(250),a(this).parents("li").find(".wpuf-payment-instruction").slideDown(250)}),a("ul.wpuf-payment-gateways li").find("input[type=radio]").is(":checked")){a("ul.wpuf-payment-gateways li").find("input[type=radio]:checked").parents("li").find(".wpuf-payment-instruction").slideDown(250)}else a("ul.wpuf-payment-gateways li").first().find("input[type=radio]").click()}),a(function(){a('input[name="first_name"], input[name="last_name"]').on("change keyup",function(){var b,c=a.makeArray(a('input[name="first_name"], input[name="last_name"]').map(function(){if(b=a(this).val())return b})).join(" ");a('input[name="display_name"]').val(c)})}),a(function(a){a('.wpuf-form-add input[name="dokan_store_name"]').on("focusout",function(){var b=a(this).val().toLowerCase().replace(/-+/g,"").replace(/\s+/g,"-").replace(/[^a-z0-9-]/g,"");a('input[name="shopurl"]').val(b),a("#url-alart").text(b),a('input[name="shopurl"]').focus()}),a('.wpuf-form-add input[name="shopurl"]').keydown(function(b){a(this).val();-1!==a.inArray(b.keyCode,[46,8,9,27,13,91,109,110,173,189,190])||65==b.keyCode&&!0===b.ctrlKey||b.keyCode>=35&&b.keyCode<=39||(b.shiftKey||(b.keyCode<65||b.keyCode>90)&&(b.keyCode<48||b.keyCode>57))&&(b.keyCode<96||b.keyCode>105)&&b.preventDefault()}),a('.wpuf-form-add input[name="shopurl"]').keyup(function(b){a("#url-alart").text(a(this).val())}),a('.wpuf-form-add input[name="shopurl"]').on("focusout",function(){var b=a(this),c={action:"shop_url",url_slug:b.val(),_nonce:dokan.nonce};""!==b.val()&&a.post(dokan.ajaxurl,c,function(b){0==b?(a("#url-alart").removeClass("text-success").addClass("text-danger"),a("#url-alart-mgs").removeClass("text-success").addClass("text-danger").text(dokan.seller.notAvailable)):(a("#url-alart").removeClass("text-danger").addClass("text-success"),a("#url-alart-mgs").removeClass("text-danger").addClass("text-success").text(dokan.seller.available))})}),a(".wpuf-form-add #wpuf-map-add-location").attr("name","find_address")})}(jQuery,window);
1
+ !function(a,b){a.fn.listautowidth=function(){return this.each(function(){var b=a(this).width(),c=b/a(this).children("li").length;a(this).children("li").each(function(){var b=a(this).outerWidth(!0)-a(this).width();a(this).width(c-b)})})},b.WP_User_Frontend={init:function(){this.enableMultistep(this),a(".wpuf-form").on("click","img.wpuf-clone-field",this.cloneField),a(".wpuf-form").on("click","img.wpuf-remove-field",this.removeField),a(".wpuf-form").on("click","a.wpuf-delete-avatar",this.deleteAvatar),a(".wpuf-form").on("click","a#wpuf-post-draft",this.draftPost),a(".wpuf-form").on("click","button#wpuf-account-update-profile",this.account_update_profile),a(".wpuf-form-add").on("submit",this.formSubmit),a("form#post").on("submit",this.adminPostSubmit),b.matchMedia("(max-width: 600px)").matches&&(a("table.items-table tr td .post-edit-icon").click(function(b){b.preventDefault(),a(this).parents("tr").find(".data-column").toggleClass("flex-column"),a(this).toggleClass("toggle-icon")}),a(".wpuf-dashboard-navigation ul li:first-child").after().click(function(b){b.preventDefault(),a(".wpuf-dashboard-navigation ul li").not(":first").toggle()})),a(".wpuf-form").on("step-change-fieldset",function(a,b,c){if(wpuf_plupload_items.length)for(var d=wpuf_plupload_items.length-1;d>=0;d--)wpuf_plupload_items[d].refresh();if(wpuf_map_items.length)for(var d=wpuf_map_items.length-1;d>=0;d--)google.maps.event.trigger(wpuf_map_items[d].map,"resize"),wpuf_map_items[d].map.setCenter(wpuf_map_items[d].center)}),this.ajaxCategory(),a(':submit[name="wpuf_user_subscription_cancel"]').click(function(b){b.preventDefault(),swal({text:wpuf_frontend.cancelSubMsg,type:"warning",showCancelButton:!0,confirmButtonColor:"#d54e21",confirmButtonText:wpuf_frontend.delete_it,cancelButtonText:wpuf_frontend.cancel_it,confirmButtonClass:"btn btn-success",cancelButtonClass:"btn btn-danger"}).then(function(b){if(!b)return!1;a("#wpuf_cancel_subscription").submit()})}),this.warningOnExit(),this.handleReadOnly()},warningOnExit:function(){a('input[name="submit"], #wpuf-post-draft').on("click",function(){b.onbeforeunload=null}),a(".wpuf-form-add").on("change",function(){a(".wpuf-form-add input, .wpuf-form-add select, .wpuf-form-add textarea").each(function(c){"hidden"===a(this).attr("type")&&"submit"===a(this).attr("type")&&-1===a(this).val()||(b.onbeforeunload=function(){return"you have changes"})})})},handleReadOnly:function(){a(".wpuf-form .read-only").each(function(){a("input, select, textarea",this).each(function(){a(this).attr("disabled",!0)})})},check_pass_strength:function(){var b=a("#pass1").val();if(a("#pass-strength-result").show(),a("#pass-strength-result").removeClass("short bad good strong"),!b)return a("#pass-strength-result").html("&nbsp;"),void a("#pass-strength-result").hide();if(void 0!==wp.passwordStrength)switch(wp.passwordStrength.meter(b,wp.passwordStrength.userInputBlacklist(),b)){case 2:a("#pass-strength-result").addClass("bad").html(pwsL10n.bad);break;case 3:a("#pass-strength-result").addClass("good").html(pwsL10n.good);break;case 4:a("#pass-strength-result").addClass("strong").html(pwsL10n.strong);break;case 5:a("#pass-strength-result").addClass("short").html(pwsL10n.mismatch);break;default:a("#pass-strength-result").addClass("short").html(pwsL10n.short)}},enableMultistep:function(c){var d=this,e=0,f=a(':hidden[name="wpuf_multistep_type"]').val();if(null!=f){if(a("fieldset.wpuf-multistep-fieldset").find(".wpuf-multistep-prev-btn").first().remove(),a("fieldset.wpuf-multistep-fieldset").find(".wpuf-multistep-next-btn").last().remove(),a(".wpuf-form fieldset").removeClass("field-active").first().addClass("field-active"),"progressive"==f&&0!=a(".wpuf-form .wpuf-multistep-fieldset").length){a("fieldset.wpuf-multistep-fieldset legend").first();a(".wpuf-multistep-progressbar").html('<div class="wpuf-progress-percentage"></div>');var g=a(".wpuf-multistep-progressbar"),h=a(".wpuf-progress-percentage");a(".wpuf-multistep-progressbar").progressbar({change:function(){h.text(g.progressbar("value")+"%")}}),a(".wpuf-multistep-fieldset legend").hide()}else a(".wpuf-form").each(function(){var b=a(this),c=a(".wpuf-multistep-progressbar",b),d="";c.addClass("wizard-steps"),d+='<ul class="wpuf-step-wizard">',a(".wpuf-multistep-fieldset",this).each(function(){d+="<li>"+a.trim(a("legend",this).text())+"</li>",a("legend",this).hide()}),d+="</ul>",c.append(d),a(".wpuf-step-wizard li",c).first().addClass("active-step"),a(".wpuf-step-wizard",c).listautowidth()});this.change_fieldset(e,f),a("fieldset .wpuf-multistep-prev-btn, fieldset .wpuf-multistep-next-btn").click(function(g){if(a(this).hasClass("wpuf-multistep-next-btn")){0!=d.formStepCheck("",a(this).closest("fieldset"))&&c.change_fieldset(++e,f)}else a(this).hasClass("wpuf-multistep-prev-btn")&&c.change_fieldset(--e,f);var h=a("form.wpuf-form-add"),i=h.offset().top;return b.scrollTo({top:i-32,behavior:"smooth"}),!1})}},change_fieldset:function(b,c){var d=a("fieldset.wpuf-multistep-fieldset").eq(b);a("fieldset.wpuf-multistep-fieldset").removeClass("field-active").eq(b).addClass("field-active"),a(".wpuf-step-wizard li").each(function(){a(this).index()<=b?"step_by_step"==c?a(this).addClass("passed-wpuf-ms-bar"):a(".wpuf-ps-bar",this).addClass("passed-wpuf-ms-bar"):"step_by_step"==c?a(this).removeClass("passed-wpuf-ms-bar"):a(".wpuf-ps-bar",this).removeClass("passed-wpuf-ms-bar")}),a(".wpuf-step-wizard li").removeClass("wpuf-ms-bar-active active-step completed-step"),a(".passed-wpuf-ms-bar").addClass("completed-step").last().addClass("wpuf-ms-bar-active"),a(".wpuf-ms-bar-active").addClass("active-step");var e=a("fieldset.wpuf-multistep-fieldset").eq(b).find("legend").text();if(e=a.trim(e),"progressive"==c&&0!=a(".wpuf-form .wpuf-multistep-fieldset").length){var f=100*(b+1)/a("fieldset.wpuf-multistep-fieldset").length,f=Number(f.toFixed(2));a(".wpuf-multistep-progressbar").progressbar({value:f}),a(".wpuf-progress-percentage").text(e+" ("+f+"%)")}a(".wpuf-form").trigger("step-change-fieldset",[b,d])},ajaxCategory:function(){a(".category-wrap").on("change",".cat-ajax",function(){var b=a(this).data("form-id");currentLevel=parseInt(a(this).parent().attr("level")),WP_User_Frontend.getChildCats(a(this),currentLevel+1,"category",b)})},getChildCats:function(b,c,d,e){var f=a(b).val(),g="wpuf-category-dropdown-lvl-"+c,d=void 0!==d?d:"category",h=a(b).siblings("span").data("taxonomy");a.ajax({type:"post",url:wpuf_frontend.ajaxurl,data:{action:"wpuf_get_child_cat",catID:f,nonce:wpuf_frontend.nonce,field_attr:h,form_id:e},beforeSend:function(){a(b).parent().parent().next(".loading").addClass("wpuf-loading")},complete:function(){a(b).parent().parent().next(".loading").removeClass("wpuf-loading")},success:function(e){a(b).parent().nextAll().each(function(){a(this).remove()}),""!=e&&(a(b).parent().addClass("hasChild").parent().append('<div id="'+g+'" level="'+c+'"></div>'),b.parent().parent().find("#"+g).html(e).slideDown("fast")),a(document).trigger("wpuf-ajax-fetched-child-categories",g,c,d)}})},cloneField:function(b){b.preventDefault();var c=a(this).closest("tr"),d=c.clone();d.find("input").val(""),d.find(":checked").attr("checked",""),c.after(d)},removeField:function(){var b=a(this).closest("tr");b.siblings().addBack().length>1&&b.remove()},adminPostSubmit:function(b){b.preventDefault();var c=a(this);if(WP_User_Frontend.validateForm(c))return!0},draftPost:function(b){b.preventDefault();var c=a(this),d=a(this).closest("form"),e=d.serialize()+"&action=wpuf_draft_post",f=d.find('input[type="hidden"][name="post_id"]').val(),g=[];a(".wpuf-rich-validation").each(function(b,c){var c=a(c),d=c.data("id"),e=c.data("name"),f=a.trim(tinyMCE.get(d).getContent());g.push(e+"="+encodeURIComponent(f))}),e=e+"&"+g.join("&"),c.after(' <span class="wpuf-loading"></span>'),a.post(wpuf_frontend.ajaxurl,e,function(b){if(void 0===f){var e='<input type="hidden" name="post_id" value="'+b.post_id+'">';e+='<input type="hidden" name="post_date" value="'+b.date+'">',e+='<input type="hidden" name="post_author" value="'+b.post_author+'">',e+='<input type="hidden" name="comment_status" value="'+b.comment_status+'">',d.append(e)}c.next("span.wpuf-loading").remove(),c.after('<span class="wpuf-draft-saved">&nbsp; '+b.message+"</span>"),a(".wpuf-draft-saved").delay(2500).fadeOut("fast",function(){a(this).remove()})})},account_update_profile:function(b){b.preventDefault();var c=a(this).closest("form");a.post(wpuf_frontend.ajaxurl,c.serialize(),function(a){a.success?(c.find(".wpuf-error").hide(),c.find(".wpuf-success").show()):(c.find(".wpuf-success").hide(),c.find(".wpuf-error").show(),c.find(".wpuf-error").text(a.data))})},formStepCheck:function(a,b){var c=b,d=(c.find("input[type=submit]"),WP_User_Frontend.validateForm(c));return 0==d&&WP_User_Frontend.addErrorNotice(self,"bottom"),d},formSubmit:function(c){c.preventDefault();var d=a(this),e=d.find("input[type=submit]");form_data=WP_User_Frontend.validateForm(d),form_data&&(d.find("li.wpuf-submit").append('<span class="wpuf-loading"></span>'),e.attr("disabled","disabled").addClass("button-primary-disabled"),a.post(wpuf_frontend.ajaxurl,form_data,function(c){if(c.success)a("body").trigger("wpuf:postform:success",c),1==c.show_message?(d.before('<div class="wpuf-success">'+c.message+"</div>"),d.slideUp("fast",function(){d.remove()}),a("html, body").animate({scrollTop:a(".wpuf-success").offset().top-100},"fast")):b.location=c.redirect_to;else{if(void 0!==c.type&&"login"===c.type)return void(confirm(c.error)?b.location=c.redirect_to:(e.removeAttr("disabled"),e.removeClass("button-primary-disabled"),d.find("span.wpuf-loading").remove()));d.find(".g-recaptcha").length>0&&grecaptcha.reset(),swal({html:c.error,type:"warning",showCancelButton:!1,confirmButtonColor:"#d54e21",confirmButtonText:"OK",cancelButtonClass:"btn btn-danger"}),e.removeAttr("disabled")}e.removeClass("button-primary-disabled"),d.find("span.wpuf-loading").remove()}))},isTelephoneField:function(b){return a(b).hasClass("wpuf_telephone")&&"yes"===a(b).data("show-list")},validateForm:function(c){var d=!1,e="",f=[];if(WP_User_Frontend.removeErrors(c),WP_User_Frontend.removeErrorNotice(c),c.find("input:visible, textarea:visible, select:visible, .wpuf-rich-validation").each(function(g,h){var i=a(h).attr("type"),j=a(h).data("type"),k=a(h).data("required"),l="";switch(j){case"rich":var m=a(h).data("id"),h=a(h),n=h.data("id"),o=h.data("name");l=a.trim(tinyMCE.get(n).getContent()),"yes"===k&&""===l&&(d=!0,e="required",WP_User_Frontend.markError(h)),f.push(o+"="+encodeURIComponent(l));break;case"textarea":case"text":if(l=a.trim(a(h).val()),"yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}if(WP_User_Frontend.isTelephoneField(h)){var p=b.intlTelInputGlobals.getInstance(h);if(""!==p.getNumber()&&!p.isValidNumber()){d=!0,e="validation",WP_User_Frontend.markError(h,e);break}var m=a(h).attr("name"),q=p.getNumber();a("<input>").attr("type","hidden").attr("name",m).attr("value",q).appendTo(c);break}if("url"===i&&""!==l&&!WP_User_Frontend.isValidURL(l)){d=!0,e="validation",WP_User_Frontend.markError(h,e);break}d=WP_User_Frontend.editorLimit.checkRestrictionError(h);break;case"password":case"confirm_password":var r=a(h).data("repeat");if(l=a.trim(a(h).val()),"yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}if(r){var s=a('[data-type="confirm_password"]').eq(0);s.val()!=l&&(d=!0,e="mismatch",WP_User_Frontend.markError(s,e))}break;case"select":l=a(h).val(),"yes"===k&&"-1"==l&&(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"multiselect":l=a(h).val(),"yes"===k&&0===l.length&&(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"tax-checkbox":var t=a(h).children().find("input:checked").length;"yes"!==k||t||(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"radio":var t=a(h).find("input:checked").length;"yes"!==k||t||(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"file":var t=a(h).find("ul").children().length;"yes"!==k||t||(d=!0,e="required",WP_User_Frontend.markError(h,e));break;case"email":if(l=a(h).val(),"yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}""===l||WP_User_Frontend.isValidEmail(l)||(d=!0,e="validation",WP_User_Frontend.markError(h,e));break;case"url":var l=a(h).val();if("yes"===k&&""===l){d=!0,e="required",WP_User_Frontend.markError(h,e);break}""===l||WP_User_Frontend.isValidURL(l)||(d=!0,e="validation",WP_User_Frontend.markError(h,e));break;default:if(a(h).attr("id")&&a(h).attr("id").startsWith("wpuf-map")){var u=a(h).parents(".wpuf-form-google-map-container");map_field=a(u).find('input[id^="wpuf-map-lat"]'),k=a(map_field).data("required"),l=a(map_field).val(),"yes"==k&&""==l&&(d=!0,e="required",WP_User_Frontend.markError(u,e))}}if(d)return WP_User_Frontend.markError(h,e),!1}),c.find('li.wpuf-el[style*="display: none"] input').each(function(b,c){switch(a(c).attr("type")){case"url":case"email":a(c).val("")}}),d)return WP_User_Frontend.addErrorNotice(c,"end"),!1;var g=c.serialize();return g=g+"&"+f.join("&")},addErrorNotice:function(b,c){"bottom"==c?a(".wpuf-multistep-fieldset:visible").append('<div class="wpuf-errors">'+wpuf_frontend.error_message+"</div>"):a(b).find("li.wpuf-submit").append('<div class="wpuf-errors">'+wpuf_frontend.error_message+"</div>")},removeErrorNotice:function(b){a(b).find(".wpuf-errors").remove()},markError:function(b,c){if(a(b).closest("div").addClass("has-error"),c){var d="",e=a(b).data("label");switch(d=e||a(b).closest("li").data("label"),c){case"required":case"mismatch":case"validation":d=d+" "+error_str_obj[c];break;case"limit":d=""}a(b).siblings(".wpuf-error-msg").remove(),"DIV"!==a(b).prev().prop("nodeName")||a(b).hasClass("wpuf_telephone")?a(b).after('<div class="wpuf-error-msg">'+d+"</div>"):a(b).append('<div class="wpuf-error-msg">'+d+"</div>")}a(b).focus()},removeErrors:function(b){a(b).find(".has-error").removeClass("has-error"),a(".wpuf-error-msg").remove()},isValidEmail:function(a){return new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i).test(a)},isValidURL:function(a){return new RegExp("^(http:\\/\\/www\\.|https:\\/\\/www\\.|http:\\/\\/|https:\\/\\/){1}[a-z0-9]+([\\-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,20}(:[0-9]{1,20})?(\\/.*)?$").test(a)},insertImage:function(b,c){if(a("#"+b).length){var d=new plupload.Uploader({runtimes:"html5,html4",browse_button:b,container:"wpuf-insert-image-container",multipart:!0,multipart_params:{action:"wpuf_insert_image",form_id:a("#"+b).data("form_id")},multiple_queues:!1,multi_selection:!1,urlstream_upload:!0,file_data_name:"wpuf_file",max_file_size:wpuf_frontend_upload.max_filesize,url:wpuf_frontend_upload.plupload.url,flash_swf_url:wpuf_frontend_upload.flash_swf_url,filters:[{title:"Allowed Files",extensions:"jpg,jpeg,gif,png,bmp"}]});d.bind("Init",function(a,b){}),d.bind("FilesAdded",function(b,c){var d=a("#wpuf-insert-image-container");a.each(c,function(a,b){d.append('<div class="upload-item" id="'+b.id+'"><div class="progress progress-striped active"><div class="bar"></div></div></div>')}),b.refresh(),b.start()}),d.bind("QueueChanged",function(a){d.start()}),d.bind("UploadProgress",function(b,c){var d=a("#"+c.id);a(".bar",d).css({width:c.percent+"%"}),a(".percent",d).html(c.percent+"%")}),d.bind("Error",function(a,b){alert("Error #"+b.code+": "+b.message)}),d.bind("FileUploaded",function(b,d,e){if(a("#"+d.id).remove(),"error"!==e.response){if("undefined"!=typeof tinyMCE)if("function"!=typeof tinyMCE.execInstanceCommand){var f=tinyMCE.get("post_content_"+c);null!==f&&f.insertContent(e.response)}else tinyMCE.execInstanceCommand("post_content_"+c,"mceInsertContent",!1,e.response);var g=a("#post_content_"+c);g.val(g.val()+e.response)}else alert("Something went wrong")}),d.init()}},deleteAvatar:function(b){b.preventDefault(),confirm(a(this).data("confirm"))&&a.post(wpuf_frontend.ajaxurl,{action:"wpuf_delete_avatar",_wpnonce:wpuf_frontend.nonce},function(){a(b.target).parent().remove(),a("[id^=wpuf-avatar]").css("display","")})},editorLimit:{bind:function(b,c,d,e,f){"no"===d?(a("textarea#"+c).keydown(function(a){WP_User_Frontend.editorLimit.textLimit.call(this,a,b,e,f)}),a("input#"+c).keydown(function(a){WP_User_Frontend.editorLimit.textLimit.call(this,a,b,e,f)}),a("input#"+c).change(function(a){WP_User_Frontend.editorLimit.textLimit.call(this,a,b,e,f)}),a("textarea#"+c).on("paste",function(c){var d=a(this);setTimeout(function(){WP_User_Frontend.editorLimit.textLimit.call(d,c,b,e,f)},100)}),a("input#"+c).on("paste",function(c){var d=a(this);setTimeout(function(){WP_User_Frontend.editorLimit.textLimit.call(d,c,b,e,f)},100)})):setTimeout(function(){tinyMCE.get(c).onKeyDown.add(function(a,c){WP_User_Frontend.editorLimit.tinymce.onKeyDown(a,c,b,e,f)}),tinyMCE.get(c).onPaste.add(function(a,c){setTimeout(function(){WP_User_Frontend.editorLimit.tinymce.onPaste(a,c,b,e,f)},100)})},1e3)},checkTinyMCERestriction:function(b,c,d){var e=0,f=void 0!==c[0]&&null!==c[0]?parseInt(c[0]):0,g=(void 0!==c[1]&&null!==c[1]&&c[1].trim(),void 0!==c[2]&&null!==c[2]&&c[2].trim(),void 0!==c[3]&&null!==c[3]?c[3].trim():""),h=void 0!==c[4]&&null!==c[4]?c[4].trim():"";e="word"===g?WP_User_Frontend.editorLimit.tinymce.getStats(d).words:WP_User_Frontend.editorLimit.tinymce.getStats(d).chars+1;wpuf_frontend["word_"+h];return e>1&&e>f&&"max"===h?(WP_User_Frontend.markError(b,"limit"),jQuery(".mce-path-item.mce-last",d.container).html(wpuf_frontend["word_"+h]+" "+e+"/"+f),!0):e<f&&"min"===h&&e>1?(WP_User_Frontend.markError(b,"limit"),jQuery(".mce-path-item.mce-last",d.container).html(wpuf_frontend["word_"+h]+" "+e+"/"+f),!0):(a(b).hasClass("has-error")&&a(b).removeClass("has-error"),!1)},checkRestrictionError:function(b){var c=a(b).attr("id"),d=!1,e=null,f=0,g="";if("undefined"!=typeof tinyMCE&&null!==tinyMCE.get(c)&&(d=!0,e=tinyMCE.get(c),e.focus()),a(b).closest("li.wpuf-el").find("script").html()){var h=a(b).closest("li.wpuf-el").find("script").html();g=h.match(/(?:bind\()(.*?(?=\)))/)?h.match(/(?:bind\()(.*?(?=\)))/)[1].replace(/['"]/g,"").split(","):""}if(d)return WP_User_Frontend.editorLimit.checkTinyMCERestriction(b,g,e);var i=void 0!==g[0]&&null!==g[0]?parseInt(g[0]):0,c=void 0!==g[1]&&null!==g[1]?g[1].trim():"",j=(void 0!==g[2]&&null!==g[2]&&g[2].trim(),void 0!==g[3]&&null!==g[3]&&g[3].trim(),void 0!==g[4]&&null!==g[4]?g[4].trim():"");f=a(b).val().length;wpuf_frontend["word_"+j];return f>1&&f>i&&"max"===j?(WP_User_Frontend.markError(b,"limit"),!0):f<i&&"min"===j&&f>1?(WP_User_Frontend.markError(b,"limit"),!0):(a(b).hasClass("has-error")&&a(b).removeClass("has-error"),!1)},tinymce:{getStats:function(a){var b=a.getBody(),c=tinymce.trim(b.innerText||b.textContent);return{chars:c.length,words:c.split(/[\w\u2019\'-]+/).length}},onKeyDown:function(b,c,d,e,f){var g=a(".wpuf-fields.wpuf_"+b.id),h=WP_User_Frontend.editorLimit.tinymce.getStats(b).chars+1;"word"===e&&(h=WP_User_Frontend.editorLimit.tinymce.getStats(b).words),d&&h>d&&"max"===f?(WP_User_Frontend.editorLimit.blockTyping(c),WP_User_Frontend.markError(g,"limit"),jQuery(".mce-path-item.mce-last",b.container).html(wpuf_frontend["word_"+f]+" "+h+"/"+d)):d&&h<d&&"min"===f?(WP_User_Frontend.markError(g,"limit"),jQuery(".mce-path-item.mce-last",b.container).html(wpuf_frontend["word_"+f]+" "+h+"/"+d)):(g.removeClass("has-error"),jQuery(".mce-path-item.mce-last",b.container).html(""))},onPaste:function(a,b,c){var d=a.getContent().split(" ").slice(0,c).join(" ");a.setContent(d),WP_User_Frontend.editorLimit.make_media_embed_code(d,a)}},textLimit:function(b,c,d,e){var f=a(this),g=f.val().length+1,h=f.val();"word"===d&&(g=f.val().split(" ").length),c&&g>c&&"max"===e?(WP_User_Frontend.content_limit_message(f,d,e,c),WP_User_Frontend.editorLimit.blockTyping(b)):c&&g<c&&"min"===e?WP_User_Frontend.content_limit_message(f,d,e,c):(f.closest("li").removeClass("has-error"),f.closest(".wpuf-fields").find("span.wpuf-wordlimit-message").html("")),"paste"===b.type&&(f.val(h.substring(0,c)),"word"===d&&f.val(h.slice(0,c).join(" ")))},blockTyping:function(b){-1!==a.inArray(b.keyCode,[46,8,9,27,13,110,190,189])||65==b.keyCode&&!0===b.ctrlKey||b.keyCode>=35&&b.keyCode<=40||(b.preventDefault(),b.stopPropagation())},make_media_embed_code:function(b,c){a.post(ajaxurl,{action:"make_media_embed_code",content:b},function(a){c.setContent(c.getContent()+c.setContent(a))})}},doUncheckRadioBtn:function(a){a.checked=!1},content_limit_message:function(a,b,c,d){WP_User_Frontend.markError(a,"limit");var e="";"word"===b&&(e=wpuf_frontend["word_"+c]+" "+d),"character"===b&&(e=wpuf_frontend["char_"+c]+" "+d),a.closest(".wpuf-fields").find("span.wpuf-wordlimit-message").html(e)}},a(function(){if(WP_User_Frontend.init(),a("ul.wpuf-payment-gateways").on("click","input[type=radio]",function(b){a(".wpuf-payment-instruction").slideUp(250),a(this).parents("li").find(".wpuf-payment-instruction").slideDown(250)}),a("ul.wpuf-payment-gateways li").find("input[type=radio]").is(":checked")){a("ul.wpuf-payment-gateways li").find("input[type=radio]:checked").parents("li").find(".wpuf-payment-instruction").slideDown(250)}else a("ul.wpuf-payment-gateways li").first().find("input[type=radio]").click()}),a(function(){a('input[name="first_name"], input[name="last_name"]').on("change keyup",function(){var b,c=a.makeArray(a('input[name="first_name"], input[name="last_name"]').map(function(){if(b=a(this).val())return b})).join(" ");a('input[name="display_name"]').val(c)})}),a(function(a){a('.wpuf-form-add input[name="dokan_store_name"]').on("focusout",function(){var b=a(this).val().toLowerCase().replace(/-+/g,"").replace(/\s+/g,"-").replace(/[^a-z0-9-]/g,"");a('input[name="shopurl"]').val(b),a("#url-alart").text(b),a('input[name="shopurl"]').focus()}),a('.wpuf-form-add input[name="shopurl"]').keydown(function(b){a(this).val();-1!==a.inArray(b.keyCode,[46,8,9,27,13,91,109,110,173,189,190])||65==b.keyCode&&!0===b.ctrlKey||b.keyCode>=35&&b.keyCode<=39||(b.shiftKey||(b.keyCode<65||b.keyCode>90)&&(b.keyCode<48||b.keyCode>57))&&(b.keyCode<96||b.keyCode>105)&&b.preventDefault()}),a('.wpuf-form-add input[name="shopurl"]').keyup(function(b){a("#url-alart").text(a(this).val())}),a('.wpuf-form-add input[name="shopurl"]').on("focusout",function(){var b=a(this),c={action:"shop_url",url_slug:b.val(),_nonce:dokan.nonce};""!==b.val()&&a.post(dokan.ajaxurl,c,function(b){0==b?(a("#url-alart").removeClass("text-success").addClass("text-danger"),a("#url-alart-mgs").removeClass("text-success").addClass("text-danger").text(dokan.seller.notAvailable)):(a("#url-alart").removeClass("text-danger").addClass("text-success"),a("#url-alart-mgs").removeClass("text-danger").addClass("text-success").text(dokan.seller.available))})}),a(".wpuf-form-add #wpuf-map-add-location").attr("name","find_address")})}(jQuery,window);
assets/js/promotion.json CHANGED
@@ -1,9 +1,9 @@
1
  {
2
- "key": "wpuf-superbowl2022",
3
- "start_date": "2022-02-07 11:00:00 EST",
4
- "end_date": "2022-02-15 23:00:00 EST",
5
- "title": "Super Bowl Sale",
6
- "content": "Super Bowl Sale. Touchdown with Up To 35% OFF on WP User Frontend Pro.",
7
- "action_url": "https://wedevs.com/wp-user-frontend-pro/pricing?utm_medium=dashboard&utm_source=wordpress-wpuf-superbowl2022",
8
- "action_title": "Join the Huddle"
9
  }
1
  {
2
+ "key": "wpdasboardeid-mubarak",
3
+ "start_date": "2022-04-27 8:00:00 EST",
4
+ "end_date": "2022-05-06 22:00:00 EST",
5
+ "title": "Eid Mubarak. ",
6
+ "content": "Wishing You Love, Prosperity, and Joy. Enjoy Up To 40% OFF on WP User Frontend Pro",
7
+ "action_url": "https://wedevs.com/wp-user-frontend-pro/pricing?utm_medium=text&utm_source=wpdasboardeid-mubarak",
8
+ "action_title": "Get Now"
9
  }
changelog.txt CHANGED
@@ -1,3 +1,8 @@
 
 
 
 
 
1
  = v3.5.27 (15 Mar, 2022) =
2
 
3
  * Enhancement - Email template enhanced for after activation
1
+ = v3.5.28 (17 Jun, 2022) =
2
+
3
+ * Tweak - Updated compatibility with the latest version of WordPress 6.0
4
+ * Tweak - Improved some backend implementations
5
+
6
  = v3.5.27 (15 Mar, 2022) =
7
 
8
  * Enhancement - Email template enhanced for after activation
includes/class-frontend-form-post.php CHANGED
@@ -290,6 +290,7 @@ class WPUF_Frontend_Form extends WPUF_Frontend_Render_Form {
290
  'post_author' => get_current_user_id(),
291
  'comment_status' => get_option( 'default_comment_status' ),
292
  'url' => add_query_arg( 'preview', 'true', get_permalink( $post_id ) ),
 
293
  ]
294
  );
295
 
290
  'post_author' => get_current_user_id(),
291
  'comment_status' => get_option( 'default_comment_status' ),
292
  'url' => add_query_arg( 'preview', 'true', get_permalink( $post_id ) ),
293
+ 'message' => __( 'Post Saved', 'wp-user-frontend' ),
294
  ]
295
  );
296
 
languages/wp-user-frontend.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL2 or later.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP User Frontend 3.5.27\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2022-03-16 09:30:00+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -383,7 +383,7 @@ msgstr ""
383
 
384
  #: admin/class-tools.php:43 admin/class-tools.php:106
385
  #: admin/post-forms-list-table.php:43 class/transactions-list-table.php:95
386
- #: includes/class-list-table-subscribers.php:136 wpuf-functions.php:3439
387
  msgid "All"
388
  msgstr ""
389
 
@@ -683,7 +683,7 @@ msgid "Form Editor"
683
  msgstr ""
684
 
685
  #: admin/form-builder/views/form-builder.php:15
686
- #: admin/html/form-settings-post.php:23
687
  msgid "Preview"
688
  msgstr ""
689
 
@@ -1437,917 +1437,925 @@ msgid "Contact Support"
1437
  msgstr ""
1438
 
1439
  #: admin/html/whats-new.php:8
1440
- msgid "Email template enhanced for after activation"
1441
  msgstr ""
1442
 
1443
  #: admin/html/whats-new.php:12
 
 
 
 
 
 
 
 
1444
  msgid "Read only option for custom field"
1445
  msgstr ""
1446
 
1447
- #: admin/html/whats-new.php:16
1448
  msgid "Editor toolbar exclude option enhanced"
1449
  msgstr ""
1450
 
1451
- #: admin/html/whats-new.php:20
1452
  msgid "Preview option enhanced for user profile"
1453
  msgstr ""
1454
 
1455
- #: admin/html/whats-new.php:24
1456
  msgid "Meta key enhanced for user email notification"
1457
  msgstr ""
1458
 
1459
- #: admin/html/whats-new.php:28
1460
  msgid "Global option for disable post edit on account"
1461
  msgstr ""
1462
 
1463
- #: admin/html/whats-new.php:32
1464
  msgid "Filter for conditional logic for fields added"
1465
  msgstr ""
1466
 
1467
- #: admin/html/whats-new.php:36
1468
  msgid "PHP 8 compatibility handled"
1469
  msgstr ""
1470
 
1471
- #: admin/html/whats-new.php:40
1472
  msgid "Address / Billing address inconsistency handled"
1473
  msgstr ""
1474
 
1475
- #: admin/html/whats-new.php:44
1476
  msgid "Content restriction several issue fixed"
1477
  msgstr ""
1478
 
1479
- #: admin/html/whats-new.php:48
1480
  msgid "Tax calculation properly handled for all areas"
1481
  msgstr ""
1482
 
1483
- #: admin/html/whats-new.php:52
1484
  msgid "Validation added for invalid email and URL formats"
1485
  msgstr ""
1486
 
1487
- #: admin/html/whats-new.php:56
1488
  msgid "Special character password handled for login"
1489
  msgstr ""
1490
 
1491
- #: admin/html/whats-new.php:60
1492
  msgid "Reset password handled for sidebar widget"
1493
  msgstr ""
1494
 
1495
- #: admin/html/whats-new.php:64
1496
  msgid "Required google map issues handled"
1497
  msgstr ""
1498
 
1499
- #: admin/html/whats-new.php:68
1500
  msgid "Translation related issue handled for admin menu"
1501
  msgstr ""
1502
 
1503
- #: admin/html/whats-new.php:72
1504
  msgid "Label & query enhanced for transaction table"
1505
  msgstr ""
1506
 
1507
- #: admin/html/whats-new.php:76
1508
  msgid "Template override for child theme fixed"
1509
  msgstr ""
1510
 
1511
- #: admin/html/whats-new.php:80
1512
  msgid "Custom field modal handled for registration form"
1513
  msgstr ""
1514
 
1515
- #: admin/html/whats-new.php:84
1516
  msgid "Redundant CSS issues handled"
1517
  msgstr ""
1518
 
1519
- #: admin/html/whats-new.php:88
1520
  msgid "Address field inconsistency fixed"
1521
  msgstr ""
1522
 
1523
- #: admin/html/whats-new.php:92
1524
  msgid "Plugin page spin loading issue handled"
1525
  msgstr ""
1526
 
1527
- #: admin/html/whats-new.php:96
1528
  msgid "Warning on exit for draft post fixed"
1529
  msgstr ""
1530
 
1531
- #: admin/html/whats-new.php:100
1532
  msgid "Unlimited expire on admin user profile handled"
1533
  msgstr ""
1534
 
1535
- #: admin/html/whats-new.php:104
1536
  msgid "No value checkbox issue handled"
1537
  msgstr ""
1538
 
1539
- #: admin/html/whats-new.php:108
1540
  msgid "Tag search security Vulnerability handled"
1541
  msgstr ""
1542
 
1543
- #: admin/html/whats-new.php:112
1544
  msgid "Multi dropdown field error handled"
1545
  msgstr ""
1546
 
1547
- #: admin/html/whats-new.php:123
1548
  msgid "Promotion notice enhanced through api"
1549
  msgstr ""
1550
 
1551
- #: admin/html/whats-new.php:134
1552
  msgid "Security Vulnerability fixed"
1553
  msgstr ""
1554
 
1555
- #: admin/html/whats-new.php:145
1556
  msgid "Featured item for subscriber"
1557
  msgstr ""
1558
 
1559
- #: admin/html/whats-new.php:149
1560
  msgid "Warning added for unsaved form data on frontend"
1561
  msgstr ""
1562
 
1563
- #: admin/html/whats-new.php:153
1564
  msgid "Settings page search implemented"
1565
  msgstr ""
1566
 
1567
- #: admin/html/whats-new.php:157
1568
  msgid "Editor added for registration form email template"
1569
  msgstr ""
1570
 
1571
- #: admin/html/whats-new.php:161
1572
  msgid "Fallback pay per post not working with when draft enabled"
1573
  msgstr ""
1574
 
1575
- #: admin/html/whats-new.php:165
1576
  msgid "User Dashboard responsive issues fixed"
1577
  msgstr ""
1578
 
1579
- #: admin/html/whats-new.php:169
1580
  msgid "Showing wrong license expire message handled"
1581
  msgstr ""
1582
 
1583
- #: admin/html/whats-new.php:173
1584
  msgid "Remove expire cron handled for once daily"
1585
  msgstr ""
1586
 
1587
- #: admin/html/whats-new.php:177
1588
  msgid "Billing address validation handled"
1589
  msgstr ""
1590
 
1591
- #: admin/html/whats-new.php:181
1592
  msgid "Promotion notice restricted for WPUF menu"
1593
  msgstr ""
1594
 
1595
- #: admin/html/whats-new.php:192
1596
  msgid "reCaptcha issue with other plugin handled"
1597
  msgstr ""
1598
 
1599
- #: admin/html/whats-new.php:196
1600
  msgid "Multiple post type for wpuf dashboard not working fixed"
1601
  msgstr ""
1602
 
1603
- #: admin/html/whats-new.php:200
1604
  msgid "Billing address ajax request issue handled"
1605
  msgstr ""
1606
 
1607
- #: admin/html/whats-new.php:204
1608
  msgid "Halloween promotion notice added"
1609
  msgstr ""
1610
 
1611
- #: admin/html/whats-new.php:215
1612
  msgid "Content restriction for minimum, maximum value enhanced"
1613
  msgstr ""
1614
 
1615
- #: admin/html/whats-new.php:219
1616
  msgid "New option for redirection after pay per post payment in form setting"
1617
  msgstr ""
1618
 
1619
- #: admin/html/whats-new.php:223
1620
  msgid "Controller added for various email notification"
1621
  msgstr ""
1622
 
1623
- #: admin/html/whats-new.php:227
1624
  msgid "Placeholder added for unauth message option"
1625
  msgstr ""
1626
 
1627
- #: admin/html/whats-new.php:231
1628
  msgid "Subscription Post expiration option change to input field"
1629
  msgstr ""
1630
 
1631
- #: admin/html/whats-new.php:235
1632
  msgid "Content restriction message translatable"
1633
  msgstr ""
1634
 
1635
- #: admin/html/whats-new.php:239
1636
  msgid "ACF integration inconsistency handled"
1637
  msgstr ""
1638
 
1639
- #: admin/html/whats-new.php:243
1640
  msgid "Enable payment checkbox handled for child option"
1641
  msgstr ""
1642
 
1643
- #: admin/html/whats-new.php:247
1644
  msgid "Broken asset link handled for custom field popup"
1645
  msgstr ""
1646
 
1647
- #: admin/html/whats-new.php:251
1648
  msgid "Rollback inconsistency for CPT handled"
1649
  msgstr ""
1650
 
1651
- #: admin/html/whats-new.php:255
1652
  msgid "Login form loaded after resetting password"
1653
  msgstr ""
1654
 
1655
- #: admin/html/whats-new.php:259
1656
  msgid "Billing address inconsistency handled"
1657
  msgstr ""
1658
 
1659
- #: admin/html/whats-new.php:263
1660
  msgid "Form duplication on creation handled"
1661
  msgstr ""
1662
 
1663
- #: admin/html/whats-new.php:267
1664
  msgid "Field Dragging inconsistency fixed"
1665
  msgstr ""
1666
 
1667
- #: admin/html/whats-new.php:278
1668
  msgid "Google Map field enhanced along with acf google map"
1669
  msgstr ""
1670
 
1671
- #: admin/html/whats-new.php:282
1672
  msgid "Filter added for dashboard account menu"
1673
  msgstr ""
1674
 
1675
- #: admin/html/whats-new.php:286
1676
  msgid "Fallback Pay Per Post inconsistency handled"
1677
  msgstr ""
1678
 
1679
- #: admin/html/whats-new.php:290
1680
  msgid "Google map search field not showing"
1681
  msgstr ""
1682
 
1683
- #: admin/html/whats-new.php:294
1684
  msgid "Form preview page inconsistency with builder"
1685
  msgstr ""
1686
 
1687
- #: admin/html/whats-new.php:298
1688
  msgid "Category not showing as hierarchy"
1689
  msgstr ""
1690
 
1691
- #: admin/html/whats-new.php:302
1692
  msgid "TOC field randering issue with registration form"
1693
  msgstr ""
1694
 
1695
- #: admin/html/whats-new.php:306
1696
  msgid "Custom plupload filter inconsistency with file upload handled"
1697
  msgstr ""
1698
 
1699
- #: admin/html/whats-new.php:310
1700
  msgid "Guest Pay Per Post inconsistency handled"
1701
  msgstr ""
1702
 
1703
- #: admin/html/whats-new.php:314
1704
  msgid "Responsive and font issue handled"
1705
  msgstr ""
1706
 
1707
- #: admin/html/whats-new.php:325
1708
  msgid "Preview page added for post form and registration form"
1709
  msgstr ""
1710
 
1711
- #: admin/html/whats-new.php:329
1712
  msgid "Post types menu on account page added"
1713
  msgstr ""
1714
 
1715
- #: admin/html/whats-new.php:333
1716
  msgid "Dashboard shortcode attributes enhanced"
1717
  msgstr ""
1718
 
1719
- #: admin/html/whats-new.php:337
1720
  msgid "Account page post type list new design"
1721
  msgstr ""
1722
 
1723
- #: admin/html/whats-new.php:341
1724
  msgid "Payment page restricted from direct unauthenticated access"
1725
  msgstr ""
1726
 
1727
- #: admin/html/whats-new.php:345
1728
  msgid "Timepicker conflict with dokan handled"
1729
  msgstr ""
1730
 
1731
- #: admin/html/whats-new.php:349
1732
  msgid "Trial inconsistency with paypal fixed"
1733
  msgstr ""
1734
 
1735
- #: admin/html/whats-new.php:353
1736
  msgid "Subscription does not cancel with paypal due to profile missing id"
1737
  msgstr ""
1738
 
1739
- #: admin/html/whats-new.php:357
1740
  msgid "Subscription email notification inconsistency fixed"
1741
  msgstr ""
1742
 
1743
- #: admin/html/whats-new.php:361
1744
  msgid "Various issues on payment page for non-logged in user handled"
1745
  msgstr ""
1746
 
1747
- #: admin/html/whats-new.php:365
1748
  msgid "Column inner field cloning inconsistency fixed"
1749
  msgstr ""
1750
 
1751
- #: admin/html/whats-new.php:369
1752
  msgid "Popup z-index changed due to other plugin z-index"
1753
  msgstr ""
1754
 
1755
- #: admin/html/whats-new.php:381
1756
  msgid "Added Mauritian Rupee for currency"
1757
  msgstr ""
1758
 
1759
- #: admin/html/whats-new.php:385
1760
  msgid "Added eid promotional offer notice"
1761
  msgstr ""
1762
 
1763
- #: admin/html/whats-new.php:389
1764
  msgid "Multiple google map validation for same form"
1765
  msgstr ""
1766
 
1767
- #: admin/html/whats-new.php:393
1768
  msgid "Various issues on verification, autologin payments & address field"
1769
  msgstr ""
1770
 
1771
- #: admin/html/whats-new.php:397
1772
  msgid "Docs update for file & attachments feature which is pro only"
1773
  msgstr ""
1774
 
1775
- #: admin/html/whats-new.php:408
1776
  msgid "Overflow footer on form builder page"
1777
  msgstr ""
1778
 
1779
- #: admin/html/whats-new.php:412
1780
  msgid "WordPress 5.7 compatibility"
1781
  msgstr ""
1782
 
1783
- #: admin/html/whats-new.php:416
1784
  msgid "Limited time promotion for weDevs birthday"
1785
  msgstr ""
1786
 
1787
- #: admin/html/whats-new.php:427
1788
  msgid "Meta key will not change if label update"
1789
  msgstr ""
1790
 
1791
- #: admin/html/whats-new.php:431
1792
  msgid "Login redirect empty previous url"
1793
  msgstr ""
1794
 
1795
- #: admin/html/whats-new.php:435
1796
  msgid "Email doesnt set as username"
1797
  msgstr ""
1798
 
1799
- #: admin/html/whats-new.php:439
1800
  msgid "Post redirection to payment doesn't work"
1801
  msgstr ""
1802
 
1803
- #: admin/html/whats-new.php:443
1804
  msgid "Address field not working when used with conditional logic"
1805
  msgstr ""
1806
 
1807
- #: admin/html/whats-new.php:447
1808
  msgid "Ajax type category child of not working"
1809
  msgstr ""
1810
 
1811
- #: admin/html/whats-new.php:451
1812
  msgid "Non recurring subscription did not work"
1813
  msgstr ""
1814
 
1815
- #: admin/html/whats-new.php:462
1816
  msgid "Menu position has chenged due to dokan has same menu position"
1817
  msgstr ""
1818
 
1819
- #: admin/html/whats-new.php:466
1820
  msgid "Drag and drop not working properly for new field"
1821
  msgstr ""
1822
 
1823
- #: admin/html/whats-new.php:477
1824
  msgid "QR and math captcha added to pro feature list"
1825
  msgstr ""
1826
 
1827
- #: admin/html/whats-new.php:481
1828
  msgid "Tooltip for category navigate"
1829
  msgstr ""
1830
 
1831
- #: admin/html/whats-new.php:485
1832
  msgid "Understandable guest payment notice"
1833
  msgstr ""
1834
 
1835
- #: admin/html/whats-new.php:489
1836
  msgid "Paypal non recurring pack id does not set"
1837
  msgstr ""
1838
 
1839
- #: admin/html/whats-new.php:500
1840
  msgid "Once trial subscription is used, it couldn't reset"
1841
  msgstr ""
1842
 
1843
- #: admin/html/whats-new.php:504
1844
  msgid "Subscription cancel doesn't work"
1845
  msgstr ""
1846
 
1847
- #: admin/html/whats-new.php:508
1848
  msgid "The tax rate was not calculated with the total amount"
1849
  msgstr ""
1850
 
1851
- #: admin/html/whats-new.php:512
1852
  msgid "The width of the column field was breaking"
1853
  msgstr ""
1854
 
1855
- #: admin/html/whats-new.php:516
1856
  msgid "Paypal recurring payment"
1857
  msgstr ""
1858
 
1859
- #: admin/html/whats-new.php:527
1860
  msgid "Updated codebase to fix timezone mismatch"
1861
  msgstr ""
1862
 
1863
- #: admin/html/whats-new.php:538
1864
  msgid "Custom html content field's width"
1865
  msgstr ""
1866
 
1867
- #: admin/html/whats-new.php:542
1868
  msgid "All states of New Zealand are added"
1869
  msgstr ""
1870
 
1871
- #: admin/html/whats-new.php:553
1872
  msgid "Get appropriate user id when role based conditions are present"
1873
  msgstr ""
1874
 
1875
- #: admin/html/whats-new.php:557
1876
  msgid "Show Invalid subscription message if wrong pack id passed"
1877
  msgstr ""
1878
 
1879
- #: admin/html/whats-new.php:561
1880
  msgid "URL field new window not working"
1881
  msgstr ""
1882
 
1883
- #: admin/html/whats-new.php:565
1884
  msgid "Option label not working when & use"
1885
  msgstr ""
1886
 
1887
- #: admin/html/whats-new.php:569
1888
  msgid "Ajax type category not showing on edit"
1889
  msgstr ""
1890
 
1891
- #: admin/html/whats-new.php:573
1892
  msgid "Multiple file image can't select"
1893
  msgstr ""
1894
 
1895
- #: admin/html/whats-new.php:577
1896
  msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
1897
  msgstr ""
1898
 
1899
- #: admin/html/whats-new.php:581
1900
  msgid "Conflict image field with acf image field"
1901
  msgstr ""
1902
 
1903
- #: admin/html/whats-new.php:585
1904
  msgid "Missing Auckland State for New Zealand country"
1905
  msgstr ""
1906
 
1907
- #: admin/html/whats-new.php:589
1908
  msgid "Added support for WooCommerce product category value replacemen"
1909
  msgstr ""
1910
 
1911
- #: admin/html/whats-new.php:599
1912
  msgid "Add character restriction feature"
1913
  msgstr ""
1914
 
1915
- #: admin/html/whats-new.php:603
1916
  msgid "Make sure post author edit link works only in frontend"
1917
  msgstr ""
1918
 
1919
- #: admin/html/whats-new.php:607
1920
  msgid "Inconsistency in lost password reset email message"
1921
  msgstr ""
1922
 
1923
- #: admin/html/whats-new.php:611
1924
  msgid "Saving custom taxonomy terms when input type is text"
1925
  msgstr ""
1926
 
1927
- #: admin/html/whats-new.php:615
1928
  msgid "Taxonomy field JS error in builder"
1929
  msgstr ""
1930
 
1931
- #: admin/html/whats-new.php:619
1932
  msgid "Showing WPUF edit link for WP default roles"
1933
  msgstr ""
1934
 
1935
- #: admin/html/whats-new.php:623
1936
  msgid "Upload button unresponsive issue in iOS"
1937
  msgstr ""
1938
 
1939
- #: admin/html/whats-new.php:633
1940
  msgid "Add post edit link for post authors in single or archive pages"
1941
  msgstr ""
1942
 
1943
- #: admin/html/whats-new.php:637
1944
  msgid "Enhance post delete message"
1945
  msgstr ""
1946
 
1947
- #: admin/html/whats-new.php:641
1948
  msgid "Refactor control buttons visibility in form builder"
1949
  msgstr ""
1950
 
1951
- #: admin/html/whats-new.php:645
1952
  msgid "Add missing colons after field label"
1953
  msgstr ""
1954
 
1955
- #: admin/html/whats-new.php:649
1956
  msgid "Post edit map capability condition"
1957
  msgstr ""
1958
 
1959
- #: admin/html/whats-new.php:653
1960
  msgid "Role based permission for accessing a post form"
1961
  msgstr ""
1962
 
1963
- #: admin/html/whats-new.php:657
1964
  msgid "Section-break field alignment"
1965
  msgstr ""
1966
 
1967
- #: admin/html/whats-new.php:661
1968
  msgid "Pay per post doesn't work if subscription pack is activated"
1969
  msgstr ""
1970
 
1971
- #: admin/html/whats-new.php:665
1972
  msgid "Mime type for uploading JSON files"
1973
  msgstr ""
1974
 
1975
- #: admin/html/whats-new.php:669
1976
  msgid "File upload with same file name"
1977
  msgstr ""
1978
 
1979
- #: admin/html/whats-new.php:673
1980
  msgid "Post preview missing fields"
1981
  msgstr ""
1982
 
1983
- #: admin/html/whats-new.php:677
1984
  msgid "Illigal variable declartion"
1985
  msgstr ""
1986
 
1987
- #: admin/html/whats-new.php:681
1988
  msgid "Featured image updating issue"
1989
  msgstr ""
1990
 
1991
- #: admin/html/whats-new.php:685
1992
  msgid "Conflict with Phlox theme"
1993
  msgstr ""
1994
 
1995
- #: admin/html/whats-new.php:689
1996
  msgid "Textarea custom field data sanitization"
1997
  msgstr ""
1998
 
1999
- #: admin/html/whats-new.php:693
2000
  msgid "exclude_type warning in wpuf_category_checklist"
2001
  msgstr ""
2002
 
2003
- #: admin/html/whats-new.php:697
2004
  msgid "Category field not showing all child categories for selection type child of"
2005
  msgstr ""
2006
 
2007
- #: admin/html/whats-new.php:701
2008
  msgid "Conflict between image and file upload custom fields"
2009
  msgstr ""
2010
 
2011
- #: admin/html/whats-new.php:705
2012
  msgid "Login url when login page is not set"
2013
  msgstr ""
2014
 
2015
- #: admin/html/whats-new.php:715
2016
  msgid ""
2017
  "Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
2018
  "their official names"
2019
  msgstr ""
2020
 
2021
- #: admin/html/whats-new.php:719
2022
  msgid "Fix condition to use default avatar"
2023
  msgstr ""
2024
 
2025
- #: admin/html/whats-new.php:723
2026
  msgid "Make Email and URL fields clickable"
2027
  msgstr ""
2028
 
2029
- #: admin/html/whats-new.php:727
2030
  msgid "Fix redirect after user login"
2031
  msgstr ""
2032
 
2033
- #: admin/html/whats-new.php:731
2034
  msgid "Sanitize textarea field data"
2035
  msgstr ""
2036
 
2037
- #: admin/html/whats-new.php:735
2038
  msgid ""
2039
  "Fix missing colon to email, URL, text and textarea labels when renders "
2040
  "their data"
2041
  msgstr ""
2042
 
2043
- #: admin/html/whats-new.php:739
2044
  msgid "Prevent showing empty labels for fields that have render_field_data method"
2045
  msgstr ""
2046
 
2047
- #: admin/html/whats-new.php:749
2048
  msgid "Add Namibian Dollar in currency list"
2049
  msgstr ""
2050
 
2051
- #: admin/html/whats-new.php:753
2052
  msgid "Add sync values option for option data fields"
2053
  msgstr ""
2054
 
2055
- #: admin/html/whats-new.php:757
2056
  msgid "Allow uploading image that having filesize meets php ini settings"
2057
  msgstr ""
2058
 
2059
- #: admin/html/whats-new.php:761
2060
  msgid "Limit the selection of one image at a time"
2061
  msgstr ""
2062
 
2063
- #: admin/html/whats-new.php:765
2064
  msgid "Use file name and size to generate hash to prevent duplicant image upload"
2065
  msgstr ""
2066
 
2067
- #: admin/html/whats-new.php:769
2068
  msgid "Sanitize text and textarea field data"
2069
  msgstr ""
2070
 
2071
- #: admin/html/whats-new.php:773
2072
  msgid ""
2073
  "Show label instead of values for radio, checkbox, dropdown and multiselect "
2074
  "data"
2075
  msgstr ""
2076
 
2077
- #: admin/html/whats-new.php:777
2078
  msgid "Saving custom taxonomies for type text input"
2079
  msgstr ""
2080
 
2081
- #: admin/html/whats-new.php:781
2082
  msgid "Admin settings link for recaptcha helper text"
2083
  msgstr ""
2084
 
2085
- #: admin/html/whats-new.php:785
2086
  msgid "Undefined name property for Custom HTML fields"
2087
  msgstr ""
2088
 
2089
- #: admin/html/whats-new.php:789
2090
  msgid "Delete attachment process"
2091
  msgstr ""
2092
 
2093
- #: admin/html/whats-new.php:793
2094
  msgid "Missing billing address in invoice PDF"
2095
  msgstr ""
2096
 
2097
- #: admin/html/whats-new.php:797
2098
  msgid "Showing country field value in frontend post content"
2099
  msgstr ""
2100
 
2101
- #: admin/html/whats-new.php:801
2102
  msgid "Avatar size display not complying with admin settings size"
2103
  msgstr ""
2104
 
2105
- #: admin/html/whats-new.php:805
2106
  msgid "Display default avatars on admin settings discussion page"
2107
  msgstr ""
2108
 
2109
- #: admin/html/whats-new.php:809
2110
  msgid "Redirect to subscription page at registration"
2111
  msgstr ""
2112
 
2113
- #: admin/html/whats-new.php:813
2114
  msgid "Error notice regarding registration page redirect"
2115
  msgstr ""
2116
 
2117
- #: admin/html/whats-new.php:817
2118
  msgid "Escaping html in registration errors"
2119
  msgstr ""
2120
 
2121
- #: admin/html/whats-new.php:821
2122
  msgid "Default login redirect link"
2123
  msgstr ""
2124
 
2125
- #: admin/html/whats-new.php:825
2126
  msgid "Implementing default WP login page override option"
2127
  msgstr ""
2128
 
2129
- #: admin/html/whats-new.php:829
2130
  msgid "Transparent background of autosuggestion dropdown"
2131
  msgstr ""
2132
 
2133
- #: admin/html/whats-new.php:839
2134
  msgid "Import forms system"
2135
  msgstr ""
2136
 
2137
- #: admin/html/whats-new.php:843
2138
  msgid "Password reset system"
2139
  msgstr ""
2140
 
2141
- #: admin/html/whats-new.php:847
2142
  msgid "Updated url validation regex to support modern tlds"
2143
  msgstr ""
2144
 
2145
- #: admin/html/whats-new.php:851
2146
  msgid "Export WPUF forms individually from admin tools page"
2147
  msgstr ""
2148
 
2149
- #: admin/html/whats-new.php:855
2150
  msgid "Subscription cycle label translation issue"
2151
  msgstr ""
2152
 
2153
- #: admin/html/whats-new.php:859
2154
  msgid "ACF integration for checkbox fields"
2155
  msgstr ""
2156
 
2157
- #: admin/html/whats-new.php:863
2158
  msgid "Illegal string offset warning while updating settings"
2159
  msgstr ""
2160
 
2161
- #: admin/html/whats-new.php:867
2162
  msgid "Conditional logic for Section Break field"
2163
  msgstr ""
2164
 
2165
- #: admin/html/whats-new.php:871
2166
  msgid "Subscriptions cannot be deleted from backend"
2167
  msgstr ""
2168
 
2169
- #: admin/html/whats-new.php:875
2170
  msgid "A regression regarding saving checkbox data"
2171
  msgstr ""
2172
 
2173
- #: admin/html/whats-new.php:879
2174
  msgid "Default value of multi-select fields is not showing"
2175
  msgstr ""
2176
 
2177
- #: admin/html/whats-new.php:889
2178
  msgid "Hide post edit option when subscription is expired"
2179
  msgstr ""
2180
 
2181
- #: admin/html/whats-new.php:891
2182
  msgid "Hide post edit option from users whose subscription pack is expired."
2183
  msgstr ""
2184
 
2185
- #: admin/html/whats-new.php:894
2186
  msgid "Check files to prevent duplicity in media upload"
2187
  msgstr ""
2188
 
2189
- #: admin/html/whats-new.php:896
2190
  msgid ""
2191
  "A simple measure has been taken to prevent maliciously flooding the site by "
2192
  "uploading same file multiple times. Though this won't work with already "
2193
  "uploaded medias."
2194
  msgstr ""
2195
 
2196
- #: admin/html/whats-new.php:899
2197
  msgid "Refactor address fields in Account section"
2198
  msgstr ""
2199
 
2200
- #: admin/html/whats-new.php:901
2201
  msgid "Address edit section from Account section has been rewritten to improve UX."
2202
  msgstr ""
2203
 
2204
- #: admin/html/whats-new.php:904
2205
  msgid "Update Paypal payment gateway"
2206
  msgstr ""
2207
 
2208
- #: admin/html/whats-new.php:906
2209
  msgid "Paypal payment gateway has seen some improvements."
2210
  msgstr ""
2211
 
2212
- #: admin/html/whats-new.php:909
2213
  msgid "Default Category selection improvements"
2214
  msgstr ""
2215
 
2216
- #: admin/html/whats-new.php:911
2217
  msgid ""
2218
  "An intuitive way of selecting default category of a selected post type has "
2219
  "been introduced."
2220
  msgstr ""
2221
 
2222
- #: admin/html/whats-new.php:914
2223
  msgid "Compatibility issue with ACF date time field"
2224
  msgstr ""
2225
 
2226
- #: admin/html/whats-new.php:916
2227
  msgid "A Compatibility issue with ACF date time field has been addressed."
2228
  msgstr ""
2229
 
2230
- #: admin/html/whats-new.php:919
2231
  msgid "Media title, caption & description not saving"
2232
  msgstr ""
2233
 
2234
- #: admin/html/whats-new.php:921
2235
  msgid ""
2236
  "Media title, caption & description were not saving from frontend. They will "
2237
  "now."
2238
  msgstr ""
2239
 
2240
- #: admin/html/whats-new.php:924
2241
  msgid ""
2242
  "The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
2243
  "metabox"
2244
  msgstr ""
2245
 
2246
- #: admin/html/whats-new.php:926
2247
  msgid ""
2248
  "A workaround has been introduced to save The Events Calendar Venue and "
2249
  "Organizer fields properly from WPUF Custom Fields metabox."
2250
  msgstr ""
2251
 
2252
- #: admin/html/whats-new.php:929
2253
  msgid "Checkbox data not saving from WPUF Custom Fields metabox"
2254
  msgstr ""
2255
 
2256
- #: admin/html/whats-new.php:931
2257
  msgid ""
2258
  "Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
2259
  "fixed."
2260
  msgstr ""
2261
 
2262
- #: admin/html/whats-new.php:934
2263
  msgid "Multi-column Repeater field data saving issue"
2264
  msgstr ""
2265
 
2266
- #: admin/html/whats-new.php:936
2267
  msgid ""
2268
  "Multi-column Repeater field data from a form was not saving. It has been "
2269
  "fixed."
2270
  msgstr ""
2271
 
2272
- #: admin/html/whats-new.php:939
2273
  msgid "Multistep form conflict with Elementor"
2274
  msgstr ""
2275
 
2276
- #: admin/html/whats-new.php:941
2277
  msgid "Multistep form had a conflict with Elementor. It has been fixed."
2278
  msgstr ""
2279
 
2280
- #: admin/html/whats-new.php:944
2281
  msgid "Multiple images showing issue in frontend"
2282
  msgstr ""
2283
 
2284
- #: admin/html/whats-new.php:946
2285
  msgid "Multiple images in a post were not showing in frontend. Now they will."
2286
  msgstr ""
2287
 
2288
- #: admin/html/whats-new.php:955
2289
  msgid "Nonce not verify on login"
2290
  msgstr ""
2291
 
2292
- #: admin/html/whats-new.php:957
2293
  msgid "Return of function wp_verify_nonce() was ignored."
2294
  msgstr ""
2295
 
2296
- #: admin/html/whats-new.php:966
2297
  msgid "Option to set which tab shows as active on the account page"
2298
  msgstr ""
2299
 
2300
- #: admin/html/whats-new.php:968
2301
  msgid ""
2302
  "Option to set which tab shows as active on the account page. To configure "
2303
  "this setting navigate to wp-admin->User Frontend->Settings->My "
2304
  "Account->Active Tab "
2305
  msgstr ""
2306
 
2307
- #: admin/html/whats-new.php:971
2308
  msgid "Unlock option was unavailable after the post being locked"
2309
  msgstr ""
2310
 
2311
- #: admin/html/whats-new.php:973
2312
  msgid "Unlock option was unavailable after the post being locked."
2313
  msgstr ""
2314
 
2315
- #: admin/html/whats-new.php:976
2316
  msgid "Gutenberg block of WPUF didn't work on bedrock installation"
2317
  msgstr ""
2318
 
2319
- #: admin/html/whats-new.php:978
2320
  msgid "Gutenberg block of WPUF didn't work on bedrock installation."
2321
  msgstr ""
2322
 
2323
- #: admin/html/whats-new.php:981
2324
  msgid "Sending admin payment received email twice"
2325
  msgstr ""
2326
 
2327
- #: admin/html/whats-new.php:983
2328
  msgid ""
2329
  "After processing payment admin & user was receiving payment received email "
2330
  "twice."
2331
  msgstr ""
2332
 
2333
- #: admin/html/whats-new.php:986
2334
  msgid ""
2335
  "Add shortcode support to display post information in the Post Expiration "
2336
  "Message"
2337
  msgstr ""
2338
 
2339
- #: admin/html/whats-new.php:988
2340
  msgid ""
2341
  "Add shortcode support to display post information in the Post Expiration "
2342
  "Message. You can use: <strong>{post_author} {post_url} {blogname} "
2343
  "{post_title} {post_status}</strong>"
2344
  msgstr ""
2345
 
2346
- #: admin/html/whats-new.php:991
2347
  msgid "Add optin on the setup wizard"
2348
  msgstr ""
2349
 
2350
- #: admin/html/whats-new.php:993
2351
  msgid ""
2352
  "Added optin on the setup wizard, admin can choose whether he/she wants to "
2353
  "share server environment details (php, mysql, server, WordPress versions), "
@@ -2355,126 +2363,126 @@ msgid ""
2355
  "name and url, admin name and email address. No sensitive data is tracked"
2356
  msgstr ""
2357
 
2358
- #: admin/html/whats-new.php:1002
2359
  msgid "Post Owner problem"
2360
  msgstr ""
2361
 
2362
- #: admin/html/whats-new.php:1004
2363
  msgid ""
2364
  "Posts were not assigned to the selected default post owner, this issue has "
2365
  "been fixed."
2366
  msgstr ""
2367
 
2368
- #: admin/html/whats-new.php:1007
2369
  msgid "Google reCaptcha was not working"
2370
  msgstr ""
2371
 
2372
- #: admin/html/whats-new.php:1009
2373
  msgid ""
2374
  "Google reCaptcha was not working, users could submit the form without "
2375
  "reCaptcha validation."
2376
  msgstr ""
2377
 
2378
- #: admin/html/whats-new.php:1018
2379
  msgid "Added column field"
2380
  msgstr ""
2381
 
2382
- #: admin/html/whats-new.php:1023
2383
  msgid "Unable to render the events on the front-end dashboard"
2384
  msgstr ""
2385
 
2386
- #: admin/html/whats-new.php:1025
2387
  msgid ""
2388
  "On the frontend dashboard, the submitted events were not showing, you will "
2389
  "get it fixed in this version."
2390
  msgstr ""
2391
 
2392
- #: admin/html/whats-new.php:1028
2393
  msgid "Page order getting 0(zero) after editing from the frontend"
2394
  msgstr ""
2395
 
2396
- #: admin/html/whats-new.php:1030
2397
  msgid ""
2398
  "Page order was not saving while editing a post using WPUF form, it has been "
2399
  "fixed."
2400
  msgstr ""
2401
 
2402
- #: admin/html/whats-new.php:1033
2403
  msgid "Text input field for taxonomies not working"
2404
  msgstr ""
2405
 
2406
- #: admin/html/whats-new.php:1035
2407
  msgid ""
2408
  "When taxonomy field type is set to `Text Input` then a fatal error was "
2409
  "showing on the frontend, no error with taxonomy field in the latest version."
2410
  msgstr ""
2411
 
2412
- #: admin/html/whats-new.php:1038
2413
  msgid ""
2414
  "In radio and checkbox field use conditional logic that value does not save "
2415
  "in database"
2416
  msgstr ""
2417
 
2418
- #: admin/html/whats-new.php:1040
2419
  msgid ""
2420
  "The selected value of radio and checkbox field were not showing while "
2421
  "editing posts from the backend or frontend, you can see the selected value "
2422
  "in this version."
2423
  msgstr ""
2424
 
2425
- #: admin/html/whats-new.php:1043
2426
  msgid "The args param not working with get_avatar filter"
2427
  msgstr ""
2428
 
2429
- #: admin/html/whats-new.php:1045
2430
  msgid "The args parameter did not exist with get_avatar filter, which now exists."
2431
  msgstr ""
2432
 
2433
- #: admin/html/whats-new.php:1048
2434
  msgid "The item in ajax taxonomy field was not selected"
2435
  msgstr ""
2436
 
2437
- #: admin/html/whats-new.php:1050
2438
  msgid ""
2439
  "When the taxonomy field type is set to Ajax, the submitted terms were not "
2440
  "showing in the backend and frontend which have been fixed."
2441
  msgstr ""
2442
 
2443
- #: admin/html/whats-new.php:1059
2444
  msgid "Unable to send new user registration email"
2445
  msgstr ""
2446
 
2447
- #: admin/html/whats-new.php:1061
2448
  msgid ""
2449
  "WP User Frontend default registration form `[wpuf-registration]` was unable "
2450
  "to send the new user registration email."
2451
  msgstr ""
2452
 
2453
- #: admin/html/whats-new.php:1064
2454
  msgid "WPUF forms block compatibility issue with the latest WP version"
2455
  msgstr ""
2456
 
2457
- #: admin/html/whats-new.php:1066
2458
  msgid ""
2459
  "With the latest version of WordPress the gutenberg block of WP User "
2460
  "Frontend were not working. In this version, you will get it fixed."
2461
  msgstr ""
2462
 
2463
- #: admin/html/whats-new.php:1069
2464
  msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
2465
  msgstr ""
2466
 
2467
- #: admin/html/whats-new.php:1071
2468
  msgid ""
2469
  "While using Gutenberg, the page were not being updated with WPUF shortcode "
2470
  "[wpuf dashboard]"
2471
  msgstr ""
2472
 
2473
- #: admin/html/whats-new.php:1074
2474
  msgid "Retain default when determining whether to display the admin bar"
2475
  msgstr ""
2476
 
2477
- #: admin/html/whats-new.php:1076
2478
  msgid ""
2479
  "From the User Frontend Settings, set that Administrator, Editor, Vendor can "
2480
  "see the admin bar. Now, the super admin want, one specific user ( who has "
@@ -2484,11 +2492,11 @@ msgid ""
2484
  "frontend."
2485
  msgstr ""
2486
 
2487
- #: admin/html/whats-new.php:1079
2488
  msgid "Fatal error when use PHP lower version (5.4 or lower)"
2489
  msgstr ""
2490
 
2491
- #: admin/html/whats-new.php:1081
2492
  msgid ""
2493
  "It was unable to install WP User Frontend with PHP 5.4 or lower version. "
2494
  "Here is the error details: <br><br><strong>Fatal error: Can't use method "
@@ -2496,42 +2504,42 @@ msgid ""
2496
  "/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
2497
  msgstr ""
2498
 
2499
- #: admin/html/whats-new.php:1084
2500
  msgid "Product form was unable to show the single gallery image"
2501
  msgstr ""
2502
 
2503
- #: admin/html/whats-new.php:1086
2504
  msgid ""
2505
  "When user upload single image for product gallery using WPUF WooCommerce "
2506
  "product form, that image were not showing on the frontend."
2507
  msgstr ""
2508
 
2509
- #: admin/html/whats-new.php:1095
2510
  msgid "WooCommerce gallery images not getting saved"
2511
  msgstr ""
2512
 
2513
- #: admin/html/whats-new.php:1097
2514
  msgid ""
2515
  "After releasing version 2.9.3, WooCommerce gallery image field stopped "
2516
  "working. You will get it fixed in this version."
2517
  msgstr ""
2518
 
2519
- #: admin/html/whats-new.php:1106
2520
  msgid "The Events Calendar Integration Form"
2521
  msgstr ""
2522
 
2523
- #: admin/html/whats-new.php:1108
2524
  msgid ""
2525
  "Now admin can allow users to create event from the frontend. Currently WPUF "
2526
  "has a one click pre-build event form that has been integrated with The "
2527
  "Events Calendar plugin"
2528
  msgstr ""
2529
 
2530
- #: admin/html/whats-new.php:1111
2531
  msgid "Post Submission Facility From Account Page"
2532
  msgstr ""
2533
 
2534
- #: admin/html/whats-new.php:1113
2535
  msgid ""
2536
  "On the frontend account page, added a new menu item named <b>Submit "
2537
  "Post</b>. Now admin can allow users to submit post from their default "
@@ -2540,504 +2548,504 @@ msgid ""
2540
  "you can assign any post form that will use to submit posts."
2541
  msgstr ""
2542
 
2543
- #: admin/html/whats-new.php:1116
2544
  msgid "Login/Lost Password Link Under Registration Form"
2545
  msgstr ""
2546
 
2547
- #: admin/html/whats-new.php:1118
2548
  msgid "Added Login/Lost Password link under registration form"
2549
  msgstr ""
2550
 
2551
- #: admin/html/whats-new.php:1127
2552
  msgid "Added drag and drop image ordering on image upload"
2553
  msgstr ""
2554
 
2555
- #: admin/html/whats-new.php:1129
2556
  msgid ""
2557
  "Now frontend users can drag & drop the images/files to change the order "
2558
  "while uploading."
2559
  msgstr ""
2560
 
2561
- #: admin/html/whats-new.php:1132
2562
  msgid "Added reCAPTCHA field in login form"
2563
  msgstr ""
2564
 
2565
- #: admin/html/whats-new.php:1134
2566
  msgid ""
2567
  "Admin has the option to show reCAPTCHA field in login form. Check the "
2568
  "related settings from <strong>User Frontend > Settings > "
2569
  "Login/Registration</strong>"
2570
  msgstr ""
2571
 
2572
- #: admin/html/whats-new.php:1137
2573
  msgid "Added preview option in forms"
2574
  msgstr ""
2575
 
2576
- #: admin/html/whats-new.php:1139
2577
  msgid ""
2578
  "You can see a nice <strong>Preview</strong> button with <strong>Save "
2579
  "Form</strong> button, admin can take a quick look of the form without using "
2580
  "shortcode"
2581
  msgstr ""
2582
 
2583
- #: admin/html/whats-new.php:1142
2584
  msgid "Fixed hiding “Select Image” button while uploading multiple images."
2585
  msgstr ""
2586
 
2587
- #: admin/html/whats-new.php:1144
2588
  msgid ""
2589
  "The upload button will not be hidden until the user selects max number of "
2590
  "files "
2591
  msgstr ""
2592
 
2593
- #: admin/html/whats-new.php:1147
2594
  msgid "Added form limit notice before form submission"
2595
  msgstr ""
2596
 
2597
- #: admin/html/whats-new.php:1149
2598
  msgid ""
2599
  "Limit notice message was showing after submission, now it is showing when "
2600
  "rendering the form"
2601
  msgstr ""
2602
 
2603
- #: admin/html/whats-new.php:1152
2604
  msgid "Fixed: default post category not saving"
2605
  msgstr ""
2606
 
2607
- #: admin/html/whats-new.php:1154
2608
  msgid ""
2609
  "From the form <strong>Settings > Post Settings</strong>, default post "
2610
  "category options were not saving. Now, it's fixed."
2611
  msgstr ""
2612
 
2613
- #: admin/html/whats-new.php:1157
2614
  msgid ""
2615
  "WPUF dashboard shortcode with form_id attribute was not showing posts "
2616
  "properly"
2617
  msgstr ""
2618
 
2619
- #: admin/html/whats-new.php:1159
2620
  msgid ""
2621
  "Now you can list posts on the frontend by using <strong>form_id<strong/> "
2622
  "attribute with <strong>[wpuf_dashboard]</strong> shortcode"
2623
  msgstr ""
2624
 
2625
- #: admin/html/whats-new.php:1168
2626
  msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
2627
  msgstr ""
2628
 
2629
- #: admin/html/whats-new.php:1170
2630
  msgid ""
2631
  "If you are using other language than English. Please <b>rename</b> your "
2632
  "<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
2633
  "change was made to support translations from translate.wordpress.org"
2634
  msgstr ""
2635
 
2636
- #: admin/html/whats-new.php:1173
2637
  msgid "Added WP User Frontend Data export and erase functionality."
2638
  msgstr ""
2639
 
2640
- #: admin/html/whats-new.php:1175
2641
  msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
2642
  msgstr ""
2643
 
2644
- #: admin/html/whats-new.php:1178
2645
  msgid "Added billing address customizer."
2646
  msgstr ""
2647
 
2648
- #: admin/html/whats-new.php:1180
2649
  msgid "Added customizer options for billing address in payment page."
2650
  msgstr ""
2651
 
2652
- #: admin/html/whats-new.php:1183
2653
  msgid "Make the payment page responsive."
2654
  msgstr ""
2655
 
2656
- #: admin/html/whats-new.php:1185
2657
  msgid "Some css adjustments are made in payment page to make it responsive."
2658
  msgstr ""
2659
 
2660
- #: admin/html/whats-new.php:1188
2661
  msgid "Fixed image upload issue in Safari."
2662
  msgstr ""
2663
 
2664
- #: admin/html/whats-new.php:1190
2665
  msgid "Images were not showing after upload in safari, it is fixed now."
2666
  msgstr ""
2667
 
2668
- #: admin/html/whats-new.php:1193
2669
  msgid "Post update issue after updating or removing post images."
2670
  msgstr ""
2671
 
2672
- #: admin/html/whats-new.php:1195
2673
  msgid ""
2674
  "Posts cannot be updated after updating or removing post images, it is fixed "
2675
  "now."
2676
  msgstr ""
2677
 
2678
- #: admin/html/whats-new.php:1204
2679
  msgid "Allow overriding form input styles using theme styling."
2680
  msgstr ""
2681
 
2682
- #: admin/html/whats-new.php:1206
2683
  msgid "Overriding form input styles using theme style is now possible."
2684
  msgstr ""
2685
 
2686
- #: admin/html/whats-new.php:1209
2687
  msgid "Fixed Auto Login after registration."
2688
  msgstr ""
2689
 
2690
- #: admin/html/whats-new.php:1211
2691
  msgid "Auto Login after registration was not working is fixed now."
2692
  msgstr ""
2693
 
2694
- #: admin/html/whats-new.php:1214
2695
  msgid "Fixed fallback cost calculation"
2696
  msgstr ""
2697
 
2698
- #: admin/html/whats-new.php:1216
2699
  msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
2700
  msgstr ""
2701
 
2702
- #: admin/html/whats-new.php:1219
2703
  msgid "Removal of subscription from User Profile gets reverted if updated"
2704
  msgstr ""
2705
 
2706
- #: admin/html/whats-new.php:1221
2707
  msgid "User subscription deletion gets reverted if updated is fixed."
2708
  msgstr ""
2709
 
2710
- #: admin/html/whats-new.php:1224
2711
  msgid "Show Free pack users in subscribers list."
2712
  msgstr ""
2713
 
2714
- #: admin/html/whats-new.php:1226
2715
  msgid "Free pack users were not showing in subscribers list, now they will."
2716
  msgstr ""
2717
 
2718
- #: admin/html/whats-new.php:1235
2719
  msgid "WP User Frontend Guten Block is added"
2720
  msgstr ""
2721
 
2722
- #: admin/html/whats-new.php:1237
2723
  msgid ""
2724
  "WPUF Form Block is now available to be used within gutenberg editor with "
2725
  "preview of the form. "
2726
  msgstr ""
2727
 
2728
- #: admin/html/whats-new.php:1240
2729
  msgid "Advanced Custom Fields plugin compatibility"
2730
  msgstr ""
2731
 
2732
- #: admin/html/whats-new.php:1242
2733
  msgid "Now all your ACF fields can be used within WPUF Post forms. "
2734
  msgstr ""
2735
 
2736
- #: admin/html/whats-new.php:1245
2737
  msgid "Taxonomy Terms not showing for custom post types"
2738
  msgstr ""
2739
 
2740
- #: admin/html/whats-new.php:1247
2741
  msgid ""
2742
  "Fixed an issue with taxonomy terms not appearing for Custom Post types "
2743
  "within Form Settings and Dashboard Post Listing"
2744
  msgstr ""
2745
 
2746
- #: admin/html/whats-new.php:1250
2747
  msgid "Various other code optimizations"
2748
  msgstr ""
2749
 
2750
- #: admin/html/whats-new.php:1252 admin/html/whats-new.php:1309
2751
  msgid "Code structure organization and optimization for better performance"
2752
  msgstr ""
2753
 
2754
- #: admin/html/whats-new.php:1261
2755
  msgid "WoooCommerce billing address Sync"
2756
  msgstr ""
2757
 
2758
- #: admin/html/whats-new.php:1263
2759
  msgid ""
2760
  "If an existing customer has previously set his billing address, that will "
2761
  "be imported into WPUF Billing address "
2762
  msgstr ""
2763
 
2764
- #: admin/html/whats-new.php:1266
2765
  msgid "Trial subscription message not showing properly"
2766
  msgstr ""
2767
 
2768
- #: admin/html/whats-new.php:1268
2769
  msgid "Subscriptions with Trial now shows trial notices"
2770
  msgstr ""
2771
 
2772
- #: admin/html/whats-new.php:1271
2773
  msgid "Reset email Key not working"
2774
  msgstr ""
2775
 
2776
- #: admin/html/whats-new.php:1273
2777
  msgid "Reset Email key was not working in some cases"
2778
  msgstr ""
2779
 
2780
- #: admin/html/whats-new.php:1276
2781
  msgid "Post count not showing on the frontend dashboard"
2782
  msgstr ""
2783
 
2784
- #: admin/html/whats-new.php:1278
2785
  msgid ""
2786
  "Dashboard with multiple post type was not showing post counts properly, is "
2787
  "now fixed and shows count for each post type"
2788
  msgstr ""
2789
 
2790
- #: admin/html/whats-new.php:1281
2791
  msgid "Login Redirect showing blank page is fixed"
2792
  msgstr ""
2793
 
2794
- #: admin/html/whats-new.php:1283
2795
  msgid ""
2796
  "If \"Previous Page\" was set for redirection, login redirect was "
2797
  "redirecting to blank page for users who hit login page directly"
2798
  msgstr ""
2799
 
2800
- #: admin/html/whats-new.php:1292
2801
  msgid "Enhanced Login Redirect to redirect users to previous page"
2802
  msgstr ""
2803
 
2804
- #: admin/html/whats-new.php:1294
2805
  msgid ""
2806
  "You can choose Previous Page as Login Redirect page settings now to "
2807
  "redirect users to the page from which they went for Login. "
2808
  msgstr ""
2809
 
2810
- #: admin/html/whats-new.php:1297
2811
  msgid "Email HTML links not Rendreing properly issue is fixed"
2812
  msgstr ""
2813
 
2814
- #: admin/html/whats-new.php:1299
2815
  msgid ""
2816
  "For some clients emails were not rendering the HTML links properly, this is "
2817
  "now fixed"
2818
  msgstr ""
2819
 
2820
- #: admin/html/whats-new.php:1302
2821
  msgid "Form Builder : Form Field's Help text styles not showing properly"
2822
  msgstr ""
2823
 
2824
- #: admin/html/whats-new.php:1304
2825
  msgid "Help texts styling is now fixed and much easier to read and understand"
2826
  msgstr ""
2827
 
2828
- #: admin/html/whats-new.php:1307
2829
  msgid "Various other code improvements"
2830
  msgstr ""
2831
 
2832
- #: admin/html/whats-new.php:1318
2833
  msgid "Dashboard Post Listing now supports multiple post types"
2834
  msgstr ""
2835
 
2836
- #: admin/html/whats-new.php:1320
2837
  msgid ""
2838
  "Now you can show multiple post type in user dashboard using shortcode like "
2839
  "this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
2840
  msgstr ""
2841
 
2842
- #: admin/html/whats-new.php:1323
2843
  msgid "Added Login Redirect Settings"
2844
  msgstr ""
2845
 
2846
- #: admin/html/whats-new.php:1325
2847
  msgid ""
2848
  "You can now set a page from <i>WPUF Settings > Login/Registration > "
2849
  "Redirect after Login</i>. When login redirection is active the user will be "
2850
  "redirected to this page after login."
2851
  msgstr ""
2852
 
2853
- #: admin/html/whats-new.php:1328
2854
  msgid "Image Upload field button text can be changed"
2855
  msgstr ""
2856
 
2857
- #: admin/html/whats-new.php:1330
2858
  msgid ""
2859
  "The upload button text can now be changed for image upload fields which "
2860
  "defaults to \"Select Image\" if not set. "
2861
  msgstr ""
2862
 
2863
- #: admin/html/whats-new.php:1333
2864
  msgid "Multi Step Form styles made compatible with more themes"
2865
  msgstr ""
2866
 
2867
- #: admin/html/whats-new.php:1335
2868
  msgid "Multi Step form can now be styled more easily with other themes "
2869
  msgstr ""
2870
 
2871
- #: admin/html/whats-new.php:1338
2872
  msgid "Required field condition for google map not working is fixed"
2873
  msgstr ""
2874
 
2875
- #: admin/html/whats-new.php:1340
2876
  msgid ""
2877
  "If Google Map field was set as required users were able to submit form "
2878
  "without changing the default value."
2879
  msgstr ""
2880
 
2881
- #: admin/html/whats-new.php:1349
2882
  msgid "Admin form builder is now fully responsive."
2883
  msgstr ""
2884
 
2885
- #: admin/html/whats-new.php:1351
2886
  msgid ""
2887
  "Now you can edit forms from your mobile devices directly. Our improved "
2888
  "responsive layouts of form builder makes it easy for you to build forms on "
2889
  "the go."
2890
  msgstr ""
2891
 
2892
- #: admin/html/whats-new.php:1354
2893
  msgid "Added color schemes for creating attractive form layouts."
2894
  msgstr ""
2895
 
2896
- #: admin/html/whats-new.php:1356
2897
  msgid ""
2898
  "We have added 3 new color schemes for the form layouts which you can choose "
2899
  "from each form's new display settings."
2900
  msgstr ""
2901
 
2902
- #: admin/html/whats-new.php:1359
2903
  msgid "Restrict Free subscription pack to be enabled multiple times "
2904
  msgstr ""
2905
 
2906
- #: admin/html/whats-new.php:1361
2907
  msgid ""
2908
  "Free subscription packs now can only be purchased once and the limit "
2909
  "applies properly"
2910
  msgstr ""
2911
 
2912
- #: admin/html/whats-new.php:1364
2913
  msgid "Various other bug fixes and improvements were made "
2914
  msgstr ""
2915
 
2916
- #: admin/html/whats-new.php:1366
2917
  msgid "Please see the change log to see full details."
2918
  msgstr ""
2919
 
2920
- #: admin/html/whats-new.php:1375
2921
  msgid "Added upgrade function for default category"
2922
  msgstr ""
2923
 
2924
- #: admin/html/whats-new.php:1377
2925
  msgid "Upgrader added to upgrade previously set default post category."
2926
  msgstr ""
2927
 
2928
- #: admin/html/whats-new.php:1380
2929
  msgid "Subscription pack cannot be canceled"
2930
  msgstr ""
2931
 
2932
- #: admin/html/whats-new.php:1382
2933
  msgid ""
2934
  "Fixed recurring subscription pack cannot be canceled from my account page "
2935
  "in subscription details section."
2936
  msgstr ""
2937
 
2938
- #: admin/html/whats-new.php:1385
2939
  msgid "page installer admin notice logic issue"
2940
  msgstr ""
2941
 
2942
- #: admin/html/whats-new.php:1387
2943
  msgid ""
2944
  "Fixed page installer admin notice logic problem due to new payment settings "
2945
  "default value not set."
2946
  msgstr ""
2947
 
2948
- #: admin/html/whats-new.php:1397
2949
  msgid "Setup Wizard"
2950
  msgstr ""
2951
 
2952
- #: admin/html/whats-new.php:1399
2953
  msgid "Setup Wizard added to turn off payment options and install pages."
2954
  msgstr ""
2955
 
2956
- #: admin/html/whats-new.php:1403
2957
  msgid "Multi-select Category"
2958
  msgstr ""
2959
 
2960
- #: admin/html/whats-new.php:1405
2961
  msgid "Add multi-select to default category in post form settings."
2962
  msgstr ""
2963
 
2964
- #: admin/html/whats-new.php:1409
2965
  msgid "Select Text option for Taxonomy"
2966
  msgstr ""
2967
 
2968
- #: admin/html/whats-new.php:1411
2969
  msgid ""
2970
  "Add Select Text option for taxonomy fields. Now you can add default text "
2971
  "with empty value as first option for Taxonomy dropdown."
2972
  msgstr ""
2973
 
2974
- #: admin/html/whats-new.php:1414
2975
  msgid "Taxonomy Checkbox Inline"
2976
  msgstr ""
2977
 
2978
- #: admin/html/whats-new.php:1416
2979
  msgid ""
2980
  "Added checkbox inline option to taxonomy checkbox. You can now display "
2981
  "Taxonomy checkbox fields inline."
2982
  msgstr ""
2983
 
2984
- #: admin/html/whats-new.php:1426
2985
  msgid "Manage schedule for form submission"
2986
  msgstr ""
2987
 
2988
- #: admin/html/whats-new.php:1428
2989
  msgid ""
2990
  "Do not accept form submission if the current date is not between the date "
2991
  "range of the schedule."
2992
  msgstr ""
2993
 
2994
- #: admin/html/whats-new.php:1432
2995
  msgid "Restrict form submission based on the user roles"
2996
  msgstr ""
2997
 
2998
- #: admin/html/whats-new.php:1434
2999
  msgid ""
3000
  "Restrict form submission based on the user roles. Now you can manage user "
3001
  "role base permission on form submission."
3002
  msgstr ""
3003
 
3004
- #: admin/html/whats-new.php:1438
3005
  msgid "Limit how many entries a form will accept"
3006
  msgstr ""
3007
 
3008
- #: admin/html/whats-new.php:1440
3009
  msgid ""
3010
  "Limit how many entries a form will accept and display a custom message when "
3011
  "that limit is reached."
3012
  msgstr ""
3013
 
3014
- #: admin/html/whats-new.php:1444
3015
  msgid "Show/hide Admin Bar"
3016
  msgstr ""
3017
 
3018
- #: admin/html/whats-new.php:1446
3019
  msgid "Control the admin bar visibility based on user roles."
3020
  msgstr ""
3021
 
3022
- #: admin/html/whats-new.php:1450
3023
  msgid "Ajax Login widget"
3024
  msgstr ""
3025
 
3026
- #: admin/html/whats-new.php:1452
3027
  msgid ""
3028
  "Login user is more simple now with Ajax Login Widget. The simple ajax login "
3029
  "form do not required page loading for login."
3030
  msgstr ""
3031
 
3032
- #: admin/html/whats-new.php:1456
3033
  msgid "Form submission with Captcha field"
3034
  msgstr ""
3035
 
3036
- #: admin/html/whats-new.php:1458
3037
  msgid "Form field validation process updated if form submits with captcha field."
3038
  msgstr ""
3039
 
3040
- #: admin/html/whats-new.php:1472
3041
  msgid "What's New in WPUF?"
3042
  msgstr ""
3043
 
@@ -5178,31 +5186,35 @@ msgstr ""
5178
  msgid "You're not allowed to edit this post."
5179
  msgstr ""
5180
 
5181
- #: includes/class-frontend-form-post.php:333
 
 
 
 
5182
  msgid "Minimum %d character is required for %s"
5183
  msgstr ""
5184
 
5185
- #: includes/class-frontend-form-post.php:337
5186
  msgid "Maximum %d character is allowed for %s"
5187
  msgstr ""
5188
 
5189
- #: includes/class-frontend-form-post.php:344
5190
  msgid "Minimum %d word is required for %s"
5191
  msgstr ""
5192
 
5193
- #: includes/class-frontend-form-post.php:348
5194
  msgid "Maximum %d word is allowed for %s"
5195
  msgstr ""
5196
 
5197
- #: includes/class-frontend-form-post.php:575
5198
  msgid "Something went wrong"
5199
  msgstr ""
5200
 
5201
- #: includes/class-frontend-form-post.php:596
5202
  msgid "Invalid email address."
5203
  msgstr ""
5204
 
5205
- #: includes/class-frontend-form-post.php:607
5206
  msgid ""
5207
  "You already have an account in our site. Please login to continue.\n"
5208
  "\n"
@@ -5211,17 +5223,17 @@ msgid ""
5211
  "Click 'Cancel' to stay at this page."
5212
  msgstr ""
5213
 
5214
- #: includes/class-frontend-form-post.php:661
5215
  #: includes/class-frontend-render-form.php:320
5216
  msgid "You do not have sufficient permissions to access this form."
5217
  msgstr ""
5218
 
5219
- #: includes/class-frontend-form-post.php:974
5220
  msgid "Email successfully verified. Please Login."
5221
  msgstr ""
5222
 
5223
- #: includes/class-frontend-form-post.php:1101
5224
- #: includes/class-frontend-form-post.php:1107
5225
  msgid ""
5226
  "Thank you for posting on our site. We have sent you an confirmation email. "
5227
  "Please check your inbox!"
@@ -5764,6 +5776,7 @@ msgstr ""
5764
 
5765
  #: includes/class-user-subscription.php:351
5766
  #: templates/dashboard/subscription.php:36
 
5767
  msgid "Unlimited"
5768
  msgstr ""
5769
 
@@ -7050,6 +7063,10 @@ msgstr ""
7050
  msgid "Item Deleted successfully !"
7051
  msgstr ""
7052
 
 
 
 
 
7053
  #: templates/dashboard/posts.php:181
7054
  msgid "Payment: "
7055
  msgstr ""
@@ -7436,7 +7453,7 @@ msgstr ""
7436
  msgid "Jordanian dinar"
7437
  msgstr ""
7438
 
7439
- #: wpuf-functions.php:3440
7440
  msgid "None"
7441
  msgstr ""
7442
 
2
  # This file is distributed under the GPL2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP User Frontend 3.5.28\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2022-06-17 13:53:21+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
383
 
384
  #: admin/class-tools.php:43 admin/class-tools.php:106
385
  #: admin/post-forms-list-table.php:43 class/transactions-list-table.php:95
386
+ #: includes/class-list-table-subscribers.php:136 wpuf-functions.php:3435
387
  msgid "All"
388
  msgstr ""
389
 
683
  msgstr ""
684
 
685
  #: admin/form-builder/views/form-builder.php:15
686
+ #: admin/html/form-settings-post.php:23 templates/dashboard/posts.php:165
687
  msgid "Preview"
688
  msgstr ""
689
 
1437
  msgstr ""
1438
 
1439
  #: admin/html/whats-new.php:8
1440
+ msgid "Updated compatibility with the latest version of WordPress 6.0"
1441
  msgstr ""
1442
 
1443
  #: admin/html/whats-new.php:12
1444
+ msgid "Improved some backend implementations"
1445
+ msgstr ""
1446
+
1447
+ #: admin/html/whats-new.php:22
1448
+ msgid "Email template enhanced for after activation"
1449
+ msgstr ""
1450
+
1451
+ #: admin/html/whats-new.php:26
1452
  msgid "Read only option for custom field"
1453
  msgstr ""
1454
 
1455
+ #: admin/html/whats-new.php:30
1456
  msgid "Editor toolbar exclude option enhanced"
1457
  msgstr ""
1458
 
1459
+ #: admin/html/whats-new.php:34
1460
  msgid "Preview option enhanced for user profile"
1461
  msgstr ""
1462
 
1463
+ #: admin/html/whats-new.php:38
1464
  msgid "Meta key enhanced for user email notification"
1465
  msgstr ""
1466
 
1467
+ #: admin/html/whats-new.php:42
1468
  msgid "Global option for disable post edit on account"
1469
  msgstr ""
1470
 
1471
+ #: admin/html/whats-new.php:46
1472
  msgid "Filter for conditional logic for fields added"
1473
  msgstr ""
1474
 
1475
+ #: admin/html/whats-new.php:50
1476
  msgid "PHP 8 compatibility handled"
1477
  msgstr ""
1478
 
1479
+ #: admin/html/whats-new.php:54
1480
  msgid "Address / Billing address inconsistency handled"
1481
  msgstr ""
1482
 
1483
+ #: admin/html/whats-new.php:58
1484
  msgid "Content restriction several issue fixed"
1485
  msgstr ""
1486
 
1487
+ #: admin/html/whats-new.php:62
1488
  msgid "Tax calculation properly handled for all areas"
1489
  msgstr ""
1490
 
1491
+ #: admin/html/whats-new.php:66
1492
  msgid "Validation added for invalid email and URL formats"
1493
  msgstr ""
1494
 
1495
+ #: admin/html/whats-new.php:70
1496
  msgid "Special character password handled for login"
1497
  msgstr ""
1498
 
1499
+ #: admin/html/whats-new.php:74
1500
  msgid "Reset password handled for sidebar widget"
1501
  msgstr ""
1502
 
1503
+ #: admin/html/whats-new.php:78
1504
  msgid "Required google map issues handled"
1505
  msgstr ""
1506
 
1507
+ #: admin/html/whats-new.php:82
1508
  msgid "Translation related issue handled for admin menu"
1509
  msgstr ""
1510
 
1511
+ #: admin/html/whats-new.php:86
1512
  msgid "Label & query enhanced for transaction table"
1513
  msgstr ""
1514
 
1515
+ #: admin/html/whats-new.php:90
1516
  msgid "Template override for child theme fixed"
1517
  msgstr ""
1518
 
1519
+ #: admin/html/whats-new.php:94
1520
  msgid "Custom field modal handled for registration form"
1521
  msgstr ""
1522
 
1523
+ #: admin/html/whats-new.php:98
1524
  msgid "Redundant CSS issues handled"
1525
  msgstr ""
1526
 
1527
+ #: admin/html/whats-new.php:102
1528
  msgid "Address field inconsistency fixed"
1529
  msgstr ""
1530
 
1531
+ #: admin/html/whats-new.php:106
1532
  msgid "Plugin page spin loading issue handled"
1533
  msgstr ""
1534
 
1535
+ #: admin/html/whats-new.php:110
1536
  msgid "Warning on exit for draft post fixed"
1537
  msgstr ""
1538
 
1539
+ #: admin/html/whats-new.php:114
1540
  msgid "Unlimited expire on admin user profile handled"
1541
  msgstr ""
1542
 
1543
+ #: admin/html/whats-new.php:118
1544
  msgid "No value checkbox issue handled"
1545
  msgstr ""
1546
 
1547
+ #: admin/html/whats-new.php:122
1548
  msgid "Tag search security Vulnerability handled"
1549
  msgstr ""
1550
 
1551
+ #: admin/html/whats-new.php:126
1552
  msgid "Multi dropdown field error handled"
1553
  msgstr ""
1554
 
1555
+ #: admin/html/whats-new.php:137
1556
  msgid "Promotion notice enhanced through api"
1557
  msgstr ""
1558
 
1559
+ #: admin/html/whats-new.php:148
1560
  msgid "Security Vulnerability fixed"
1561
  msgstr ""
1562
 
1563
+ #: admin/html/whats-new.php:159
1564
  msgid "Featured item for subscriber"
1565
  msgstr ""
1566
 
1567
+ #: admin/html/whats-new.php:163
1568
  msgid "Warning added for unsaved form data on frontend"
1569
  msgstr ""
1570
 
1571
+ #: admin/html/whats-new.php:167
1572
  msgid "Settings page search implemented"
1573
  msgstr ""
1574
 
1575
+ #: admin/html/whats-new.php:171
1576
  msgid "Editor added for registration form email template"
1577
  msgstr ""
1578
 
1579
+ #: admin/html/whats-new.php:175
1580
  msgid "Fallback pay per post not working with when draft enabled"
1581
  msgstr ""
1582
 
1583
+ #: admin/html/whats-new.php:179
1584
  msgid "User Dashboard responsive issues fixed"
1585
  msgstr ""
1586
 
1587
+ #: admin/html/whats-new.php:183
1588
  msgid "Showing wrong license expire message handled"
1589
  msgstr ""
1590
 
1591
+ #: admin/html/whats-new.php:187
1592
  msgid "Remove expire cron handled for once daily"
1593
  msgstr ""
1594
 
1595
+ #: admin/html/whats-new.php:191
1596
  msgid "Billing address validation handled"
1597
  msgstr ""
1598
 
1599
+ #: admin/html/whats-new.php:195
1600
  msgid "Promotion notice restricted for WPUF menu"
1601
  msgstr ""
1602
 
1603
+ #: admin/html/whats-new.php:206
1604
  msgid "reCaptcha issue with other plugin handled"
1605
  msgstr ""
1606
 
1607
+ #: admin/html/whats-new.php:210
1608
  msgid "Multiple post type for wpuf dashboard not working fixed"
1609
  msgstr ""
1610
 
1611
+ #: admin/html/whats-new.php:214
1612
  msgid "Billing address ajax request issue handled"
1613
  msgstr ""
1614
 
1615
+ #: admin/html/whats-new.php:218
1616
  msgid "Halloween promotion notice added"
1617
  msgstr ""
1618
 
1619
+ #: admin/html/whats-new.php:229
1620
  msgid "Content restriction for minimum, maximum value enhanced"
1621
  msgstr ""
1622
 
1623
+ #: admin/html/whats-new.php:233
1624
  msgid "New option for redirection after pay per post payment in form setting"
1625
  msgstr ""
1626
 
1627
+ #: admin/html/whats-new.php:237
1628
  msgid "Controller added for various email notification"
1629
  msgstr ""
1630
 
1631
+ #: admin/html/whats-new.php:241
1632
  msgid "Placeholder added for unauth message option"
1633
  msgstr ""
1634
 
1635
+ #: admin/html/whats-new.php:245
1636
  msgid "Subscription Post expiration option change to input field"
1637
  msgstr ""
1638
 
1639
+ #: admin/html/whats-new.php:249
1640
  msgid "Content restriction message translatable"
1641
  msgstr ""
1642
 
1643
+ #: admin/html/whats-new.php:253
1644
  msgid "ACF integration inconsistency handled"
1645
  msgstr ""
1646
 
1647
+ #: admin/html/whats-new.php:257
1648
  msgid "Enable payment checkbox handled for child option"
1649
  msgstr ""
1650
 
1651
+ #: admin/html/whats-new.php:261
1652
  msgid "Broken asset link handled for custom field popup"
1653
  msgstr ""
1654
 
1655
+ #: admin/html/whats-new.php:265
1656
  msgid "Rollback inconsistency for CPT handled"
1657
  msgstr ""
1658
 
1659
+ #: admin/html/whats-new.php:269
1660
  msgid "Login form loaded after resetting password"
1661
  msgstr ""
1662
 
1663
+ #: admin/html/whats-new.php:273
1664
  msgid "Billing address inconsistency handled"
1665
  msgstr ""
1666
 
1667
+ #: admin/html/whats-new.php:277
1668
  msgid "Form duplication on creation handled"
1669
  msgstr ""
1670
 
1671
+ #: admin/html/whats-new.php:281
1672
  msgid "Field Dragging inconsistency fixed"
1673
  msgstr ""
1674
 
1675
+ #: admin/html/whats-new.php:292
1676
  msgid "Google Map field enhanced along with acf google map"
1677
  msgstr ""
1678
 
1679
+ #: admin/html/whats-new.php:296
1680
  msgid "Filter added for dashboard account menu"
1681
  msgstr ""
1682
 
1683
+ #: admin/html/whats-new.php:300
1684
  msgid "Fallback Pay Per Post inconsistency handled"
1685
  msgstr ""
1686
 
1687
+ #: admin/html/whats-new.php:304
1688
  msgid "Google map search field not showing"
1689
  msgstr ""
1690
 
1691
+ #: admin/html/whats-new.php:308
1692
  msgid "Form preview page inconsistency with builder"
1693
  msgstr ""
1694
 
1695
+ #: admin/html/whats-new.php:312
1696
  msgid "Category not showing as hierarchy"
1697
  msgstr ""
1698
 
1699
+ #: admin/html/whats-new.php:316
1700
  msgid "TOC field randering issue with registration form"
1701
  msgstr ""
1702
 
1703
+ #: admin/html/whats-new.php:320
1704
  msgid "Custom plupload filter inconsistency with file upload handled"
1705
  msgstr ""
1706
 
1707
+ #: admin/html/whats-new.php:324
1708
  msgid "Guest Pay Per Post inconsistency handled"
1709
  msgstr ""
1710
 
1711
+ #: admin/html/whats-new.php:328
1712
  msgid "Responsive and font issue handled"
1713
  msgstr ""
1714
 
1715
+ #: admin/html/whats-new.php:339
1716
  msgid "Preview page added for post form and registration form"
1717
  msgstr ""
1718
 
1719
+ #: admin/html/whats-new.php:343
1720
  msgid "Post types menu on account page added"
1721
  msgstr ""
1722
 
1723
+ #: admin/html/whats-new.php:347
1724
  msgid "Dashboard shortcode attributes enhanced"
1725
  msgstr ""
1726
 
1727
+ #: admin/html/whats-new.php:351
1728
  msgid "Account page post type list new design"
1729
  msgstr ""
1730
 
1731
+ #: admin/html/whats-new.php:355
1732
  msgid "Payment page restricted from direct unauthenticated access"
1733
  msgstr ""
1734
 
1735
+ #: admin/html/whats-new.php:359
1736
  msgid "Timepicker conflict with dokan handled"
1737
  msgstr ""
1738
 
1739
+ #: admin/html/whats-new.php:363
1740
  msgid "Trial inconsistency with paypal fixed"
1741
  msgstr ""
1742
 
1743
+ #: admin/html/whats-new.php:367
1744
  msgid "Subscription does not cancel with paypal due to profile missing id"
1745
  msgstr ""
1746
 
1747
+ #: admin/html/whats-new.php:371
1748
  msgid "Subscription email notification inconsistency fixed"
1749
  msgstr ""
1750
 
1751
+ #: admin/html/whats-new.php:375
1752
  msgid "Various issues on payment page for non-logged in user handled"
1753
  msgstr ""
1754
 
1755
+ #: admin/html/whats-new.php:379
1756
  msgid "Column inner field cloning inconsistency fixed"
1757
  msgstr ""
1758
 
1759
+ #: admin/html/whats-new.php:383
1760
  msgid "Popup z-index changed due to other plugin z-index"
1761
  msgstr ""
1762
 
1763
+ #: admin/html/whats-new.php:395
1764
  msgid "Added Mauritian Rupee for currency"
1765
  msgstr ""
1766
 
1767
+ #: admin/html/whats-new.php:399
1768
  msgid "Added eid promotional offer notice"
1769
  msgstr ""
1770
 
1771
+ #: admin/html/whats-new.php:403
1772
  msgid "Multiple google map validation for same form"
1773
  msgstr ""
1774
 
1775
+ #: admin/html/whats-new.php:407
1776
  msgid "Various issues on verification, autologin payments & address field"
1777
  msgstr ""
1778
 
1779
+ #: admin/html/whats-new.php:411
1780
  msgid "Docs update for file & attachments feature which is pro only"
1781
  msgstr ""
1782
 
1783
+ #: admin/html/whats-new.php:422
1784
  msgid "Overflow footer on form builder page"
1785
  msgstr ""
1786
 
1787
+ #: admin/html/whats-new.php:426
1788
  msgid "WordPress 5.7 compatibility"
1789
  msgstr ""
1790
 
1791
+ #: admin/html/whats-new.php:430
1792
  msgid "Limited time promotion for weDevs birthday"
1793
  msgstr ""
1794
 
1795
+ #: admin/html/whats-new.php:441
1796
  msgid "Meta key will not change if label update"
1797
  msgstr ""
1798
 
1799
+ #: admin/html/whats-new.php:445
1800
  msgid "Login redirect empty previous url"
1801
  msgstr ""
1802
 
1803
+ #: admin/html/whats-new.php:449
1804
  msgid "Email doesnt set as username"
1805
  msgstr ""
1806
 
1807
+ #: admin/html/whats-new.php:453
1808
  msgid "Post redirection to payment doesn't work"
1809
  msgstr ""
1810
 
1811
+ #: admin/html/whats-new.php:457
1812
  msgid "Address field not working when used with conditional logic"
1813
  msgstr ""
1814
 
1815
+ #: admin/html/whats-new.php:461
1816
  msgid "Ajax type category child of not working"
1817
  msgstr ""
1818
 
1819
+ #: admin/html/whats-new.php:465
1820
  msgid "Non recurring subscription did not work"
1821
  msgstr ""
1822
 
1823
+ #: admin/html/whats-new.php:476
1824
  msgid "Menu position has chenged due to dokan has same menu position"
1825
  msgstr ""
1826
 
1827
+ #: admin/html/whats-new.php:480
1828
  msgid "Drag and drop not working properly for new field"
1829
  msgstr ""
1830
 
1831
+ #: admin/html/whats-new.php:491
1832
  msgid "QR and math captcha added to pro feature list"
1833
  msgstr ""
1834
 
1835
+ #: admin/html/whats-new.php:495
1836
  msgid "Tooltip for category navigate"
1837
  msgstr ""
1838
 
1839
+ #: admin/html/whats-new.php:499
1840
  msgid "Understandable guest payment notice"
1841
  msgstr ""
1842
 
1843
+ #: admin/html/whats-new.php:503
1844
  msgid "Paypal non recurring pack id does not set"
1845
  msgstr ""
1846
 
1847
+ #: admin/html/whats-new.php:514
1848
  msgid "Once trial subscription is used, it couldn't reset"
1849
  msgstr ""
1850
 
1851
+ #: admin/html/whats-new.php:518
1852
  msgid "Subscription cancel doesn't work"
1853
  msgstr ""
1854
 
1855
+ #: admin/html/whats-new.php:522
1856
  msgid "The tax rate was not calculated with the total amount"
1857
  msgstr ""
1858
 
1859
+ #: admin/html/whats-new.php:526
1860
  msgid "The width of the column field was breaking"
1861
  msgstr ""
1862
 
1863
+ #: admin/html/whats-new.php:530
1864
  msgid "Paypal recurring payment"
1865
  msgstr ""
1866
 
1867
+ #: admin/html/whats-new.php:541
1868
  msgid "Updated codebase to fix timezone mismatch"
1869
  msgstr ""
1870
 
1871
+ #: admin/html/whats-new.php:552
1872
  msgid "Custom html content field's width"
1873
  msgstr ""
1874
 
1875
+ #: admin/html/whats-new.php:556
1876
  msgid "All states of New Zealand are added"
1877
  msgstr ""
1878
 
1879
+ #: admin/html/whats-new.php:567
1880
  msgid "Get appropriate user id when role based conditions are present"
1881
  msgstr ""
1882
 
1883
+ #: admin/html/whats-new.php:571
1884
  msgid "Show Invalid subscription message if wrong pack id passed"
1885
  msgstr ""
1886
 
1887
+ #: admin/html/whats-new.php:575
1888
  msgid "URL field new window not working"
1889
  msgstr ""
1890
 
1891
+ #: admin/html/whats-new.php:579
1892
  msgid "Option label not working when & use"
1893
  msgstr ""
1894
 
1895
+ #: admin/html/whats-new.php:583
1896
  msgid "Ajax type category not showing on edit"
1897
  msgstr ""
1898
 
1899
+ #: admin/html/whats-new.php:587
1900
  msgid "Multiple file image can't select"
1901
  msgstr ""
1902
 
1903
+ #: admin/html/whats-new.php:591
1904
  msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
1905
  msgstr ""
1906
 
1907
+ #: admin/html/whats-new.php:595
1908
  msgid "Conflict image field with acf image field"
1909
  msgstr ""
1910
 
1911
+ #: admin/html/whats-new.php:599
1912
  msgid "Missing Auckland State for New Zealand country"
1913
  msgstr ""
1914
 
1915
+ #: admin/html/whats-new.php:603
1916
  msgid "Added support for WooCommerce product category value replacemen"
1917
  msgstr ""
1918
 
1919
+ #: admin/html/whats-new.php:613
1920
  msgid "Add character restriction feature"
1921
  msgstr ""
1922
 
1923
+ #: admin/html/whats-new.php:617
1924
  msgid "Make sure post author edit link works only in frontend"
1925
  msgstr ""
1926
 
1927
+ #: admin/html/whats-new.php:621
1928
  msgid "Inconsistency in lost password reset email message"
1929
  msgstr ""
1930
 
1931
+ #: admin/html/whats-new.php:625
1932
  msgid "Saving custom taxonomy terms when input type is text"
1933
  msgstr ""
1934
 
1935
+ #: admin/html/whats-new.php:629
1936
  msgid "Taxonomy field JS error in builder"
1937
  msgstr ""
1938
 
1939
+ #: admin/html/whats-new.php:633
1940
  msgid "Showing WPUF edit link for WP default roles"
1941
  msgstr ""
1942
 
1943
+ #: admin/html/whats-new.php:637
1944
  msgid "Upload button unresponsive issue in iOS"
1945
  msgstr ""
1946
 
1947
+ #: admin/html/whats-new.php:647
1948
  msgid "Add post edit link for post authors in single or archive pages"
1949
  msgstr ""
1950
 
1951
+ #: admin/html/whats-new.php:651
1952
  msgid "Enhance post delete message"
1953
  msgstr ""
1954
 
1955
+ #: admin/html/whats-new.php:655
1956
  msgid "Refactor control buttons visibility in form builder"
1957
  msgstr ""
1958
 
1959
+ #: admin/html/whats-new.php:659
1960
  msgid "Add missing colons after field label"
1961
  msgstr ""
1962
 
1963
+ #: admin/html/whats-new.php:663
1964
  msgid "Post edit map capability condition"
1965
  msgstr ""
1966
 
1967
+ #: admin/html/whats-new.php:667
1968
  msgid "Role based permission for accessing a post form"
1969
  msgstr ""
1970
 
1971
+ #: admin/html/whats-new.php:671
1972
  msgid "Section-break field alignment"
1973
  msgstr ""
1974
 
1975
+ #: admin/html/whats-new.php:675
1976
  msgid "Pay per post doesn't work if subscription pack is activated"
1977
  msgstr ""
1978
 
1979
+ #: admin/html/whats-new.php:679
1980
  msgid "Mime type for uploading JSON files"
1981
  msgstr ""
1982
 
1983
+ #: admin/html/whats-new.php:683
1984
  msgid "File upload with same file name"
1985
  msgstr ""
1986
 
1987
+ #: admin/html/whats-new.php:687
1988
  msgid "Post preview missing fields"
1989
  msgstr ""
1990
 
1991
+ #: admin/html/whats-new.php:691
1992
  msgid "Illigal variable declartion"
1993
  msgstr ""
1994
 
1995
+ #: admin/html/whats-new.php:695
1996
  msgid "Featured image updating issue"
1997
  msgstr ""
1998
 
1999
+ #: admin/html/whats-new.php:699
2000
  msgid "Conflict with Phlox theme"
2001
  msgstr ""
2002
 
2003
+ #: admin/html/whats-new.php:703
2004
  msgid "Textarea custom field data sanitization"
2005
  msgstr ""
2006
 
2007
+ #: admin/html/whats-new.php:707
2008
  msgid "exclude_type warning in wpuf_category_checklist"
2009
  msgstr ""
2010
 
2011
+ #: admin/html/whats-new.php:711
2012
  msgid "Category field not showing all child categories for selection type child of"
2013
  msgstr ""
2014
 
2015
+ #: admin/html/whats-new.php:715
2016
  msgid "Conflict between image and file upload custom fields"
2017
  msgstr ""
2018
 
2019
+ #: admin/html/whats-new.php:719
2020
  msgid "Login url when login page is not set"
2021
  msgstr ""
2022
 
2023
+ #: admin/html/whats-new.php:729
2024
  msgid ""
2025
  "Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
2026
  "their official names"
2027
  msgstr ""
2028
 
2029
+ #: admin/html/whats-new.php:733
2030
  msgid "Fix condition to use default avatar"
2031
  msgstr ""
2032
 
2033
+ #: admin/html/whats-new.php:737
2034
  msgid "Make Email and URL fields clickable"
2035
  msgstr ""
2036
 
2037
+ #: admin/html/whats-new.php:741
2038
  msgid "Fix redirect after user login"
2039
  msgstr ""
2040
 
2041
+ #: admin/html/whats-new.php:745
2042
  msgid "Sanitize textarea field data"
2043
  msgstr ""
2044
 
2045
+ #: admin/html/whats-new.php:749
2046
  msgid ""
2047
  "Fix missing colon to email, URL, text and textarea labels when renders "
2048
  "their data"
2049
  msgstr ""
2050
 
2051
+ #: admin/html/whats-new.php:753
2052
  msgid "Prevent showing empty labels for fields that have render_field_data method"
2053
  msgstr ""
2054
 
2055
+ #: admin/html/whats-new.php:763
2056
  msgid "Add Namibian Dollar in currency list"
2057
  msgstr ""
2058
 
2059
+ #: admin/html/whats-new.php:767
2060
  msgid "Add sync values option for option data fields"
2061
  msgstr ""
2062
 
2063
+ #: admin/html/whats-new.php:771
2064
  msgid "Allow uploading image that having filesize meets php ini settings"
2065
  msgstr ""
2066
 
2067
+ #: admin/html/whats-new.php:775
2068
  msgid "Limit the selection of one image at a time"
2069
  msgstr ""
2070
 
2071
+ #: admin/html/whats-new.php:779
2072
  msgid "Use file name and size to generate hash to prevent duplicant image upload"
2073
  msgstr ""
2074
 
2075
+ #: admin/html/whats-new.php:783
2076
  msgid "Sanitize text and textarea field data"
2077
  msgstr ""
2078
 
2079
+ #: admin/html/whats-new.php:787
2080
  msgid ""
2081
  "Show label instead of values for radio, checkbox, dropdown and multiselect "
2082
  "data"
2083
  msgstr ""
2084
 
2085
+ #: admin/html/whats-new.php:791
2086
  msgid "Saving custom taxonomies for type text input"
2087
  msgstr ""
2088
 
2089
+ #: admin/html/whats-new.php:795
2090
  msgid "Admin settings link for recaptcha helper text"
2091
  msgstr ""
2092
 
2093
+ #: admin/html/whats-new.php:799
2094
  msgid "Undefined name property for Custom HTML fields"
2095
  msgstr ""
2096
 
2097
+ #: admin/html/whats-new.php:803
2098
  msgid "Delete attachment process"
2099
  msgstr ""
2100
 
2101
+ #: admin/html/whats-new.php:807
2102
  msgid "Missing billing address in invoice PDF"
2103
  msgstr ""
2104
 
2105
+ #: admin/html/whats-new.php:811
2106
  msgid "Showing country field value in frontend post content"
2107
  msgstr ""
2108
 
2109
+ #: admin/html/whats-new.php:815
2110
  msgid "Avatar size display not complying with admin settings size"
2111
  msgstr ""
2112
 
2113
+ #: admin/html/whats-new.php:819
2114
  msgid "Display default avatars on admin settings discussion page"
2115
  msgstr ""
2116
 
2117
+ #: admin/html/whats-new.php:823
2118
  msgid "Redirect to subscription page at registration"
2119
  msgstr ""
2120
 
2121
+ #: admin/html/whats-new.php:827
2122
  msgid "Error notice regarding registration page redirect"
2123
  msgstr ""
2124
 
2125
+ #: admin/html/whats-new.php:831
2126
  msgid "Escaping html in registration errors"
2127
  msgstr ""
2128
 
2129
+ #: admin/html/whats-new.php:835
2130
  msgid "Default login redirect link"
2131
  msgstr ""
2132
 
2133
+ #: admin/html/whats-new.php:839
2134
  msgid "Implementing default WP login page override option"
2135
  msgstr ""
2136
 
2137
+ #: admin/html/whats-new.php:843
2138
  msgid "Transparent background of autosuggestion dropdown"
2139
  msgstr ""
2140
 
2141
+ #: admin/html/whats-new.php:853
2142
  msgid "Import forms system"
2143
  msgstr ""
2144
 
2145
+ #: admin/html/whats-new.php:857
2146
  msgid "Password reset system"
2147
  msgstr ""
2148
 
2149
+ #: admin/html/whats-new.php:861
2150
  msgid "Updated url validation regex to support modern tlds"
2151
  msgstr ""
2152
 
2153
+ #: admin/html/whats-new.php:865
2154
  msgid "Export WPUF forms individually from admin tools page"
2155
  msgstr ""
2156
 
2157
+ #: admin/html/whats-new.php:869
2158
  msgid "Subscription cycle label translation issue"
2159
  msgstr ""
2160
 
2161
+ #: admin/html/whats-new.php:873
2162
  msgid "ACF integration for checkbox fields"
2163
  msgstr ""
2164
 
2165
+ #: admin/html/whats-new.php:877
2166
  msgid "Illegal string offset warning while updating settings"
2167
  msgstr ""
2168
 
2169
+ #: admin/html/whats-new.php:881
2170
  msgid "Conditional logic for Section Break field"
2171
  msgstr ""
2172
 
2173
+ #: admin/html/whats-new.php:885
2174
  msgid "Subscriptions cannot be deleted from backend"
2175
  msgstr ""
2176
 
2177
+ #: admin/html/whats-new.php:889
2178
  msgid "A regression regarding saving checkbox data"
2179
  msgstr ""
2180
 
2181
+ #: admin/html/whats-new.php:893
2182
  msgid "Default value of multi-select fields is not showing"
2183
  msgstr ""
2184
 
2185
+ #: admin/html/whats-new.php:903
2186
  msgid "Hide post edit option when subscription is expired"
2187
  msgstr ""
2188
 
2189
+ #: admin/html/whats-new.php:905
2190
  msgid "Hide post edit option from users whose subscription pack is expired."
2191
  msgstr ""
2192
 
2193
+ #: admin/html/whats-new.php:908
2194
  msgid "Check files to prevent duplicity in media upload"
2195
  msgstr ""
2196
 
2197
+ #: admin/html/whats-new.php:910
2198
  msgid ""
2199
  "A simple measure has been taken to prevent maliciously flooding the site by "
2200
  "uploading same file multiple times. Though this won't work with already "
2201
  "uploaded medias."
2202
  msgstr ""
2203
 
2204
+ #: admin/html/whats-new.php:913
2205
  msgid "Refactor address fields in Account section"
2206
  msgstr ""
2207
 
2208
+ #: admin/html/whats-new.php:915
2209
  msgid "Address edit section from Account section has been rewritten to improve UX."
2210
  msgstr ""
2211
 
2212
+ #: admin/html/whats-new.php:918
2213
  msgid "Update Paypal payment gateway"
2214
  msgstr ""
2215
 
2216
+ #: admin/html/whats-new.php:920
2217
  msgid "Paypal payment gateway has seen some improvements."
2218
  msgstr ""
2219
 
2220
+ #: admin/html/whats-new.php:923
2221
  msgid "Default Category selection improvements"
2222
  msgstr ""
2223
 
2224
+ #: admin/html/whats-new.php:925
2225
  msgid ""
2226
  "An intuitive way of selecting default category of a selected post type has "
2227
  "been introduced."
2228
  msgstr ""
2229
 
2230
+ #: admin/html/whats-new.php:928
2231
  msgid "Compatibility issue with ACF date time field"
2232
  msgstr ""
2233
 
2234
+ #: admin/html/whats-new.php:930
2235
  msgid "A Compatibility issue with ACF date time field has been addressed."
2236
  msgstr ""
2237
 
2238
+ #: admin/html/whats-new.php:933
2239
  msgid "Media title, caption & description not saving"
2240
  msgstr ""
2241
 
2242
+ #: admin/html/whats-new.php:935
2243
  msgid ""
2244
  "Media title, caption & description were not saving from frontend. They will "
2245
  "now."
2246
  msgstr ""
2247
 
2248
+ #: admin/html/whats-new.php:938
2249
  msgid ""
2250
  "The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
2251
  "metabox"
2252
  msgstr ""
2253
 
2254
+ #: admin/html/whats-new.php:940
2255
  msgid ""
2256
  "A workaround has been introduced to save The Events Calendar Venue and "
2257
  "Organizer fields properly from WPUF Custom Fields metabox."
2258
  msgstr ""
2259
 
2260
+ #: admin/html/whats-new.php:943
2261
  msgid "Checkbox data not saving from WPUF Custom Fields metabox"
2262
  msgstr ""
2263
 
2264
+ #: admin/html/whats-new.php:945
2265
  msgid ""
2266
  "Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
2267
  "fixed."
2268
  msgstr ""
2269
 
2270
+ #: admin/html/whats-new.php:948
2271
  msgid "Multi-column Repeater field data saving issue"
2272
  msgstr ""
2273
 
2274
+ #: admin/html/whats-new.php:950
2275
  msgid ""
2276
  "Multi-column Repeater field data from a form was not saving. It has been "
2277
  "fixed."
2278
  msgstr ""
2279
 
2280
+ #: admin/html/whats-new.php:953
2281
  msgid "Multistep form conflict with Elementor"
2282
  msgstr ""
2283
 
2284
+ #: admin/html/whats-new.php:955
2285
  msgid "Multistep form had a conflict with Elementor. It has been fixed."
2286
  msgstr ""
2287
 
2288
+ #: admin/html/whats-new.php:958
2289
  msgid "Multiple images showing issue in frontend"
2290
  msgstr ""
2291
 
2292
+ #: admin/html/whats-new.php:960
2293
  msgid "Multiple images in a post were not showing in frontend. Now they will."
2294
  msgstr ""
2295
 
2296
+ #: admin/html/whats-new.php:969
2297
  msgid "Nonce not verify on login"
2298
  msgstr ""
2299
 
2300
+ #: admin/html/whats-new.php:971
2301
  msgid "Return of function wp_verify_nonce() was ignored."
2302
  msgstr ""
2303
 
2304
+ #: admin/html/whats-new.php:980
2305
  msgid "Option to set which tab shows as active on the account page"
2306
  msgstr ""
2307
 
2308
+ #: admin/html/whats-new.php:982
2309
  msgid ""
2310
  "Option to set which tab shows as active on the account page. To configure "
2311
  "this setting navigate to wp-admin->User Frontend->Settings->My "
2312
  "Account->Active Tab "
2313
  msgstr ""
2314
 
2315
+ #: admin/html/whats-new.php:985
2316
  msgid "Unlock option was unavailable after the post being locked"
2317
  msgstr ""
2318
 
2319
+ #: admin/html/whats-new.php:987
2320
  msgid "Unlock option was unavailable after the post being locked."
2321
  msgstr ""
2322
 
2323
+ #: admin/html/whats-new.php:990
2324
  msgid "Gutenberg block of WPUF didn't work on bedrock installation"
2325
  msgstr ""
2326
 
2327
+ #: admin/html/whats-new.php:992
2328
  msgid "Gutenberg block of WPUF didn't work on bedrock installation."
2329
  msgstr ""
2330
 
2331
+ #: admin/html/whats-new.php:995
2332
  msgid "Sending admin payment received email twice"
2333
  msgstr ""
2334
 
2335
+ #: admin/html/whats-new.php:997
2336
  msgid ""
2337
  "After processing payment admin & user was receiving payment received email "
2338
  "twice."
2339
  msgstr ""
2340
 
2341
+ #: admin/html/whats-new.php:1000
2342
  msgid ""
2343
  "Add shortcode support to display post information in the Post Expiration "
2344
  "Message"
2345
  msgstr ""
2346
 
2347
+ #: admin/html/whats-new.php:1002
2348
  msgid ""
2349
  "Add shortcode support to display post information in the Post Expiration "
2350
  "Message. You can use: <strong>{post_author} {post_url} {blogname} "
2351
  "{post_title} {post_status}</strong>"
2352
  msgstr ""
2353
 
2354
+ #: admin/html/whats-new.php:1005
2355
  msgid "Add optin on the setup wizard"
2356
  msgstr ""
2357
 
2358
+ #: admin/html/whats-new.php:1007
2359
  msgid ""
2360
  "Added optin on the setup wizard, admin can choose whether he/she wants to "
2361
  "share server environment details (php, mysql, server, WordPress versions), "
2363
  "name and url, admin name and email address. No sensitive data is tracked"
2364
  msgstr ""
2365
 
2366
+ #: admin/html/whats-new.php:1016
2367
  msgid "Post Owner problem"
2368
  msgstr ""
2369
 
2370
+ #: admin/html/whats-new.php:1018
2371
  msgid ""
2372
  "Posts were not assigned to the selected default post owner, this issue has "
2373
  "been fixed."
2374
  msgstr ""
2375
 
2376
+ #: admin/html/whats-new.php:1021
2377
  msgid "Google reCaptcha was not working"
2378
  msgstr ""
2379
 
2380
+ #: admin/html/whats-new.php:1023
2381
  msgid ""
2382
  "Google reCaptcha was not working, users could submit the form without "
2383
  "reCaptcha validation."
2384
  msgstr ""
2385
 
2386
+ #: admin/html/whats-new.php:1032
2387
  msgid "Added column field"
2388
  msgstr ""
2389
 
2390
+ #: admin/html/whats-new.php:1037
2391
  msgid "Unable to render the events on the front-end dashboard"
2392
  msgstr ""
2393
 
2394
+ #: admin/html/whats-new.php:1039
2395
  msgid ""
2396
  "On the frontend dashboard, the submitted events were not showing, you will "
2397
  "get it fixed in this version."
2398
  msgstr ""
2399
 
2400
+ #: admin/html/whats-new.php:1042
2401
  msgid "Page order getting 0(zero) after editing from the frontend"
2402
  msgstr ""
2403
 
2404
+ #: admin/html/whats-new.php:1044
2405
  msgid ""
2406
  "Page order was not saving while editing a post using WPUF form, it has been "
2407
  "fixed."
2408
  msgstr ""
2409
 
2410
+ #: admin/html/whats-new.php:1047
2411
  msgid "Text input field for taxonomies not working"
2412
  msgstr ""
2413
 
2414
+ #: admin/html/whats-new.php:1049
2415
  msgid ""
2416
  "When taxonomy field type is set to `Text Input` then a fatal error was "
2417
  "showing on the frontend, no error with taxonomy field in the latest version."
2418
  msgstr ""
2419
 
2420
+ #: admin/html/whats-new.php:1052
2421
  msgid ""
2422
  "In radio and checkbox field use conditional logic that value does not save "
2423
  "in database"
2424
  msgstr ""
2425
 
2426
+ #: admin/html/whats-new.php:1054
2427
  msgid ""
2428
  "The selected value of radio and checkbox field were not showing while "
2429
  "editing posts from the backend or frontend, you can see the selected value "
2430
  "in this version."
2431
  msgstr ""
2432
 
2433
+ #: admin/html/whats-new.php:1057
2434
  msgid "The args param not working with get_avatar filter"
2435
  msgstr ""
2436
 
2437
+ #: admin/html/whats-new.php:1059
2438
  msgid "The args parameter did not exist with get_avatar filter, which now exists."
2439
  msgstr ""
2440
 
2441
+ #: admin/html/whats-new.php:1062
2442
  msgid "The item in ajax taxonomy field was not selected"
2443
  msgstr ""
2444
 
2445
+ #: admin/html/whats-new.php:1064
2446
  msgid ""
2447
  "When the taxonomy field type is set to Ajax, the submitted terms were not "
2448
  "showing in the backend and frontend which have been fixed."
2449
  msgstr ""
2450
 
2451
+ #: admin/html/whats-new.php:1073
2452
  msgid "Unable to send new user registration email"
2453
  msgstr ""
2454
 
2455
+ #: admin/html/whats-new.php:1075
2456
  msgid ""
2457
  "WP User Frontend default registration form `[wpuf-registration]` was unable "
2458
  "to send the new user registration email."
2459
  msgstr ""
2460
 
2461
+ #: admin/html/whats-new.php:1078
2462
  msgid "WPUF forms block compatibility issue with the latest WP version"
2463
  msgstr ""
2464
 
2465
+ #: admin/html/whats-new.php:1080
2466
  msgid ""
2467
  "With the latest version of WordPress the gutenberg block of WP User "
2468
  "Frontend were not working. In this version, you will get it fixed."
2469
  msgstr ""
2470
 
2471
+ #: admin/html/whats-new.php:1083
2472
  msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
2473
  msgstr ""
2474
 
2475
+ #: admin/html/whats-new.php:1085
2476
  msgid ""
2477
  "While using Gutenberg, the page were not being updated with WPUF shortcode "
2478
  "[wpuf dashboard]"
2479
  msgstr ""
2480
 
2481
+ #: admin/html/whats-new.php:1088
2482
  msgid "Retain default when determining whether to display the admin bar"
2483
  msgstr ""
2484
 
2485
+ #: admin/html/whats-new.php:1090
2486
  msgid ""
2487
  "From the User Frontend Settings, set that Administrator, Editor, Vendor can "
2488
  "see the admin bar. Now, the super admin want, one specific user ( who has "
2492
  "frontend."
2493
  msgstr ""
2494
 
2495
+ #: admin/html/whats-new.php:1093
2496
  msgid "Fatal error when use PHP lower version (5.4 or lower)"
2497
  msgstr ""
2498
 
2499
+ #: admin/html/whats-new.php:1095
2500
  msgid ""
2501
  "It was unable to install WP User Frontend with PHP 5.4 or lower version. "
2502
  "Here is the error details: <br><br><strong>Fatal error: Can't use method "
2504
  "/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
2505
  msgstr ""
2506
 
2507
+ #: admin/html/whats-new.php:1098
2508
  msgid "Product form was unable to show the single gallery image"
2509
  msgstr ""
2510
 
2511
+ #: admin/html/whats-new.php:1100
2512
  msgid ""
2513
  "When user upload single image for product gallery using WPUF WooCommerce "
2514
  "product form, that image were not showing on the frontend."
2515
  msgstr ""
2516
 
2517
+ #: admin/html/whats-new.php:1109
2518
  msgid "WooCommerce gallery images not getting saved"
2519
  msgstr ""
2520
 
2521
+ #: admin/html/whats-new.php:1111
2522
  msgid ""
2523
  "After releasing version 2.9.3, WooCommerce gallery image field stopped "
2524
  "working. You will get it fixed in this version."
2525
  msgstr ""
2526
 
2527
+ #: admin/html/whats-new.php:1120
2528
  msgid "The Events Calendar Integration Form"
2529
  msgstr ""
2530
 
2531
+ #: admin/html/whats-new.php:1122
2532
  msgid ""
2533
  "Now admin can allow users to create event from the frontend. Currently WPUF "
2534
  "has a one click pre-build event form that has been integrated with The "
2535
  "Events Calendar plugin"
2536
  msgstr ""
2537
 
2538
+ #: admin/html/whats-new.php:1125
2539
  msgid "Post Submission Facility From Account Page"
2540
  msgstr ""
2541
 
2542
+ #: admin/html/whats-new.php:1127
2543
  msgid ""
2544
  "On the frontend account page, added a new menu item named <b>Submit "
2545
  "Post</b>. Now admin can allow users to submit post from their default "
2548
  "you can assign any post form that will use to submit posts."
2549
  msgstr ""
2550
 
2551
+ #: admin/html/whats-new.php:1130
2552
  msgid "Login/Lost Password Link Under Registration Form"
2553
  msgstr ""
2554
 
2555
+ #: admin/html/whats-new.php:1132
2556
  msgid "Added Login/Lost Password link under registration form"
2557
  msgstr ""
2558
 
2559
+ #: admin/html/whats-new.php:1141
2560
  msgid "Added drag and drop image ordering on image upload"
2561
  msgstr ""
2562
 
2563
+ #: admin/html/whats-new.php:1143
2564
  msgid ""
2565
  "Now frontend users can drag & drop the images/files to change the order "
2566
  "while uploading."
2567
  msgstr ""
2568
 
2569
+ #: admin/html/whats-new.php:1146
2570
  msgid "Added reCAPTCHA field in login form"
2571
  msgstr ""
2572
 
2573
+ #: admin/html/whats-new.php:1148
2574
  msgid ""
2575
  "Admin has the option to show reCAPTCHA field in login form. Check the "
2576
  "related settings from <strong>User Frontend > Settings > "
2577
  "Login/Registration</strong>"
2578
  msgstr ""
2579
 
2580
+ #: admin/html/whats-new.php:1151
2581
  msgid "Added preview option in forms"
2582
  msgstr ""
2583
 
2584
+ #: admin/html/whats-new.php:1153
2585
  msgid ""
2586
  "You can see a nice <strong>Preview</strong> button with <strong>Save "
2587
  "Form</strong> button, admin can take a quick look of the form without using "
2588
  "shortcode"
2589
  msgstr ""
2590
 
2591
+ #: admin/html/whats-new.php:1156
2592
  msgid "Fixed hiding “Select Image” button while uploading multiple images."
2593
  msgstr ""
2594
 
2595
+ #: admin/html/whats-new.php:1158
2596
  msgid ""
2597
  "The upload button will not be hidden until the user selects max number of "
2598
  "files "
2599
  msgstr ""
2600
 
2601
+ #: admin/html/whats-new.php:1161
2602
  msgid "Added form limit notice before form submission"
2603
  msgstr ""
2604
 
2605
+ #: admin/html/whats-new.php:1163
2606
  msgid ""
2607
  "Limit notice message was showing after submission, now it is showing when "
2608
  "rendering the form"
2609
  msgstr ""
2610
 
2611
+ #: admin/html/whats-new.php:1166
2612
  msgid "Fixed: default post category not saving"
2613
  msgstr ""
2614
 
2615
+ #: admin/html/whats-new.php:1168
2616
  msgid ""
2617
  "From the form <strong>Settings > Post Settings</strong>, default post "
2618
  "category options were not saving. Now, it's fixed."
2619
  msgstr ""
2620
 
2621
+ #: admin/html/whats-new.php:1171
2622
  msgid ""
2623
  "WPUF dashboard shortcode with form_id attribute was not showing posts "
2624
  "properly"
2625
  msgstr ""
2626
 
2627
+ #: admin/html/whats-new.php:1173
2628
  msgid ""
2629
  "Now you can list posts on the frontend by using <strong>form_id<strong/> "
2630
  "attribute with <strong>[wpuf_dashboard]</strong> shortcode"
2631
  msgstr ""
2632
 
2633
+ #: admin/html/whats-new.php:1182
2634
  msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
2635
  msgstr ""
2636
 
2637
+ #: admin/html/whats-new.php:1184
2638
  msgid ""
2639
  "If you are using other language than English. Please <b>rename</b> your "
2640
  "<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
2641
  "change was made to support translations from translate.wordpress.org"
2642
  msgstr ""
2643
 
2644
+ #: admin/html/whats-new.php:1187
2645
  msgid "Added WP User Frontend Data export and erase functionality."
2646
  msgstr ""
2647
 
2648
+ #: admin/html/whats-new.php:1189
2649
  msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
2650
  msgstr ""
2651
 
2652
+ #: admin/html/whats-new.php:1192
2653
  msgid "Added billing address customizer."
2654
  msgstr ""
2655
 
2656
+ #: admin/html/whats-new.php:1194
2657
  msgid "Added customizer options for billing address in payment page."
2658
  msgstr ""
2659
 
2660
+ #: admin/html/whats-new.php:1197
2661
  msgid "Make the payment page responsive."
2662
  msgstr ""
2663
 
2664
+ #: admin/html/whats-new.php:1199
2665
  msgid "Some css adjustments are made in payment page to make it responsive."
2666
  msgstr ""
2667
 
2668
+ #: admin/html/whats-new.php:1202
2669
  msgid "Fixed image upload issue in Safari."
2670
  msgstr ""
2671
 
2672
+ #: admin/html/whats-new.php:1204
2673
  msgid "Images were not showing after upload in safari, it is fixed now."
2674
  msgstr ""
2675
 
2676
+ #: admin/html/whats-new.php:1207
2677
  msgid "Post update issue after updating or removing post images."
2678
  msgstr ""
2679
 
2680
+ #: admin/html/whats-new.php:1209
2681
  msgid ""
2682
  "Posts cannot be updated after updating or removing post images, it is fixed "
2683
  "now."
2684
  msgstr ""
2685
 
2686
+ #: admin/html/whats-new.php:1218
2687
  msgid "Allow overriding form input styles using theme styling."
2688
  msgstr ""
2689
 
2690
+ #: admin/html/whats-new.php:1220
2691
  msgid "Overriding form input styles using theme style is now possible."
2692
  msgstr ""
2693
 
2694
+ #: admin/html/whats-new.php:1223
2695
  msgid "Fixed Auto Login after registration."
2696
  msgstr ""
2697
 
2698
+ #: admin/html/whats-new.php:1225
2699
  msgid "Auto Login after registration was not working is fixed now."
2700
  msgstr ""
2701
 
2702
+ #: admin/html/whats-new.php:1228
2703
  msgid "Fixed fallback cost calculation"
2704
  msgstr ""
2705
 
2706
+ #: admin/html/whats-new.php:1230
2707
  msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
2708
  msgstr ""
2709
 
2710
+ #: admin/html/whats-new.php:1233
2711
  msgid "Removal of subscription from User Profile gets reverted if updated"
2712
  msgstr ""
2713
 
2714
+ #: admin/html/whats-new.php:1235
2715
  msgid "User subscription deletion gets reverted if updated is fixed."
2716
  msgstr ""
2717
 
2718
+ #: admin/html/whats-new.php:1238
2719
  msgid "Show Free pack users in subscribers list."
2720
  msgstr ""
2721
 
2722
+ #: admin/html/whats-new.php:1240
2723
  msgid "Free pack users were not showing in subscribers list, now they will."
2724
  msgstr ""
2725
 
2726
+ #: admin/html/whats-new.php:1249
2727
  msgid "WP User Frontend Guten Block is added"
2728
  msgstr ""
2729
 
2730
+ #: admin/html/whats-new.php:1251
2731
  msgid ""
2732
  "WPUF Form Block is now available to be used within gutenberg editor with "
2733
  "preview of the form. "
2734
  msgstr ""
2735
 
2736
+ #: admin/html/whats-new.php:1254
2737
  msgid "Advanced Custom Fields plugin compatibility"
2738
  msgstr ""
2739
 
2740
+ #: admin/html/whats-new.php:1256
2741
  msgid "Now all your ACF fields can be used within WPUF Post forms. "
2742
  msgstr ""
2743
 
2744
+ #: admin/html/whats-new.php:1259
2745
  msgid "Taxonomy Terms not showing for custom post types"
2746
  msgstr ""
2747
 
2748
+ #: admin/html/whats-new.php:1261
2749
  msgid ""
2750
  "Fixed an issue with taxonomy terms not appearing for Custom Post types "
2751
  "within Form Settings and Dashboard Post Listing"
2752
  msgstr ""
2753
 
2754
+ #: admin/html/whats-new.php:1264
2755
  msgid "Various other code optimizations"
2756
  msgstr ""
2757
 
2758
+ #: admin/html/whats-new.php:1266 admin/html/whats-new.php:1323
2759
  msgid "Code structure organization and optimization for better performance"
2760
  msgstr ""
2761
 
2762
+ #: admin/html/whats-new.php:1275
2763
  msgid "WoooCommerce billing address Sync"
2764
  msgstr ""
2765
 
2766
+ #: admin/html/whats-new.php:1277
2767
  msgid ""
2768
  "If an existing customer has previously set his billing address, that will "
2769
  "be imported into WPUF Billing address "
2770
  msgstr ""
2771
 
2772
+ #: admin/html/whats-new.php:1280
2773
  msgid "Trial subscription message not showing properly"
2774
  msgstr ""
2775
 
2776
+ #: admin/html/whats-new.php:1282
2777
  msgid "Subscriptions with Trial now shows trial notices"
2778
  msgstr ""
2779
 
2780
+ #: admin/html/whats-new.php:1285
2781
  msgid "Reset email Key not working"
2782
  msgstr ""
2783
 
2784
+ #: admin/html/whats-new.php:1287
2785
  msgid "Reset Email key was not working in some cases"
2786
  msgstr ""
2787
 
2788
+ #: admin/html/whats-new.php:1290
2789
  msgid "Post count not showing on the frontend dashboard"
2790
  msgstr ""
2791
 
2792
+ #: admin/html/whats-new.php:1292
2793
  msgid ""
2794
  "Dashboard with multiple post type was not showing post counts properly, is "
2795
  "now fixed and shows count for each post type"
2796
  msgstr ""
2797
 
2798
+ #: admin/html/whats-new.php:1295
2799
  msgid "Login Redirect showing blank page is fixed"
2800
  msgstr ""
2801
 
2802
+ #: admin/html/whats-new.php:1297
2803
  msgid ""
2804
  "If \"Previous Page\" was set for redirection, login redirect was "
2805
  "redirecting to blank page for users who hit login page directly"
2806
  msgstr ""
2807
 
2808
+ #: admin/html/whats-new.php:1306
2809
  msgid "Enhanced Login Redirect to redirect users to previous page"
2810
  msgstr ""
2811
 
2812
+ #: admin/html/whats-new.php:1308
2813
  msgid ""
2814
  "You can choose Previous Page as Login Redirect page settings now to "
2815
  "redirect users to the page from which they went for Login. "
2816
  msgstr ""
2817
 
2818
+ #: admin/html/whats-new.php:1311
2819
  msgid "Email HTML links not Rendreing properly issue is fixed"
2820
  msgstr ""
2821
 
2822
+ #: admin/html/whats-new.php:1313
2823
  msgid ""
2824
  "For some clients emails were not rendering the HTML links properly, this is "
2825
  "now fixed"
2826
  msgstr ""
2827
 
2828
+ #: admin/html/whats-new.php:1316
2829
  msgid "Form Builder : Form Field's Help text styles not showing properly"
2830
  msgstr ""
2831
 
2832
+ #: admin/html/whats-new.php:1318
2833
  msgid "Help texts styling is now fixed and much easier to read and understand"
2834
  msgstr ""
2835
 
2836
+ #: admin/html/whats-new.php:1321
2837
  msgid "Various other code improvements"
2838
  msgstr ""
2839
 
2840
+ #: admin/html/whats-new.php:1332
2841
  msgid "Dashboard Post Listing now supports multiple post types"
2842
  msgstr ""
2843
 
2844
+ #: admin/html/whats-new.php:1334
2845
  msgid ""
2846
  "Now you can show multiple post type in user dashboard using shortcode like "
2847
  "this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
2848
  msgstr ""
2849
 
2850
+ #: admin/html/whats-new.php:1337
2851
  msgid "Added Login Redirect Settings"
2852
  msgstr ""
2853
 
2854
+ #: admin/html/whats-new.php:1339
2855
  msgid ""
2856
  "You can now set a page from <i>WPUF Settings > Login/Registration > "
2857
  "Redirect after Login</i>. When login redirection is active the user will be "
2858
  "redirected to this page after login."
2859
  msgstr ""
2860
 
2861
+ #: admin/html/whats-new.php:1342
2862
  msgid "Image Upload field button text can be changed"
2863
  msgstr ""
2864
 
2865
+ #: admin/html/whats-new.php:1344
2866
  msgid ""
2867
  "The upload button text can now be changed for image upload fields which "
2868
  "defaults to \"Select Image\" if not set. "
2869
  msgstr ""
2870
 
2871
+ #: admin/html/whats-new.php:1347
2872
  msgid "Multi Step Form styles made compatible with more themes"
2873
  msgstr ""
2874
 
2875
+ #: admin/html/whats-new.php:1349
2876
  msgid "Multi Step form can now be styled more easily with other themes "
2877
  msgstr ""
2878
 
2879
+ #: admin/html/whats-new.php:1352
2880
  msgid "Required field condition for google map not working is fixed"
2881
  msgstr ""
2882
 
2883
+ #: admin/html/whats-new.php:1354
2884
  msgid ""
2885
  "If Google Map field was set as required users were able to submit form "
2886
  "without changing the default value."
2887
  msgstr ""
2888
 
2889
+ #: admin/html/whats-new.php:1363
2890
  msgid "Admin form builder is now fully responsive."
2891
  msgstr ""
2892
 
2893
+ #: admin/html/whats-new.php:1365
2894
  msgid ""
2895
  "Now you can edit forms from your mobile devices directly. Our improved "
2896
  "responsive layouts of form builder makes it easy for you to build forms on "
2897
  "the go."
2898
  msgstr ""
2899
 
2900
+ #: admin/html/whats-new.php:1368
2901
  msgid "Added color schemes for creating attractive form layouts."
2902
  msgstr ""
2903
 
2904
+ #: admin/html/whats-new.php:1370
2905
  msgid ""
2906
  "We have added 3 new color schemes for the form layouts which you can choose "
2907
  "from each form's new display settings."
2908
  msgstr ""
2909
 
2910
+ #: admin/html/whats-new.php:1373
2911
  msgid "Restrict Free subscription pack to be enabled multiple times "
2912
  msgstr ""
2913
 
2914
+ #: admin/html/whats-new.php:1375
2915
  msgid ""
2916
  "Free subscription packs now can only be purchased once and the limit "
2917
  "applies properly"
2918
  msgstr ""
2919
 
2920
+ #: admin/html/whats-new.php:1378
2921
  msgid "Various other bug fixes and improvements were made "
2922
  msgstr ""
2923
 
2924
+ #: admin/html/whats-new.php:1380
2925
  msgid "Please see the change log to see full details."
2926
  msgstr ""
2927
 
2928
+ #: admin/html/whats-new.php:1389
2929
  msgid "Added upgrade function for default category"
2930
  msgstr ""
2931
 
2932
+ #: admin/html/whats-new.php:1391
2933
  msgid "Upgrader added to upgrade previously set default post category."
2934
  msgstr ""
2935
 
2936
+ #: admin/html/whats-new.php:1394
2937
  msgid "Subscription pack cannot be canceled"
2938
  msgstr ""
2939
 
2940
+ #: admin/html/whats-new.php:1396
2941
  msgid ""
2942
  "Fixed recurring subscription pack cannot be canceled from my account page "
2943
  "in subscription details section."
2944
  msgstr ""
2945
 
2946
+ #: admin/html/whats-new.php:1399
2947
  msgid "page installer admin notice logic issue"
2948
  msgstr ""
2949
 
2950
+ #: admin/html/whats-new.php:1401
2951
  msgid ""
2952
  "Fixed page installer admin notice logic problem due to new payment settings "
2953
  "default value not set."
2954
  msgstr ""
2955
 
2956
+ #: admin/html/whats-new.php:1411
2957
  msgid "Setup Wizard"
2958
  msgstr ""
2959
 
2960
+ #: admin/html/whats-new.php:1413
2961
  msgid "Setup Wizard added to turn off payment options and install pages."
2962
  msgstr ""
2963
 
2964
+ #: admin/html/whats-new.php:1417
2965
  msgid "Multi-select Category"
2966
  msgstr ""
2967
 
2968
+ #: admin/html/whats-new.php:1419
2969
  msgid "Add multi-select to default category in post form settings."
2970
  msgstr ""
2971
 
2972
+ #: admin/html/whats-new.php:1423
2973
  msgid "Select Text option for Taxonomy"
2974
  msgstr ""
2975
 
2976
+ #: admin/html/whats-new.php:1425
2977
  msgid ""
2978
  "Add Select Text option for taxonomy fields. Now you can add default text "
2979
  "with empty value as first option for Taxonomy dropdown."
2980
  msgstr ""
2981
 
2982
+ #: admin/html/whats-new.php:1428
2983
  msgid "Taxonomy Checkbox Inline"
2984
  msgstr ""
2985
 
2986
+ #: admin/html/whats-new.php:1430
2987
  msgid ""
2988
  "Added checkbox inline option to taxonomy checkbox. You can now display "
2989
  "Taxonomy checkbox fields inline."
2990
  msgstr ""
2991
 
2992
+ #: admin/html/whats-new.php:1440
2993
  msgid "Manage schedule for form submission"
2994
  msgstr ""
2995
 
2996
+ #: admin/html/whats-new.php:1442
2997
  msgid ""
2998
  "Do not accept form submission if the current date is not between the date "
2999
  "range of the schedule."
3000
  msgstr ""
3001
 
3002
+ #: admin/html/whats-new.php:1446
3003
  msgid "Restrict form submission based on the user roles"
3004
  msgstr ""
3005
 
3006
+ #: admin/html/whats-new.php:1448
3007
  msgid ""
3008
  "Restrict form submission based on the user roles. Now you can manage user "
3009
  "role base permission on form submission."
3010
  msgstr ""
3011
 
3012
+ #: admin/html/whats-new.php:1452
3013
  msgid "Limit how many entries a form will accept"
3014
  msgstr ""
3015
 
3016
+ #: admin/html/whats-new.php:1454
3017
  msgid ""
3018
  "Limit how many entries a form will accept and display a custom message when "
3019
  "that limit is reached."
3020
  msgstr ""
3021
 
3022
+ #: admin/html/whats-new.php:1458
3023
  msgid "Show/hide Admin Bar"
3024
  msgstr ""
3025
 
3026
+ #: admin/html/whats-new.php:1460
3027
  msgid "Control the admin bar visibility based on user roles."
3028
  msgstr ""
3029
 
3030
+ #: admin/html/whats-new.php:1464
3031
  msgid "Ajax Login widget"
3032
  msgstr ""
3033
 
3034
+ #: admin/html/whats-new.php:1466
3035
  msgid ""
3036
  "Login user is more simple now with Ajax Login Widget. The simple ajax login "
3037
  "form do not required page loading for login."
3038
  msgstr ""
3039
 
3040
+ #: admin/html/whats-new.php:1470
3041
  msgid "Form submission with Captcha field"
3042
  msgstr ""
3043
 
3044
+ #: admin/html/whats-new.php:1472
3045
  msgid "Form field validation process updated if form submits with captcha field."
3046
  msgstr ""
3047
 
3048
+ #: admin/html/whats-new.php:1486
3049
  msgid "What's New in WPUF?"
3050
  msgstr ""
3051
 
5186
  msgid "You're not allowed to edit this post."
5187
  msgstr ""
5188
 
5189
+ #: includes/class-frontend-form-post.php:293
5190
+ msgid "Post Saved"
5191
+ msgstr ""
5192
+
5193
+ #: includes/class-frontend-form-post.php:334
5194
  msgid "Minimum %d character is required for %s"
5195
  msgstr ""
5196
 
5197
+ #: includes/class-frontend-form-post.php:338
5198
  msgid "Maximum %d character is allowed for %s"
5199
  msgstr ""
5200
 
5201
+ #: includes/class-frontend-form-post.php:345
5202
  msgid "Minimum %d word is required for %s"
5203
  msgstr ""
5204
 
5205
+ #: includes/class-frontend-form-post.php:349
5206
  msgid "Maximum %d word is allowed for %s"
5207
  msgstr ""
5208
 
5209
+ #: includes/class-frontend-form-post.php:576
5210
  msgid "Something went wrong"
5211
  msgstr ""
5212
 
5213
+ #: includes/class-frontend-form-post.php:597
5214
  msgid "Invalid email address."
5215
  msgstr ""
5216
 
5217
+ #: includes/class-frontend-form-post.php:608
5218
  msgid ""
5219
  "You already have an account in our site. Please login to continue.\n"
5220
  "\n"
5223
  "Click 'Cancel' to stay at this page."
5224
  msgstr ""
5225
 
5226
+ #: includes/class-frontend-form-post.php:662
5227
  #: includes/class-frontend-render-form.php:320
5228
  msgid "You do not have sufficient permissions to access this form."
5229
  msgstr ""
5230
 
5231
+ #: includes/class-frontend-form-post.php:975
5232
  msgid "Email successfully verified. Please Login."
5233
  msgstr ""
5234
 
5235
+ #: includes/class-frontend-form-post.php:1102
5236
+ #: includes/class-frontend-form-post.php:1108
5237
  msgid ""
5238
  "Thank you for posting on our site. We have sent you an confirmation email. "
5239
  "Please check your inbox!"
5776
 
5777
  #: includes/class-user-subscription.php:351
5778
  #: templates/dashboard/subscription.php:36
5779
+ #: templates/dashboard/subscription.php:48
5780
  msgid "Unlimited"
5781
  msgstr ""
5782
 
7063
  msgid "Item Deleted successfully !"
7064
  msgstr ""
7065
 
7066
+ #: templates/dashboard/posts.php:162
7067
+ msgid "View"
7068
+ msgstr ""
7069
+
7070
  #: templates/dashboard/posts.php:181
7071
  msgid "Payment: "
7072
  msgstr ""
7453
  msgid "Jordanian dinar"
7454
  msgstr ""
7455
 
7456
+ #: wpuf-functions.php:3436
7457
  msgid "None"
7458
  msgstr ""
7459
 
readme.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: tareq1988, nizamuddinbabu, wedevs
3
  Donate link: https://tareq.co/donate/
4
  Tags: Forms, registration, profile-builder, login, membership, frontend-post
5
  Requires at least: 4.0
6
- Tested up to: 5.9.2
7
  Requires PHP: 5.6
8
- Stable tag: 3.5.27
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -262,6 +262,12 @@ This page is for the purpose of editing posts. You shouldn't access this page di
262
  First you need to go to the dashboard, then when you click "edit", you'll be
263
  redirected to the edit page with that post id. Then you'll see the edit post form.
264
 
 
 
 
 
 
 
265
  = v3.5.27 (15 Mar, 2022) =
266
 
267
  * Enhancement - Email template enhanced for after activation
@@ -292,7 +298,6 @@ redirected to the edit page with that post id. Then you'll see the edit post for
292
  * Fix - Tag search security Vulnerability handled
293
  * Fix - Multi dropdown field error handled
294
 
295
- == Changelog ==
296
  = v3.5.23 (18 Nov, 2021) =
297
 
298
  * Fix - Security Vulnerability fixed
3
  Donate link: https://tareq.co/donate/
4
  Tags: Forms, registration, profile-builder, login, membership, frontend-post
5
  Requires at least: 4.0
6
+ Tested up to: 6.0
7
  Requires PHP: 5.6
8
+ Stable tag: 3.5.28
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
262
  First you need to go to the dashboard, then when you click "edit", you'll be
263
  redirected to the edit page with that post id. Then you'll see the edit post form.
264
 
265
+ == Changelog ==
266
+ = v3.5.28 (17 Jun, 2022) =
267
+
268
+ * Tweak - Updated compatibility with the latest version of WordPress 6.0
269
+ * Tweak - Improved some backend implementations
270
+
271
  = v3.5.27 (15 Mar, 2022) =
272
 
273
  * Enhancement - Email template enhanced for after activation
298
  * Fix - Tag search security Vulnerability handled
299
  * Fix - Multi dropdown field error handled
300
 
 
301
  = v3.5.23 (18 Nov, 2021) =
302
 
303
  * Fix - Security Vulnerability fixed
templates/dashboard/posts.php CHANGED
@@ -159,14 +159,14 @@ $post_type_obj = get_post_type_object( $post_type );
159
  <?php
160
  $current_post_status = $post->post_status;
161
  if ( 'publish' === $current_post_status ) {
162
- $link_text = esc_html( 'View', 'wp-user-frontend' );
163
  $the_link = get_permalink();
164
  } else {
165
- $link_text = esc_html( 'Preview', 'wp-user-frontend' );
166
  $the_link = get_preview_post_link();
167
  }
168
  wpuf_show_post_status( $current_post_status );
169
- echo apply_filters( 'wpuf_preview_link_separator', ' | ');
170
  printf(
171
  '<a href="%s" target="_blank">%s</a>',
172
  $the_link,
159
  <?php
160
  $current_post_status = $post->post_status;
161
  if ( 'publish' === $current_post_status ) {
162
+ $link_text = esc_html__( 'View', 'wp-user-frontend' );
163
  $the_link = get_permalink();
164
  } else {
165
+ $link_text = esc_html__( 'Preview', 'wp-user-frontend' );
166
  $the_link = get_preview_post_link();
167
  }
168
  wpuf_show_post_status( $current_post_status );
169
+ echo apply_filters( 'wpuf_preview_link_separator', '&nbsp;|&nbsp;' );
170
  printf(
171
  '<a href="%s" target="_blank">%s</a>',
172
  $the_link,
templates/dashboard/subscription.php CHANGED
@@ -45,7 +45,7 @@
45
  <?php
46
  if ( $user_sub['recurring'] != 'yes' ) {
47
  if ( !empty( $user_sub['expire'] ) ) {
48
- $expiry_date = ( $user_sub['expire'] == 'unlimited' ) ? ucfirst( 'unlimited' ) : wpuf_get_date( wpuf_date2mysql( $user_sub['expire'] ) ); ?>
49
  <div class="wpuf-expire">
50
  <strong><?php echo esc_html__( 'Expire date:', 'wp-user-frontend' ); ?></strong> <?php echo esc_html( $expiry_date ); ?>
51
  </div>
45
  <?php
46
  if ( $user_sub['recurring'] != 'yes' ) {
47
  if ( !empty( $user_sub['expire'] ) ) {
48
+ $expiry_date = ( 'unlimited' === $user_sub['expire'] ) ? __( 'Unlimited', 'wp-user-frontend' ) : wpuf_get_date( wpuf_date2mysql( $user_sub['expire'] ) ); ?>
49
  <div class="wpuf-expire">
50
  <strong><?php echo esc_html__( 'Expire date:', 'wp-user-frontend' ); ?></strong> <?php echo esc_html( $expiry_date ); ?>
51
  </div>
wpuf-functions.php CHANGED
@@ -3369,11 +3369,9 @@ function get_formatted_mail_body( $message, $subject ) {
3369
 
3370
  if ( empty( $header ) ) {
3371
  ob_start();
3372
-
3373
- wpuf_load_pro_template(
3374
- 'email/header.php',
3375
- [ 'subject' => $subject ]
3376
- );
3377
 
3378
  $header = ob_get_clean();
3379
  }
@@ -3381,20 +3379,18 @@ function get_formatted_mail_body( $message, $subject ) {
3381
  if ( empty( $footer ) ) {
3382
  ob_start();
3383
 
3384
- wpuf_load_pro_template(
3385
- 'email/footer.php',
3386
- []
3387
- );
3388
 
3389
  $footer = ob_get_clean();
3390
  }
3391
 
3392
  ob_start();
3393
 
3394
- wpuf_load_pro_template(
3395
- 'email/style.php',
3396
- []
3397
- );
3398
 
3399
  $css = apply_filters( 'wpuf_email_style', ob_get_clean() );
3400
 
@@ -3851,7 +3847,7 @@ function wpuf_show_form_limit_message( $form_id ) {
3851
  $post_to_check = get_post( get_the_ID() );
3852
  $is_edit_page = false;
3853
 
3854
- if ( stripos( $post_to_check->post_content, '[wpuf_edit' ) !== false ) {
3855
  $is_edit_page = true;
3856
  }
3857
 
3369
 
3370
  if ( empty( $header ) ) {
3371
  ob_start();
3372
+ if ( function_exists( 'wpuf_load_pro_template' ) ) {
3373
+ wpuf_load_pro_template( 'email/header.php', [ 'subject' => $subject ] );
3374
+ }
 
 
3375
 
3376
  $header = ob_get_clean();
3377
  }
3379
  if ( empty( $footer ) ) {
3380
  ob_start();
3381
 
3382
+ if ( function_exists( 'wpuf_load_pro_template' ) ) {
3383
+ wpuf_load_pro_template( 'email/footer.php', [] );
3384
+ }
 
3385
 
3386
  $footer = ob_get_clean();
3387
  }
3388
 
3389
  ob_start();
3390
 
3391
+ if ( function_exists( 'wpuf_load_pro_template' ) ) {
3392
+ wpuf_load_pro_template( 'email/style.php', [] );
3393
+ }
 
3394
 
3395
  $css = apply_filters( 'wpuf_email_style', ob_get_clean() );
3396
 
3847
  $post_to_check = get_post( get_the_ID() );
3848
  $is_edit_page = false;
3849
 
3850
+ if ( $post_to_check && stripos( $post_to_check->post_content, '[wpuf_edit' ) !== false ) {
3851
  $is_edit_page = true;
3852
  }
3853
 
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.27
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.27' );
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.28
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.28' );
16
  define( 'WPUF_FILE', __FILE__ );
17
  define( 'WPUF_ROOT', __DIR__ );
18
  define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );