User registration & user profile – Profile Builder - Version 3.3.5

Version Description

  • jQuery updates regarding WordPress jQuery versions changes
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 3.3.5
Comparing to
See all releases

Code changes from version 3.3.4 to 3.3.5

admin/feedback.php CHANGED
@@ -89,7 +89,7 @@ function wppb_add_feedback_script(){
89
  if (jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').length != 0) {
90
 
91
  /* the conditional fields */
92
- jQuery("#gform_<?php echo $gf_id; ?> input[type='radio']").click(function(){
93
  jQuery("#gform_<?php echo $gf_id; ?> input[type='submit']").prop("disabled", false);
94
  jQuery( '.poll_custom_hidden_detail' ).hide();
95
  jQuery( '.poll_custom_hidden_detail', jQuery(this).parent() ).show();
@@ -99,7 +99,7 @@ function wppb_add_feedback_script(){
99
  deactivationLink = jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').attr('href');
100
 
101
  /* show the modal when you click deactivate */
102
- jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').click(function (e){
103
  e . preventDefault();
104
  e . stopPropagation();
105
  tb_show("Profile Builder Quick Feedback", "#TB_inline?width=740&height=500&inlineId=custom-feedback-modal");
@@ -107,7 +107,7 @@ function wppb_add_feedback_script(){
107
  });
108
 
109
  /* on submit */
110
- jQuery("#gform_<?php echo $gf_id; ?>").submit(function(e) {
111
  var url = "<?php echo $action_link; ?>"; // the script where you handle the form input.
112
 
113
  jQuery.ajax({
89
  if (jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').length != 0) {
90
 
91
  /* the conditional fields */
92
+ jQuery("#gform_<?php echo $gf_id; ?> input[type='radio']").on('click', function(){
93
  jQuery("#gform_<?php echo $gf_id; ?> input[type='submit']").prop("disabled", false);
94
  jQuery( '.poll_custom_hidden_detail' ).hide();
95
  jQuery( '.poll_custom_hidden_detail', jQuery(this).parent() ).show();
99
  deactivationLink = jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').attr('href');
100
 
101
  /* show the modal when you click deactivate */
102
+ jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').on('click', function (e){
103
  e . preventDefault();
104
  e . stopPropagation();
105
  tb_show("Profile Builder Quick Feedback", "#TB_inline?width=740&height=500&inlineId=custom-feedback-modal");
107
  });
108
 
109
  /* on submit */
110
+ jQuery("#gform_<?php echo $gf_id; ?>").on('submit', function(e) {
111
  var url = "<?php echo $action_link; ?>"; // the script where you handle the form input.
112
 
113
  jQuery.ajax({
assets/js/jquery-manage-fields-live-change.js CHANGED
@@ -663,11 +663,11 @@ function wppb_edit_form_properties( container_name, element_id ){
663
  field = jQuery( container_name + ' #' + element_id + ' ' + '#field' ).val();
664
 
665
  if ( ( field in fields ) ){
666
- var to_show = fields[jQuery.trim(field)]['show_rows'];
667
  for (var key in to_show)
668
  jQuery( container_name + ' #' + element_id + ' ' + to_show[key] ).show();
669
 
670
- var properties = fields[ jQuery.trim(field) ]['properties'];
671
  if( typeof properties !== 'undefined' && properties ) {
672
  for( var key in properties ) {
673
  if( typeof properties['meta_name_value'] !== 'undefined' ) {
@@ -685,12 +685,12 @@ function wppb_edit_form_properties( container_name, element_id ){
685
 
686
 
687
  function wppb_display_needed_fields( index, container_name, current_field_select ){
688
- var show_rows = fields[jQuery.trim(index)]['show_rows'];
689
  for (var key in show_rows) {
690
  jQuery( show_rows[key], jQuery( current_field_select ).parents( '.mb-list-entry-fields' ) ).show();
691
  }
692
 
693
- var properties = fields[jQuery.trim(index)]['properties'];
694
  if ( ( ( typeof properties !== 'undefined' ) && ( properties ) ) ) { //the extra (second) condition is a particular case since only the username is defined in our global array that has no meta-name
695
  for (var key in properties) {
696
  if ( ( typeof properties['meta_name_value'] !== 'undefined' ) ){
@@ -750,7 +750,7 @@ function wppb_display_needed_fields( index, container_name, current_field_select
750
  //Handle user role sorting
751
  wppb_handle_user_role_field( container_name );
752
 
753
- var set_required = fields[jQuery.trim(index)]['required'];
754
  if ( ( typeof set_required !== 'undefined' ) && ( set_required ) ){
755
  jQuery( container_name + ' ' + '#required' ).val( 'Yes' );
756
  jQuery( container_name + ' ' + '#required' ).attr( 'disabled', true );
663
  field = jQuery( container_name + ' #' + element_id + ' ' + '#field' ).val();
664
 
665
  if ( ( field in fields ) ){
666
+ var to_show = fields[ field.trim() ]['show_rows'];
667
  for (var key in to_show)
668
  jQuery( container_name + ' #' + element_id + ' ' + to_show[key] ).show();
669
 
670
+ var properties = fields[ field.trim() ]['properties'];
671
  if( typeof properties !== 'undefined' && properties ) {
672
  for( var key in properties ) {
673
  if( typeof properties['meta_name_value'] !== 'undefined' ) {
685
 
686
 
687
  function wppb_display_needed_fields( index, container_name, current_field_select ){
688
+ var show_rows = fields[index.trim()]['show_rows'];
689
  for (var key in show_rows) {
690
  jQuery( show_rows[key], jQuery( current_field_select ).parents( '.mb-list-entry-fields' ) ).show();
691
  }
692
 
693
+ var properties = fields[index.trim()]['properties'];
694
  if ( ( ( typeof properties !== 'undefined' ) && ( properties ) ) ) { //the extra (second) condition is a particular case since only the username is defined in our global array that has no meta-name
695
  for (var key in properties) {
696
  if ( ( typeof properties['meta_name_value'] !== 'undefined' ) ){
750
  //Handle user role sorting
751
  wppb_handle_user_role_field( container_name );
752
 
753
+ var set_required = fields[index.trim()]['required'];
754
  if ( ( typeof set_required !== 'undefined' ) && ( set_required ) ){
755
  jQuery( container_name + ' ' + '#required' ).val( 'Yes' );
756
  jQuery( container_name + ' ' + '#required' ).attr( 'disabled', true );
assets/js/jquery-pb-sitewide.js CHANGED
@@ -32,7 +32,7 @@ jQuery( document ).ready( function() {
32
  jQuery(this).outerHeight( jQuery(this)[0].scrollHeight + parseInt( jQuery(this).css('border-top-width') ) * 2 );
33
  });
34
 
35
- jQuery('.wppb-shortcode').click( function() {
36
  this.select();
37
  });
38
  });
@@ -45,17 +45,17 @@ jQuery( function(){
45
  if( jQuery( 'body').hasClass('post-type-wppb-rf-cpt') || jQuery( 'body').hasClass('post-type-wppb-epf-cpt') || jQuery( 'body').hasClass('post-type-wppb-ul-cpt') ){
46
 
47
  if( jQuery('#title').val() == '' ){
48
- jQuery(window).bind('beforeunload',function() {
49
  return "This page is asking you to confirm that you want to leave - data you have entered may not be saved";
50
  });
51
  }
52
 
53
  /* remove beforeunload event when entering a title or pressing the puclish button */
54
- jQuery( '#title').keypress(function() {
55
- jQuery(window).unbind('beforeunload');
56
  });
57
- jQuery( '#publish').click( function() {
58
- jQuery(window).unbind('beforeunload');
59
  });
60
  }
61
  }
@@ -127,7 +127,7 @@ jQuery( function() {
127
  minHeight: 450
128
  });
129
 
130
- jQuery('.wppb-open-modal-box').click(function (e) {
131
  e.preventDefault();
132
  jQuery('#' + jQuery(this).attr('href')).dialog('open');
133
  });
@@ -145,7 +145,7 @@ jQuery( function() {
145
 
146
  wppbDisablePrivatePageOptions(jQuery('#private-website-enable').val());
147
 
148
- jQuery('#private-website-enable').change(function () {
149
  wppbDisablePrivatePageOptions(jQuery(this).val());
150
  });
151
 
32
  jQuery(this).outerHeight( jQuery(this)[0].scrollHeight + parseInt( jQuery(this).css('border-top-width') ) * 2 );
33
  });
34
 
35
+ jQuery('.wppb-shortcode').on('click', function() {
36
  this.select();
37
  });
38
  });
45
  if( jQuery( 'body').hasClass('post-type-wppb-rf-cpt') || jQuery( 'body').hasClass('post-type-wppb-epf-cpt') || jQuery( 'body').hasClass('post-type-wppb-ul-cpt') ){
46
 
47
  if( jQuery('#title').val() == '' ){
48
+ jQuery(window).on('beforeunload',function() {
49
  return "This page is asking you to confirm that you want to leave - data you have entered may not be saved";
50
  });
51
  }
52
 
53
  /* remove beforeunload event when entering a title or pressing the puclish button */
54
+ jQuery( '#title').on( 'keypress', function() {
55
+ jQuery(window).off('beforeunload');
56
  });
57
+ jQuery( '#publish').on('click', function() {
58
+ jQuery(window).off('beforeunload');
59
  });
60
  }
61
  }
127
  minHeight: 450
128
  });
129
 
130
+ jQuery('.wppb-open-modal-box').on('click', function (e) {
131
  e.preventDefault();
132
  jQuery('#' + jQuery(this).attr('href')).dialog('open');
133
  });
145
 
146
  wppbDisablePrivatePageOptions(jQuery('#private-website-enable').val());
147
 
148
+ jQuery('#private-website-enable').on('change', function () {
149
  wppbDisablePrivatePageOptions(jQuery(this).val());
150
  });
151
 
assets/js/script-front-end.js CHANGED
@@ -1,11 +1,11 @@
1
  jQuery(document).ready(function(){
2
  if( jQuery("#wppb-register-user").length ) {
3
- jQuery('#wppb-register-user').submit(function (e) {
4
  //stop submitting the form to see the disabled button effect
5
  e.preventDefault();
6
  //disable the submit button
7
  jQuery('.form-submit #register').attr('disabled', true);
8
- this.submit();
9
  });
10
  }
11
 
1
  jQuery(document).ready(function(){
2
  if( jQuery("#wppb-register-user").length ) {
3
+ jQuery('#wppb-register-user').on('submit', function (e) {
4
  //stop submitting the form to see the disabled button effect
5
  e.preventDefault();
6
  //disable the submit button
7
  jQuery('.form-submit #register').attr('disabled', true);
8
+ this.trigger('submit');
9
  });
10
  }
11
 
assets/lib/cl-add-ons-listing/assets/js/cl-add-ons-listing.js CHANGED
@@ -1,7 +1,7 @@
1
  jQuery( function(){
2
 
3
  //disable enter on search input
4
- jQuery('#cl-add-ons-search-input').keypress(function(event) {
5
  if (event.keyCode == 13) {
6
  event.preventDefault();
7
  }
1
  jQuery( function(){
2
 
3
  //disable enter on search input
4
+ jQuery('#cl-add-ons-search-input').on('keypress', function(event) {
5
  if (event.keyCode == 13) {
6
  event.preventDefault();
7
  }
assets/lib/wck-api/fields/upload.js CHANGED
@@ -1,6 +1,6 @@
1
  jQuery(document).ready(function(){
2
 
3
- if( typeof wp != "undefined" ){
4
 
5
  // Uploading files
6
  var wp_media_post_id = wp.media.model.settings.post.id; // Store the old id
1
  jQuery(document).ready(function(){
2
 
3
+ if( typeof wp != "undefined" && typeof wp.media != "undefined" ){
4
 
5
  // Uploading files
6
  var wp_media_post_id = wp.media.model.settings.post.id; // Store the old id
assets/lib/wck-api/wordpress-creation-kit.js CHANGED
@@ -11,7 +11,7 @@ jQuery(function(){
11
  jQuery('strong, .field-label', jQuery('#'+box)).css( 'width', 'auto' );
12
  } */
13
 
14
- jQuery( '.wck-post-box .hndle' ).click( function(){
15
  jQuery('strong, .field-label', jQuery(this).parent() ).css( 'width', 'auto' );
16
  })
17
 
@@ -192,7 +192,7 @@ function mb_sortable_elements() {
192
  jQuery( "#sortable:not(select)" ).disableSelection();
193
 
194
 
195
- jQuery('.mb-table-container ul').mousedown( function(e){
196
  e.stopPropagation();
197
  });
198
  }
11
  jQuery('strong, .field-label', jQuery('#'+box)).css( 'width', 'auto' );
12
  } */
13
 
14
+ jQuery( '.wck-post-box .hndle' ).on( 'click', function(){
15
  jQuery('strong, .field-label', jQuery(this).parent() ).css( 'width', 'auto' );
16
  })
17
 
192
  jQuery( "#sortable:not(select)" ).disableSelection();
193
 
194
 
195
+ jQuery('.mb-table-container ul').on( 'mousedown', function(e){
196
  e.stopPropagation();
197
  });
198
  }
features/content-restriction/assets/js/content-restriction.js CHANGED
@@ -1,7 +1,7 @@
1
  jQuery( function(){
2
 
3
  /* Display custom redirect URL section if type of restriction is "Redirect" */
4
- jQuery( 'input[type=radio][name=wppb-content-restrict-type]' ).click( function() {
5
  if( jQuery( this ).is(':checked') && jQuery( this ).val() == 'redirect' )
6
  jQuery( '#wppb-meta-box-fields-wrapper-restriction-redirect-url' ).addClass( 'wppb-content-restriction-enabled' );
7
  else
@@ -9,7 +9,7 @@ jQuery( function(){
9
  } );
10
 
11
  /* Display custom redirect URL field */
12
- jQuery( '#wppb-content-restrict-custom-redirect-url-enabled' ).click( function() {
13
  if( jQuery( this ).is( ':checked' ) )
14
  jQuery( '.wppb-meta-box-field-wrapper-custom-redirect-url' ).addClass( 'wppb-content-restriction-enabled' );
15
  else
@@ -17,7 +17,7 @@ jQuery( function(){
17
  } );
18
 
19
  /* Display custom messages editors */
20
- jQuery( '#wppb-content-restrict-messages-enabled' ).click( function() {
21
  if( jQuery( this ).is( ':checked' ) )
22
  jQuery( '.wppb-meta-box-field-wrapper-custom-messages' ).addClass( 'wppb-content-restriction-enabled' );
23
  else
1
  jQuery( function(){
2
 
3
  /* Display custom redirect URL section if type of restriction is "Redirect" */
4
+ jQuery( 'input[type=radio][name=wppb-content-restrict-type]' ).on( "click", function() {
5
  if( jQuery( this ).is(':checked') && jQuery( this ).val() == 'redirect' )
6
  jQuery( '#wppb-meta-box-fields-wrapper-restriction-redirect-url' ).addClass( 'wppb-content-restriction-enabled' );
7
  else
9
  } );
10
 
11
  /* Display custom redirect URL field */
12
+ jQuery( '#wppb-content-restrict-custom-redirect-url-enabled' ).on( "click", function() {
13
  if( jQuery( this ).is( ':checked' ) )
14
  jQuery( '.wppb-meta-box-field-wrapper-custom-redirect-url' ).addClass( 'wppb-content-restriction-enabled' );
15
  else
17
  } );
18
 
19
  /* Display custom messages editors */
20
+ jQuery( '#wppb-content-restrict-messages-enabled' ).on( "click", function() {
21
  if( jQuery( this ).is( ':checked' ) )
22
  jQuery( '.wppb-meta-box-field-wrapper-custom-messages' ).addClass( 'wppb-content-restriction-enabled' );
23
  else
features/email-confirmation/email-confirmation.php CHANGED
@@ -61,11 +61,11 @@ function wppb_add_pending_users_header_script(){
61
 
62
  if (confirm(actionText)) {
63
  jQuery.post( ajaxurl , { action:"wppb_handle_email_confirmation_cases", URL:URL, todo:todo, user_email:user_email}, function(response) {
64
- if (jQuery.trim(response) == 'ok')
65
  window.location=URL;
66
 
67
  else
68
- alert( jQuery.trim(response) );
69
  });
70
  }
71
  }
61
 
62
  if (confirm(actionText)) {
63
  jQuery.post( ajaxurl , { action:"wppb_handle_email_confirmation_cases", URL:URL, todo:todo, user_email:user_email}, function(response) {
64
+ if (response.trim() == 'ok')
65
  window.location=URL;
66
 
67
  else
68
+ alert( response.trim() );
69
  });
70
  }
71
  }
features/functions.php CHANGED
@@ -846,8 +846,8 @@ function wppb_password_strength_check(){
846
  }
847
  jQuery( document ).ready( function() {
848
  // Binding to trigger checkPasswordStrength
849
- jQuery('#passw1').val('').keyup( check_pass_strength );
850
- jQuery('#passw2').val('').keyup( check_pass_strength );
851
  jQuery('#pass-strength-result').show();
852
  });
853
  </script>
846
  }
847
  jQuery( document ).ready( function() {
848
  // Binding to trigger checkPasswordStrength
849
+ jQuery('#passw1').val('').on( 'keyup', check_pass_strength );
850
+ jQuery('#passw2').val('').on( 'keyup', check_pass_strength );
851
  jQuery('#pass-strength-result').show();
852
  });
853
  </script>
features/roles-editor/assets/js/roles-editor.js CHANGED
@@ -6,7 +6,7 @@ var wppb_re_capabilities_to_delete = {};
6
 
7
  jQuery( document ).ready( function() {
8
  // Disable Enter key
9
- jQuery( window ).keydown( function( e ) {
10
 
11
  if( typeof e.target.id !== "undefined" && e.target.id === 'post-search-input' )
12
  return true;
@@ -31,7 +31,7 @@ jQuery( document ).ready( function() {
31
  }
32
 
33
  // Dynamically change value of the Role Slug field
34
- jQuery( '.post-type-wppb-roles-editor #titlewrap' ).find( '#title' ).change( function() {
35
  if( ! jQuery( '.post-type-wppb-roles-editor #wppb-role-slug' ).val() ) {
36
  jQuery( '.post-type-wppb-roles-editor #wppb-role-slug' ).val( jQuery( this ).val().toLowerCase() );
37
  }
@@ -109,11 +109,11 @@ jQuery( document ).ready( function() {
109
  } );
110
 
111
  // Change between select2 with all existing capabilities and input to add a new capability
112
- jQuery( '.post-type-wppb-roles-editor a.wppb-add-new-cap-link' ).click( function() {
113
  wppb_re_change_select_to_input();
114
  } );
115
 
116
- jQuery( '.post-type-wppb-roles-editor .wppb-role-editor-tab' ).click( function() {
117
  wppb_re_tabs_handler( jQuery( this ) );
118
  } );
119
 
@@ -132,7 +132,7 @@ jQuery( document ).ready( function() {
132
  window.alert( wppb_roles_editor_data.role_name_required_error_text );
133
  jQuery( '.post-type-wppb-roles-editor #major-publishing-actions .spinner' ).hide();
134
  jQuery( '.post-type-wppb-roles-editor #major-publishing-actions' ).find( ':button, :submit, a.submitdelete, #post-preview' ).removeClass( 'disabled' );
135
- jQuery( '.post-type-wppb-roles-editor #title' ).focus();
136
 
137
  wppb_re_form_submit();
138
 
@@ -144,7 +144,7 @@ jQuery( document ).ready( function() {
144
  } );
145
 
146
  function wppb_re_form_submit() {
147
- jQuery( '.post-type-wppb-roles-editor #publishing-action #publish' ).unbind( 'click' ).one( 'click', function( e ) {
148
  e.preventDefault();
149
  jQuery( this ).addClass( 'disabled' );
150
  jQuery( this ).siblings( '.spinner' ).addClass( 'is-active' );
6
 
7
  jQuery( document ).ready( function() {
8
  // Disable Enter key
9
+ jQuery( window ).on( 'keydown', function( e ) {
10
 
11
  if( typeof e.target.id !== "undefined" && e.target.id === 'post-search-input' )
12
  return true;
31
  }
32
 
33
  // Dynamically change value of the Role Slug field
34
+ jQuery( '.post-type-wppb-roles-editor #titlewrap' ).find( '#title' ).on('change', function() {
35
  if( ! jQuery( '.post-type-wppb-roles-editor #wppb-role-slug' ).val() ) {
36
  jQuery( '.post-type-wppb-roles-editor #wppb-role-slug' ).val( jQuery( this ).val().toLowerCase() );
37
  }
109
  } );
110
 
111
  // Change between select2 with all existing capabilities and input to add a new capability
112
+ jQuery( '.post-type-wppb-roles-editor a.wppb-add-new-cap-link' ).on( 'click', function() {
113
  wppb_re_change_select_to_input();
114
  } );
115
 
116
+ jQuery( '.post-type-wppb-roles-editor .wppb-role-editor-tab' ).on( 'click', function() {
117
  wppb_re_tabs_handler( jQuery( this ) );
118
  } );
119
 
132
  window.alert( wppb_roles_editor_data.role_name_required_error_text );
133
  jQuery( '.post-type-wppb-roles-editor #major-publishing-actions .spinner' ).hide();
134
  jQuery( '.post-type-wppb-roles-editor #major-publishing-actions' ).find( ':button, :submit, a.submitdelete, #post-preview' ).removeClass( 'disabled' );
135
+ jQuery( '.post-type-wppb-roles-editor #title' ).trigger( 'focus' );
136
 
137
  wppb_re_form_submit();
138
 
144
  } );
145
 
146
  function wppb_re_form_submit() {
147
+ jQuery( '.post-type-wppb-roles-editor #publishing-action #publish' ).off( 'click' ).one( 'click', function( e ) {
148
  e.preventDefault();
149
  jQuery( this ).addClass( 'disabled' );
150
  jQuery( this ).siblings( '.spinner' ).addClass( 'is-active' );
front-end/class-formbuilder.php CHANGED
@@ -721,7 +721,7 @@ class Profile_Builder_Form_Creator{
721
  if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
722
  return this;
723
  }
724
- }).change(function () {
725
  window.location.href = jQuery(this).val();
726
  });
727
  jQuery(function(){
721
  if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
722
  return this;
723
  }
724
+ }).on("change", function () {
725
  window.location.href = jQuery(this).val();
726
  });
727
  jQuery(function(){
front-end/default-fields/blog-details/blog-details.php CHANGED
@@ -36,7 +36,7 @@ function wppb_blog_details_handler( $output, $form_location, $field, $user_id, $
36
  jQuery(document).ready(function(){
37
 
38
  wppb_toggle_required_attrbute_for_blog_details();
39
- jQuery("#wppb_create_new_site_checkbox").click(function(){
40
 
41
  wppb_toggle_required_attrbute_for_blog_details();
42
  jQuery(".wppb-blog-details-fields").toggle();
36
  jQuery(document).ready(function(){
37
 
38
  wppb_toggle_required_attrbute_for_blog_details();
39
+ jQuery("#wppb_create_new_site_checkbox").on("click",function(){
40
 
41
  wppb_toggle_required_attrbute_for_blog_details();
42
  jQuery(".wppb-blog-details-fields").toggle();
front-end/default-fields/recaptcha/recaptcha.php CHANGED
@@ -159,7 +159,7 @@ function wppb_recaptcha_script_footer(){
159
 
160
  if( submitForm ){
161
  var form = elem.closest("form");
162
- form.submit();
163
  } else {
164
  jQuery(document).trigger( "wppb_invisible_recaptcha_success" )
165
 
@@ -170,8 +170,8 @@ function wppb_recaptcha_script_footer(){
170
  /* make sure if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
171
  jQuery(document).ready(function(){
172
  if( window.wppbRecaptchaInitError === true ){
173
- jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).click(function(e){
174
- jQuery(this).closest("form").submit();
175
  });
176
  }
177
  });
159
 
160
  if( submitForm ){
161
  var form = elem.closest("form");
162
+ form.trigger("submit");
163
  } else {
164
  jQuery(document).trigger( "wppb_invisible_recaptcha_success" )
165
 
170
  /* make sure if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
171
  jQuery(document).ready(function(){
172
  if( window.wppbRecaptchaInitError === true ){
173
+ jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).on("click", function(e){
174
+ jQuery(this).closest("form").trigger("submit");
175
  });
176
  }
177
  });
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 3.3.4
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -65,7 +65,7 @@ function wppb_free_plugin_init() {
65
  *
66
  *
67
  */
68
- define('PROFILE_BUILDER_VERSION', '3.3.4' );
69
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
70
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
71
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 3.3.5
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
65
  *
66
  *
67
  */
68
+ define('PROFILE_BUILDER_VERSION', '3.3.5' );
69
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
70
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
71
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.6.0
7
- Stable tag: 3.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -167,6 +167,9 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
167
  12. Role Editor
168
 
169
  == Changelog ==
 
 
 
170
  = 3.3.4 =
171
  * Refactored add-on page to unify add-ons and modules, also did some refactoring of folders
172
  * Integrated Customization Toolbox addon as Advanced Settings in main plugin
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.6.0
7
+ Stable tag: 3.3.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
167
  12. Role Editor
168
 
169
  == Changelog ==
170
+ = 3.3.5 =
171
+ * jQuery updates regarding WordPress jQuery versions changes
172
+
173
  = 3.3.4 =
174
  * Refactored add-on page to unify add-ons and modules, also did some refactoring of folders
175
  * Integrated Customization Toolbox addon as Advanced Settings in main plugin
translation/profile-builder.catalog.php CHANGED
@@ -1350,13 +1350,13 @@
1350
  <?php __("More Info Url", "profile-builder"); ?>
1351
  <?php __("Avatar or Gravatar", "profile-builder"); ?>
1352
  <?php __("User Nicename", "profile-builder"); ?>
1353
- <?php __("Sort Tags", "profile-builder"); ?>
1354
- <?php __("Extra Functions", "profile-builder"); ?>
1355
  <?php __("Pagination", "profile-builder"); ?>
1356
  <?php __("Search all Fields", "profile-builder"); ?>
1357
  <?php __("Faceted Menus", "profile-builder"); ?>
1358
  <?php __("User Count", "profile-builder"); ?>
1359
  <?php __("Map of listed users", "profile-builder"); ?>
 
 
1360
  <?php __("Go Back Link", "profile-builder"); ?>
1361
  <?php __("All-userlisting Template", "profile-builder"); ?>
1362
  <?php __("Single-userlisting Template", "profile-builder"); ?>
1350
  <?php __("More Info Url", "profile-builder"); ?>
1351
  <?php __("Avatar or Gravatar", "profile-builder"); ?>
1352
  <?php __("User Nicename", "profile-builder"); ?>
 
 
1353
  <?php __("Pagination", "profile-builder"); ?>
1354
  <?php __("Search all Fields", "profile-builder"); ?>
1355
  <?php __("Faceted Menus", "profile-builder"); ?>
1356
  <?php __("User Count", "profile-builder"); ?>
1357
  <?php __("Map of listed users", "profile-builder"); ?>
1358
+ <?php __("Sort Tags", "profile-builder"); ?>
1359
+ <?php __("Extra Functions", "profile-builder"); ?>
1360
  <?php __("Go Back Link", "profile-builder"); ?>
1361
  <?php __("All-userlisting Template", "profile-builder"); ?>
1362
  <?php __("Single-userlisting Template", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -681,7 +681,7 @@ msgstr ""
681
  msgid "Display Social Connect buttons:"
682
  msgstr ""
683
 
684
- #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2420, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:134, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
685
  msgid "Yes"
686
  msgstr ""
687
 
@@ -1501,7 +1501,7 @@ msgstr ""
1501
  msgid "Show"
1502
  msgstr ""
1503
 
1504
- #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1680
1505
  msgid "Hide"
1506
  msgstr ""
1507
 
@@ -2017,11 +2017,11 @@ msgstr ""
2017
  msgid "Username and Email"
2018
  msgstr ""
2019
 
2020
- #: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:409, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:312, add-ons/user-listing/userlisting.php:807, add-ons/user-listing/userlisting.php:2374, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2021
  msgid "Username"
2022
  msgstr ""
2023
 
2024
- #: admin/general-settings.php:297, front-end/login.php:406, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:813, add-ons/user-listing/userlisting.php:2375, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2025
  msgid "Email"
2026
  msgstr ""
2027
 
@@ -2541,7 +2541,7 @@ msgstr ""
2541
  msgid "Usernames cannot be changed."
2542
  msgstr ""
2543
 
2544
- #: admin/manage-fields.php:333, add-ons/user-listing/userlisting.php:846, add-ons/user-listing/userlisting.php:2382
2545
  msgid "Nickname"
2546
  msgstr ""
2547
 
@@ -2553,7 +2553,7 @@ msgstr ""
2553
  msgid "E-mail"
2554
  msgstr ""
2555
 
2556
- #: admin/manage-fields.php:337, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:2376
2557
  msgid "Website"
2558
  msgstr ""
2559
 
@@ -2569,7 +2569,7 @@ msgstr ""
2569
  msgid "Jabber / Google Talk"
2570
  msgstr ""
2571
 
2572
- #: admin/manage-fields.php:347, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:831, add-ons/user-listing/userlisting.php:2377
2573
  msgid "Biographical Info"
2574
  msgstr ""
2575
 
@@ -4581,7 +4581,7 @@ msgstr ""
4581
  msgid "Something went wrong. Please try again!"
4582
  msgstr ""
4583
 
4584
- #: front-end/login.php:318, front-end/login.php:339, front-end/recover.php:18, front-end/recover.php:312, front-end/extra-fields/extra-fields.php:95
4585
  msgid "ERROR"
4586
  msgstr ""
4587
 
@@ -5026,7 +5026,7 @@ msgstr ""
5026
  msgid "Available Tags"
5027
  msgstr ""
5028
 
5029
- #: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:213
5030
  msgid "User Fields Tags"
5031
  msgstr ""
5032
 
@@ -5295,27 +5295,27 @@ msgstr ""
5295
  msgid "No Edit-profile Forms found in trash"
5296
  msgstr ""
5297
 
5298
- #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2270
5299
  msgid "Shortcode"
5300
  msgstr ""
5301
 
5302
- #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2291
5303
  msgid "(no title)"
5304
  msgstr ""
5305
 
5306
- #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2313
5307
  msgid "Use this shortcode on the page you want the form to be displayed:"
5308
  msgstr ""
5309
 
5310
- #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2317
5311
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5312
  msgstr ""
5313
 
5314
- #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2311
5315
  msgid "The shortcode will be available after you publish this form."
5316
  msgstr ""
5317
 
5318
- #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2350
5319
  msgid "Form Shortcode"
5320
  msgstr ""
5321
 
@@ -5479,7 +5479,7 @@ msgstr ""
5479
  msgid "Display name as"
5480
  msgstr ""
5481
 
5482
- #: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:314, add-ons/user-listing/userlisting.php:849, add-ons/user-listing/userlisting.php:2384, features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256
5483
  msgid "Role"
5484
  msgstr ""
5485
 
@@ -5487,11 +5487,11 @@ msgstr ""
5487
  msgid "Role Slug"
5488
  msgstr ""
5489
 
5490
- #: add-ons/user-listing/userlisting.php:162, add-ons/user-listing/userlisting.php:2378
5491
  msgid "Registration Date"
5492
  msgstr ""
5493
 
5494
- #: add-ons/user-listing/userlisting.php:163, add-ons/user-listing/userlisting.php:2383
5495
  msgid "Number of Posts"
5496
  msgstr ""
5497
 
@@ -5511,351 +5511,351 @@ msgstr ""
5511
  msgid "User Nicename"
5512
  msgstr ""
5513
 
5514
- #: add-ons/user-listing/userlisting.php:219
5515
- msgid "Sort Tags"
5516
- msgstr ""
5517
-
5518
- #: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:262
5519
- msgid "Extra Functions"
5520
- msgstr ""
5521
-
5522
- #: add-ons/user-listing/userlisting.php:226
5523
  msgid "Pagination"
5524
  msgstr ""
5525
 
5526
- #: add-ons/user-listing/userlisting.php:227
5527
  msgid "Search all Fields"
5528
  msgstr ""
5529
 
5530
- #: add-ons/user-listing/userlisting.php:228, add-ons/user-listing/userlisting.php:2462
5531
  msgid "Faceted Menus"
5532
  msgstr ""
5533
 
5534
- #: add-ons/user-listing/userlisting.php:229
5535
  msgid "User Count"
5536
  msgstr ""
5537
 
5538
- #: add-ons/user-listing/userlisting.php:236
5539
  msgid "Map of listed users"
5540
  msgstr ""
5541
 
5542
- #: add-ons/user-listing/userlisting.php:264
 
 
 
 
 
 
 
 
5543
  msgid "Go Back Link"
5544
  msgstr ""
5545
 
5546
- #: add-ons/user-listing/userlisting.php:282
5547
  msgid "All-userlisting Template"
5548
  msgstr ""
5549
 
5550
- #: add-ons/user-listing/userlisting.php:285
5551
  msgid "Single-userlisting Template"
5552
  msgstr ""
5553
 
5554
- #: add-ons/user-listing/userlisting.php:311
5555
  msgid "Avatar"
5556
  msgstr ""
5557
 
5558
- #: add-ons/user-listing/userlisting.php:313, add-ons/user-listing/userlisting.php:819, add-ons/user-listing/userlisting.php:2379, features/admin-approval/class-admin-approval.php:167
5559
  msgid "Firstname"
5560
  msgstr ""
5561
 
5562
- #: add-ons/user-listing/userlisting.php:315, add-ons/user-listing/userlisting.php:834
5563
  msgid "Posts"
5564
  msgstr ""
5565
 
5566
- #: add-ons/user-listing/userlisting.php:316, add-ons/user-listing/userlisting.php:816
5567
  msgid "Sign-up Date"
5568
  msgstr ""
5569
 
5570
- #: add-ons/user-listing/userlisting.php:317
5571
  msgid "More"
5572
  msgstr ""
5573
 
5574
- #: add-ons/user-listing/userlisting.php:411
5575
  msgid "You do not have permission to view this user list."
5576
  msgstr ""
5577
 
5578
- #: add-ons/user-listing/userlisting.php:424
5579
  msgid "You do not have the required user role to view this user list."
5580
  msgstr ""
5581
 
5582
- #: add-ons/user-listing/userlisting.php:448
5583
  msgid "User not found"
5584
  msgstr ""
5585
 
5586
- #: add-ons/user-listing/userlisting.php:843, add-ons/user-listing/userlisting.php:2390
5587
  msgid "Jabber"
5588
  msgstr ""
5589
 
5590
- #: add-ons/user-listing/userlisting.php:840, add-ons/user-listing/userlisting.php:2389
5591
  msgid "Yim"
5592
  msgstr ""
5593
 
5594
- #: add-ons/user-listing/userlisting.php:837, add-ons/user-listing/userlisting.php:2388
5595
  msgid "Aim"
5596
  msgstr ""
5597
 
5598
- #: add-ons/user-listing/userlisting.php:825, add-ons/user-listing/userlisting.php:2381
5599
  msgid "Display Name"
5600
  msgstr ""
5601
 
5602
- #: add-ons/user-listing/userlisting.php:822, add-ons/user-listing/userlisting.php:2380, features/admin-approval/class-admin-approval.php:168
5603
  msgid "Lastname"
5604
  msgstr ""
5605
 
5606
- #: add-ons/user-listing/userlisting.php:810
5607
  msgid "First/Lastname"
5608
  msgstr ""
5609
 
5610
- #: add-ons/user-listing/userlisting.php:1130, add-ons/user-listing/userlisting.php:1611, add-ons/user-listing/userlisting.php:2097, add-ons/user-listing/userlisting.php:2582
5611
  msgid "Search Users by All Fields"
5612
  msgstr ""
5613
 
5614
- #: add-ons/user-listing/userlisting.php:1407
5615
  msgid "Click here to see more information about this user."
5616
  msgstr ""
5617
 
5618
- #: add-ons/user-listing/userlisting.php:1404
5619
  msgid "Click here to see more information about this user"
5620
  msgstr ""
5621
 
5622
- #: add-ons/user-listing/userlisting.php:1404, add-ons/user-listing/userlisting.php:1404
5623
  msgid "More..."
5624
  msgstr ""
5625
 
5626
- #: add-ons/user-listing/userlisting.php:1434
5627
  msgid "View Map"
5628
  msgstr ""
5629
 
5630
- #: add-ons/user-listing/userlisting.php:1568, add-ons/user-listing/userlisting.php:1565
5631
  msgid "Click here to go back"
5632
  msgstr ""
5633
 
5634
- #: add-ons/user-listing/userlisting.php:1565, add-ons/user-listing/userlisting.php:1565
5635
  msgid "Back"
5636
  msgstr ""
5637
 
5638
- #: add-ons/user-listing/userlisting.php:1630
5639
  msgid "You don't have any pagination settings on this userlisting!"
5640
  msgstr ""
5641
 
5642
- #: add-ons/user-listing/userlisting.php:1598
5643
  msgid "&laquo;&laquo; First"
5644
  msgstr ""
5645
 
5646
- #: add-ons/user-listing/userlisting.php:1599
5647
  msgid "&laquo; Prev"
5648
  msgstr ""
5649
 
5650
- #: add-ons/user-listing/userlisting.php:1600
5651
  msgid "Next &raquo; "
5652
  msgstr ""
5653
 
5654
- #: add-ons/user-listing/userlisting.php:1601
5655
  msgid "Last &raquo;&raquo;"
5656
  msgstr ""
5657
 
5658
- #: add-ons/user-listing/userlisting.php:1679
5659
  msgid "Show All"
5660
  msgstr ""
5661
 
5662
- #: add-ons/user-listing/userlisting.php:1755
5663
  msgid "Choose..."
5664
  msgstr ""
5665
 
5666
- #: add-ons/user-listing/userlisting.php:1844
5667
  msgid "No options available"
5668
  msgstr ""
5669
 
5670
- #: add-ons/user-listing/userlisting.php:1999
5671
  msgid "Remove All Filters"
5672
  msgstr ""
5673
 
5674
- #: add-ons/user-listing/userlisting.php:2114
5675
  msgid "Search"
5676
  msgstr ""
5677
 
5678
- #: add-ons/user-listing/userlisting.php:2115
5679
  msgid "Clear Results"
5680
  msgstr ""
5681
 
5682
- #: add-ons/user-listing/userlisting.php:2320, add-ons/user-listing/userlisting.php:2324
5683
  msgid "Extra shortcode parameters"
5684
  msgstr ""
5685
 
5686
- #: add-ons/user-listing/userlisting.php:2322
5687
  msgid "View all extra shortcode parameters"
5688
  msgstr ""
5689
 
5690
- #: add-ons/user-listing/userlisting.php:2327
5691
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5692
  msgstr ""
5693
 
5694
- #: add-ons/user-listing/userlisting.php:2328
5695
  msgid "Example:"
5696
  msgstr ""
5697
 
5698
- #: add-ons/user-listing/userlisting.php:2330
5699
  msgid "Remember though, that the field-value combination must exist in the database."
5700
  msgstr ""
5701
 
5702
- #: add-ons/user-listing/userlisting.php:2336
5703
  msgid "displays only the users that you specified the user_id for"
5704
  msgstr ""
5705
 
5706
- #: add-ons/user-listing/userlisting.php:2342
5707
  msgid "displays all users except the ones you specified the user_id for"
5708
  msgstr ""
5709
 
5710
- #: add-ons/user-listing/userlisting.php:2405
5711
  msgid "Random (very slow on large databases > 10K user)"
5712
  msgstr ""
5713
 
5714
- #: add-ons/user-listing/userlisting.php:2408
5715
  msgid "Ascending"
5716
  msgstr ""
5717
 
5718
- #: add-ons/user-listing/userlisting.php:2409
5719
  msgid "Descending"
5720
  msgstr ""
5721
 
5722
- #: add-ons/user-listing/userlisting.php:2414
5723
  msgid "Roles to Display"
5724
  msgstr ""
5725
 
5726
- #: add-ons/user-listing/userlisting.php:2414
5727
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5728
  msgstr ""
5729
 
5730
- #: add-ons/user-listing/userlisting.php:2415
5731
  msgid "Number of Users/Page"
5732
  msgstr ""
5733
 
5734
- #: add-ons/user-listing/userlisting.php:2415
5735
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5736
  msgstr ""
5737
 
5738
- #: add-ons/user-listing/userlisting.php:2416
5739
  msgid "Default Sorting Criteria"
5740
  msgstr ""
5741
 
5742
- #: add-ons/user-listing/userlisting.php:2416
5743
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5744
  msgstr ""
5745
 
5746
- #: add-ons/user-listing/userlisting.php:2417
5747
  msgid "Default Sorting Order"
5748
  msgstr ""
5749
 
5750
- #: add-ons/user-listing/userlisting.php:2417
5751
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5752
  msgstr ""
5753
 
5754
- #: add-ons/user-listing/userlisting.php:2418
5755
  msgid "Avatar Size (All-userlisting)"
5756
  msgstr ""
5757
 
5758
- #: add-ons/user-listing/userlisting.php:2418
5759
  msgid "Set the avatar size on the all-userlisting only"
5760
  msgstr ""
5761
 
5762
- #: add-ons/user-listing/userlisting.php:2419
5763
  msgid "Avatar Size (Single-userlisting)"
5764
  msgstr ""
5765
 
5766
- #: add-ons/user-listing/userlisting.php:2419
5767
  msgid "Set the avatar size on the single-userlisting only"
5768
  msgstr ""
5769
 
5770
- #: add-ons/user-listing/userlisting.php:2420
5771
  msgid "Visible only to logged in users?"
5772
  msgstr ""
5773
 
5774
- #: add-ons/user-listing/userlisting.php:2420
5775
  msgid "The userlisting will only be visible only to the logged in users"
5776
  msgstr ""
5777
 
5778
- #: add-ons/user-listing/userlisting.php:2421
5779
  msgid "Visible to following Roles"
5780
  msgstr ""
5781
 
5782
- #: add-ons/user-listing/userlisting.php:2421
5783
  msgid "The userlisting will only be visible to the following roles"
5784
  msgstr ""
5785
 
5786
- #: add-ons/user-listing/userlisting.php:2427
5787
  msgid "Userlisting Settings"
5788
  msgstr ""
5789
 
5790
- #: add-ons/user-listing/userlisting.php:2452
5791
  msgid "Label"
5792
  msgstr ""
5793
 
5794
- #: add-ons/user-listing/userlisting.php:2452
5795
  msgid "Choose the facet name that appears on the frontend"
5796
  msgstr ""
5797
 
5798
- #: add-ons/user-listing/userlisting.php:2453
5799
  msgid "Facet Type"
5800
  msgstr ""
5801
 
5802
- #: add-ons/user-listing/userlisting.php:2453
5803
  msgid "Choose the facet menu type"
5804
  msgstr ""
5805
 
5806
- #: add-ons/user-listing/userlisting.php:2454
5807
  msgid "Facet Meta"
5808
  msgstr ""
5809
 
5810
- #: add-ons/user-listing/userlisting.php:2454
5811
  msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
5812
  msgstr ""
5813
 
5814
- #: add-ons/user-listing/userlisting.php:2455
5815
  msgid "Behaviour"
5816
  msgstr ""
5817
 
5818
- #: add-ons/user-listing/userlisting.php:2455
5819
  msgid "Narrow the results"
5820
  msgstr ""
5821
 
5822
- #: add-ons/user-listing/userlisting.php:2455
5823
  msgid "Expand the results"
5824
  msgstr ""
5825
 
5826
- #: add-ons/user-listing/userlisting.php:2455
5827
  msgid "Choose how multiple selections affect the results"
5828
  msgstr ""
5829
 
5830
- #: add-ons/user-listing/userlisting.php:2456
5831
  msgid "Visible choices"
5832
  msgstr ""
5833
 
5834
- #: add-ons/user-listing/userlisting.php:2456
5835
  msgid "Show a toggle link after this many choices. Leave blank for all"
5836
  msgstr ""
5837
 
5838
- #: add-ons/user-listing/userlisting.php:2481
5839
  msgid "Search Fields"
5840
  msgstr ""
5841
 
5842
- #: add-ons/user-listing/userlisting.php:2481
5843
  msgid "Choose the fields in which the Search Field will look in"
5844
  msgstr ""
5845
 
5846
- #: add-ons/user-listing/userlisting.php:2486
5847
  msgid "Search Settings"
5848
  msgstr ""
5849
 
5850
- #: add-ons/user-listing/userlisting.php:2558
5851
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
5852
  msgstr ""
5853
 
5854
- #: add-ons/user-listing/userlisting.php:2558
5855
  msgid "You can find it in the Profile Builder menu."
5856
  msgstr ""
5857
 
5858
- #: add-ons/user-listing/userlisting.php:2721
5859
  msgid "No results found!"
5860
  msgstr ""
5861
 
681
  msgid "Display Social Connect buttons:"
682
  msgstr ""
683
 
684
+ #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2436, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:134, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
685
  msgid "Yes"
686
  msgstr ""
687
 
1501
  msgid "Show"
1502
  msgstr ""
1503
 
1504
+ #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1696
1505
  msgid "Hide"
1506
  msgstr ""
1507
 
2017
  msgid "Username and Email"
2018
  msgstr ""
2019
 
2020
+ #: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:409, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:328, add-ons/user-listing/userlisting.php:823, add-ons/user-listing/userlisting.php:2390, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2021
  msgid "Username"
2022
  msgstr ""
2023
 
2024
+ #: admin/general-settings.php:297, front-end/login.php:406, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:829, add-ons/user-listing/userlisting.php:2391, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2025
  msgid "Email"
2026
  msgstr ""
2027
 
2541
  msgid "Usernames cannot be changed."
2542
  msgstr ""
2543
 
2544
+ #: admin/manage-fields.php:333, add-ons/user-listing/userlisting.php:862, add-ons/user-listing/userlisting.php:2398
2545
  msgid "Nickname"
2546
  msgstr ""
2547
 
2553
  msgid "E-mail"
2554
  msgstr ""
2555
 
2556
+ #: admin/manage-fields.php:337, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:844, add-ons/user-listing/userlisting.php:2392
2557
  msgid "Website"
2558
  msgstr ""
2559
 
2569
  msgid "Jabber / Google Talk"
2570
  msgstr ""
2571
 
2572
+ #: admin/manage-fields.php:347, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:847, add-ons/user-listing/userlisting.php:2393
2573
  msgid "Biographical Info"
2574
  msgstr ""
2575
 
4581
  msgid "Something went wrong. Please try again!"
4582
  msgstr ""
4583
 
4584
+ #: front-end/login.php:318, front-end/login.php:339, front-end/recover.php:18, front-end/recover.php:312, front-end/extra-fields/extra-fields.php:93
4585
  msgid "ERROR"
4586
  msgstr ""
4587
 
5026
  msgid "Available Tags"
5027
  msgstr ""
5028
 
5029
+ #: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:244
5030
  msgid "User Fields Tags"
5031
  msgstr ""
5032
 
5295
  msgid "No Edit-profile Forms found in trash"
5296
  msgstr ""
5297
 
5298
+ #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2286
5299
  msgid "Shortcode"
5300
  msgstr ""
5301
 
5302
+ #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2307
5303
  msgid "(no title)"
5304
  msgstr ""
5305
 
5306
+ #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2329
5307
  msgid "Use this shortcode on the page you want the form to be displayed:"
5308
  msgstr ""
5309
 
5310
+ #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2333
5311
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5312
  msgstr ""
5313
 
5314
+ #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2327
5315
  msgid "The shortcode will be available after you publish this form."
5316
  msgstr ""
5317
 
5318
+ #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2366
5319
  msgid "Form Shortcode"
5320
  msgstr ""
5321
 
5479
  msgid "Display name as"
5480
  msgstr ""
5481
 
5482
+ #: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:330, add-ons/user-listing/userlisting.php:865, add-ons/user-listing/userlisting.php:2400, features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256
5483
  msgid "Role"
5484
  msgstr ""
5485
 
5487
  msgid "Role Slug"
5488
  msgstr ""
5489
 
5490
+ #: add-ons/user-listing/userlisting.php:162, add-ons/user-listing/userlisting.php:2394
5491
  msgid "Registration Date"
5492
  msgstr ""
5493
 
5494
+ #: add-ons/user-listing/userlisting.php:163, add-ons/user-listing/userlisting.php:2399
5495
  msgid "Number of Posts"
5496
  msgstr ""
5497
 
5511
  msgid "User Nicename"
5512
  msgstr ""
5513
 
5514
+ #: add-ons/user-listing/userlisting.php:213
 
 
 
 
 
 
 
 
5515
  msgid "Pagination"
5516
  msgstr ""
5517
 
5518
+ #: add-ons/user-listing/userlisting.php:214
5519
  msgid "Search all Fields"
5520
  msgstr ""
5521
 
5522
+ #: add-ons/user-listing/userlisting.php:215, add-ons/user-listing/userlisting.php:2478
5523
  msgid "Faceted Menus"
5524
  msgstr ""
5525
 
5526
+ #: add-ons/user-listing/userlisting.php:216
5527
  msgid "User Count"
5528
  msgstr ""
5529
 
5530
+ #: add-ons/user-listing/userlisting.php:223
5531
  msgid "Map of listed users"
5532
  msgstr ""
5533
 
5534
+ #: add-ons/user-listing/userlisting.php:250
5535
+ msgid "Sort Tags"
5536
+ msgstr ""
5537
+
5538
+ #: add-ons/user-listing/userlisting.php:254, add-ons/user-listing/userlisting.php:278
5539
+ msgid "Extra Functions"
5540
+ msgstr ""
5541
+
5542
+ #: add-ons/user-listing/userlisting.php:280
5543
  msgid "Go Back Link"
5544
  msgstr ""
5545
 
5546
+ #: add-ons/user-listing/userlisting.php:298
5547
  msgid "All-userlisting Template"
5548
  msgstr ""
5549
 
5550
+ #: add-ons/user-listing/userlisting.php:301
5551
  msgid "Single-userlisting Template"
5552
  msgstr ""
5553
 
5554
+ #: add-ons/user-listing/userlisting.php:327
5555
  msgid "Avatar"
5556
  msgstr ""
5557
 
5558
+ #: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:835, add-ons/user-listing/userlisting.php:2395, features/admin-approval/class-admin-approval.php:167
5559
  msgid "Firstname"
5560
  msgstr ""
5561
 
5562
+ #: add-ons/user-listing/userlisting.php:331, add-ons/user-listing/userlisting.php:850
5563
  msgid "Posts"
5564
  msgstr ""
5565
 
5566
+ #: add-ons/user-listing/userlisting.php:332, add-ons/user-listing/userlisting.php:832
5567
  msgid "Sign-up Date"
5568
  msgstr ""
5569
 
5570
+ #: add-ons/user-listing/userlisting.php:333
5571
  msgid "More"
5572
  msgstr ""
5573
 
5574
+ #: add-ons/user-listing/userlisting.php:427
5575
  msgid "You do not have permission to view this user list."
5576
  msgstr ""
5577
 
5578
+ #: add-ons/user-listing/userlisting.php:440
5579
  msgid "You do not have the required user role to view this user list."
5580
  msgstr ""
5581
 
5582
+ #: add-ons/user-listing/userlisting.php:464
5583
  msgid "User not found"
5584
  msgstr ""
5585
 
5586
+ #: add-ons/user-listing/userlisting.php:859, add-ons/user-listing/userlisting.php:2406
5587
  msgid "Jabber"
5588
  msgstr ""
5589
 
5590
+ #: add-ons/user-listing/userlisting.php:856, add-ons/user-listing/userlisting.php:2405
5591
  msgid "Yim"
5592
  msgstr ""
5593
 
5594
+ #: add-ons/user-listing/userlisting.php:853, add-ons/user-listing/userlisting.php:2404
5595
  msgid "Aim"
5596
  msgstr ""
5597
 
5598
+ #: add-ons/user-listing/userlisting.php:841, add-ons/user-listing/userlisting.php:2397
5599
  msgid "Display Name"
5600
  msgstr ""
5601
 
5602
+ #: add-ons/user-listing/userlisting.php:838, add-ons/user-listing/userlisting.php:2396, features/admin-approval/class-admin-approval.php:168
5603
  msgid "Lastname"
5604
  msgstr ""
5605
 
5606
+ #: add-ons/user-listing/userlisting.php:826
5607
  msgid "First/Lastname"
5608
  msgstr ""
5609
 
5610
+ #: add-ons/user-listing/userlisting.php:1146, add-ons/user-listing/userlisting.php:1627, add-ons/user-listing/userlisting.php:2113, add-ons/user-listing/userlisting.php:2598
5611
  msgid "Search Users by All Fields"
5612
  msgstr ""
5613
 
5614
+ #: add-ons/user-listing/userlisting.php:1423
5615
  msgid "Click here to see more information about this user."
5616
  msgstr ""
5617
 
5618
+ #: add-ons/user-listing/userlisting.php:1420
5619
  msgid "Click here to see more information about this user"
5620
  msgstr ""
5621
 
5622
+ #: add-ons/user-listing/userlisting.php:1420, add-ons/user-listing/userlisting.php:1420
5623
  msgid "More..."
5624
  msgstr ""
5625
 
5626
+ #: add-ons/user-listing/userlisting.php:1450
5627
  msgid "View Map"
5628
  msgstr ""
5629
 
5630
+ #: add-ons/user-listing/userlisting.php:1584, add-ons/user-listing/userlisting.php:1581
5631
  msgid "Click here to go back"
5632
  msgstr ""
5633
 
5634
+ #: add-ons/user-listing/userlisting.php:1581, add-ons/user-listing/userlisting.php:1581
5635
  msgid "Back"
5636
  msgstr ""
5637
 
5638
+ #: add-ons/user-listing/userlisting.php:1646
5639
  msgid "You don't have any pagination settings on this userlisting!"
5640
  msgstr ""
5641
 
5642
+ #: add-ons/user-listing/userlisting.php:1614
5643
  msgid "&laquo;&laquo; First"
5644
  msgstr ""
5645
 
5646
+ #: add-ons/user-listing/userlisting.php:1615
5647
  msgid "&laquo; Prev"
5648
  msgstr ""
5649
 
5650
+ #: add-ons/user-listing/userlisting.php:1616
5651
  msgid "Next &raquo; "
5652
  msgstr ""
5653
 
5654
+ #: add-ons/user-listing/userlisting.php:1617
5655
  msgid "Last &raquo;&raquo;"
5656
  msgstr ""
5657
 
5658
+ #: add-ons/user-listing/userlisting.php:1695
5659
  msgid "Show All"
5660
  msgstr ""
5661
 
5662
+ #: add-ons/user-listing/userlisting.php:1771
5663
  msgid "Choose..."
5664
  msgstr ""
5665
 
5666
+ #: add-ons/user-listing/userlisting.php:1860
5667
  msgid "No options available"
5668
  msgstr ""
5669
 
5670
+ #: add-ons/user-listing/userlisting.php:2015
5671
  msgid "Remove All Filters"
5672
  msgstr ""
5673
 
5674
+ #: add-ons/user-listing/userlisting.php:2130
5675
  msgid "Search"
5676
  msgstr ""
5677
 
5678
+ #: add-ons/user-listing/userlisting.php:2131
5679
  msgid "Clear Results"
5680
  msgstr ""
5681
 
5682
+ #: add-ons/user-listing/userlisting.php:2336, add-ons/user-listing/userlisting.php:2340
5683
  msgid "Extra shortcode parameters"
5684
  msgstr ""
5685
 
5686
+ #: add-ons/user-listing/userlisting.php:2338
5687
  msgid "View all extra shortcode parameters"
5688
  msgstr ""
5689
 
5690
+ #: add-ons/user-listing/userlisting.php:2343
5691
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5692
  msgstr ""
5693
 
5694
+ #: add-ons/user-listing/userlisting.php:2344
5695
  msgid "Example:"
5696
  msgstr ""
5697
 
5698
+ #: add-ons/user-listing/userlisting.php:2346
5699
  msgid "Remember though, that the field-value combination must exist in the database."
5700
  msgstr ""
5701
 
5702
+ #: add-ons/user-listing/userlisting.php:2352
5703
  msgid "displays only the users that you specified the user_id for"
5704
  msgstr ""
5705
 
5706
+ #: add-ons/user-listing/userlisting.php:2358
5707
  msgid "displays all users except the ones you specified the user_id for"
5708
  msgstr ""
5709
 
5710
+ #: add-ons/user-listing/userlisting.php:2421
5711
  msgid "Random (very slow on large databases > 10K user)"
5712
  msgstr ""
5713
 
5714
+ #: add-ons/user-listing/userlisting.php:2424
5715
  msgid "Ascending"
5716
  msgstr ""
5717
 
5718
+ #: add-ons/user-listing/userlisting.php:2425
5719
  msgid "Descending"
5720
  msgstr ""
5721
 
5722
+ #: add-ons/user-listing/userlisting.php:2430
5723
  msgid "Roles to Display"
5724
  msgstr ""
5725
 
5726
+ #: add-ons/user-listing/userlisting.php:2430
5727
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5728
  msgstr ""
5729
 
5730
+ #: add-ons/user-listing/userlisting.php:2431
5731
  msgid "Number of Users/Page"
5732
  msgstr ""
5733
 
5734
+ #: add-ons/user-listing/userlisting.php:2431
5735
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5736
  msgstr ""
5737
 
5738
+ #: add-ons/user-listing/userlisting.php:2432
5739
  msgid "Default Sorting Criteria"
5740
  msgstr ""
5741
 
5742
+ #: add-ons/user-listing/userlisting.php:2432
5743
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5744
  msgstr ""
5745
 
5746
+ #: add-ons/user-listing/userlisting.php:2433
5747
  msgid "Default Sorting Order"
5748
  msgstr ""
5749
 
5750
+ #: add-ons/user-listing/userlisting.php:2433
5751
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5752
  msgstr ""
5753
 
5754
+ #: add-ons/user-listing/userlisting.php:2434
5755
  msgid "Avatar Size (All-userlisting)"
5756
  msgstr ""
5757
 
5758
+ #: add-ons/user-listing/userlisting.php:2434
5759
  msgid "Set the avatar size on the all-userlisting only"
5760
  msgstr ""
5761
 
5762
+ #: add-ons/user-listing/userlisting.php:2435
5763
  msgid "Avatar Size (Single-userlisting)"
5764
  msgstr ""
5765
 
5766
+ #: add-ons/user-listing/userlisting.php:2435
5767
  msgid "Set the avatar size on the single-userlisting only"
5768
  msgstr ""
5769
 
5770
+ #: add-ons/user-listing/userlisting.php:2436
5771
  msgid "Visible only to logged in users?"
5772
  msgstr ""
5773
 
5774
+ #: add-ons/user-listing/userlisting.php:2436
5775
  msgid "The userlisting will only be visible only to the logged in users"
5776
  msgstr ""
5777
 
5778
+ #: add-ons/user-listing/userlisting.php:2437
5779
  msgid "Visible to following Roles"
5780
  msgstr ""
5781
 
5782
+ #: add-ons/user-listing/userlisting.php:2437
5783
  msgid "The userlisting will only be visible to the following roles"
5784
  msgstr ""
5785
 
5786
+ #: add-ons/user-listing/userlisting.php:2443
5787
  msgid "Userlisting Settings"
5788
  msgstr ""
5789
 
5790
+ #: add-ons/user-listing/userlisting.php:2468
5791
  msgid "Label"
5792
  msgstr ""
5793
 
5794
+ #: add-ons/user-listing/userlisting.php:2468
5795
  msgid "Choose the facet name that appears on the frontend"
5796
  msgstr ""
5797
 
5798
+ #: add-ons/user-listing/userlisting.php:2469
5799
  msgid "Facet Type"
5800
  msgstr ""
5801
 
5802
+ #: add-ons/user-listing/userlisting.php:2469
5803
  msgid "Choose the facet menu type"
5804
  msgstr ""
5805
 
5806
+ #: add-ons/user-listing/userlisting.php:2470
5807
  msgid "Facet Meta"
5808
  msgstr ""
5809
 
5810
+ #: add-ons/user-listing/userlisting.php:2470
5811
  msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
5812
  msgstr ""
5813
 
5814
+ #: add-ons/user-listing/userlisting.php:2471
5815
  msgid "Behaviour"
5816
  msgstr ""
5817
 
5818
+ #: add-ons/user-listing/userlisting.php:2471
5819
  msgid "Narrow the results"
5820
  msgstr ""
5821
 
5822
+ #: add-ons/user-listing/userlisting.php:2471
5823
  msgid "Expand the results"
5824
  msgstr ""
5825
 
5826
+ #: add-ons/user-listing/userlisting.php:2471
5827
  msgid "Choose how multiple selections affect the results"
5828
  msgstr ""
5829
 
5830
+ #: add-ons/user-listing/userlisting.php:2472
5831
  msgid "Visible choices"
5832
  msgstr ""
5833
 
5834
+ #: add-ons/user-listing/userlisting.php:2472
5835
  msgid "Show a toggle link after this many choices. Leave blank for all"
5836
  msgstr ""
5837
 
5838
+ #: add-ons/user-listing/userlisting.php:2497
5839
  msgid "Search Fields"
5840
  msgstr ""
5841
 
5842
+ #: add-ons/user-listing/userlisting.php:2497
5843
  msgid "Choose the fields in which the Search Field will look in"
5844
  msgstr ""
5845
 
5846
+ #: add-ons/user-listing/userlisting.php:2502
5847
  msgid "Search Settings"
5848
  msgstr ""
5849
 
5850
+ #: add-ons/user-listing/userlisting.php:2574
5851
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
5852
  msgstr ""
5853
 
5854
+ #: add-ons/user-listing/userlisting.php:2574
5855
  msgid "You can find it in the Profile Builder menu."
5856
  msgstr ""
5857
 
5858
+ #: add-ons/user-listing/userlisting.php:2737
5859
  msgid "No results found!"
5860
  msgstr ""
5861