forked from ultimatemember/ultimatemember
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1710 lines (1313 loc) · 65.6 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Ultimate Member ===
Author URI: https://ultimatemember.com/
Plugin URI: https://ultimatemember.com/
Contributors: ultimatemember, champsupertramp
Donate link:
Tags: access control, author, authors, author profile, comments, community, communities, conditional fields, conditional logic, conditional menus, content protection, custom fields, file uploads, form builder, front-end login, front-end registration, gravatar, hide wp-admin, login, login page, logged-in users, mandrill, member, members, membership, member directory, online users, profile, profiles, profile builder, registration, restriction, restrict content, role creation, role menus, search filters, sign in, sign up, social network, star ratings, toolbar, user, users, user fields, user profile, user-profile, user profiles, user roles
Requires at least: 4.1
Tested up to: 4.7.2
Stable Tag: 1.3.82
License: GNU Version 2 or Any Later Version
The easiest way to create powerful online communities and beautiful user profiles with WordPress
== Description ==
Ultimate Member is a powerful and flexible plugin that makes it a breeze for users to sign-up and become members. The plugin allows you to add beautiful user profiles to your site and is perfect for creating advanced online communities. Lightweight and highly extendible, Ultimate Member will enable you to create almost any type of site where users can join and become members with absolute ease.
= Features of the plugin include: =
* Front-end user registration
* Front-end user login
* Front-end user profiles
* Custom form fields
* Conditional logic for form fields
* Drag and drop form builder
* User account page
* Custom user roles
* Searchable member directories
* Custom e-mail templates
* Content restriction
* Conditional menus
* Show author posts & comments on user profiles
* Mobile adaptive & responsive
* SEO optimized
* Developer friendly with dozens of actions and filters
* Multi-site compatibility
* Mandrill compatibility
Read about all of the plugin's features at [Ultimate Member](https://ultimatemember.com)
= Paid Extensions =
Ultimate Member has a range of extensions that allow you to extend the power of the plugin
* [Instagram](https://ultimatemember.com/extensions/instagram/) - Allow users to show their Instagram photos on their profile
* [User Tags](https://ultimatemember.com/extensions/user-tags/) - Lets you add a user tag system to your website
* [Social Activity](https://ultimatemember.com/extensions/social-activity/) - Let users create public wall posts & see the activity of other users
* [WooCommerce](https://ultimatemember.com/extensions/woocommerce/) - Allow you to integrate WooCommerce with Ultimate Member
* [Private Messages](https://ultimatemember.com/extensions/private-messages/) - Add a private messaging system to your site & allow users to message each other
* [Followers](https://ultimatemember.com/extensions/followers/) - Allow users to follow each other on your site and protect their profile information
* [Real-time Notifications](https://ultimatemember.com/extensions/real-time-notifications/) - Add a notifications system to your site so users can receive real-time notifications
* [Social Login](https://ultimatemember.com/extensions/social-login/) - Let users register & login to your site via Facebook, Twitter, G+, LinkedIn, Instagram and Vkontakte (VK.com)
* [bbPress](https://ultimatemember.com/extensions/bbpress/) - With the bbPress extension you can beautifully integrate Ultimate Member with bbPress
* [MailChimp](https://ultimatemember.com/extensions/mailchimp/) - Allow users to subscribe to your MailChimp lists when they signup on your site and sync user meta to MailChimp
* [User Reviews](https://ultimatemember.com/extensions/user-reviews/) - Allow users to rate & review each other using a 5 star rate/review system
* [Verified Users](https://ultimatemember.com/extensions/verified-users/) - Add a user verficiation system to your site so user accounts can be verified
* [myCRED](https://ultimatemember.com/extensions/mycred/) - With the myCRED extension you can integrate Ultimate Member with the popular myCRED points management plugin
* [Notices](https://ultimatemember.com/extensions/notices/) - Alert users to important information using conditional notices
* [Profile Completeness](https://ultimatemember.com/extensions/profile-completeness/) - Encourage or force users to complete their profiles with the profile completeness extension
* [Friends](https://ultimatemember.com/extensions/friends/) - Allows users to become friends by sending & accepting/rejecting friend requests
= Free Extensions =
* [Google reCAPTCHA](https://ultimatemember.com/extensions/google-recaptcha/) - Stop bots on your registration & login forms with Google reCAPTCHA
* [Online Users](https://ultimatemember.com/extensions/online-users/) - Display what users are online with this extension
= Development =
If you're a developer and would like to contribute to the source code of the plugin you can do so via our [GitHub Repository](https://github.com/ultimatemember/ultimatemember).
= Documentation & Support =
Got a problem or need help with Ultimate Member? Head over to our [documentation](http://docs.ultimatemember.com/) and perform a search of the knowledge base. If you can’t find a solution to your issue then you can create a [support ticket](https://ultimatemember.com/support-contact/).
= Languages =
Ultimate Member has been translated into the following languages:
* English (US)
* Spanish - Español
* Spanish (Mexico) - Español (México)
* French - Français
* Italian - Italiano
* German - Deutsch
* Dutch - Nederlands
* Brazilian Portuguese - Português do Brasil
* Finnish - Suomi
* Romanian - Română
* Danish - Dansk
* Swedish - Svenska
* Polish - Polski
* Czech
* Greek
* Indonesian
* Simplified Chinese
* Russian - Русский
* Turkish - Türkçe
* Farsi - فارسى
* Hebrew
* العربية
== Installation ==
1. Activate the plugin
2. That's it. Go to Ultimate Member > Settings to customize plugin options
3. For more details, please visit the official [Documentation](http://docs.ultimatemember.com/) page.
== Frequently Asked Questions ==
= Do I need to know any coding to use this plugin? =
No, we have built Ultimate Member to be extremely easy to use and does not require you to manually build shortcodes or have any coding knowledge.
= Is Ultimate Member mobile responsive? =
Yes. Ultimate Member is designed to adapt nicely to any screen resolution. It includes specific designs for phones, tablets and desktops.
= Is Ultimate Member multi-site compatible? =
Yes. Ultimate Member works great on both single site and multi-site WordPress installs.
= Does the plugin work with any WordPress theme? =
Yes. Ultimate Member will work with any properly coded theme. However, some themes may cause conflicts with the plugin. If you find a styling issue with your theme please create a post in the community forum.
= Does the plugin work with caching plugins? =
The plugin works with popular caching plugins by automatically excluding Ultimate Member pages from being cached. This ensures other visitors to a page will not see the private information of another user. However, if you add features of Ultimate Member to other pages you have to exclude those pages from being cached through your cache plugin settings panel.
== Screenshots ==
1. Screenshot 1
2. Screenshot 2
3. Screenshot 3
4. Screenshot 4
5. Screenshot 5
6. Screenshot 6
7. Screenshot 7
8. Screenshot 8
9. Screenshot 9
10. Screenshot 10
11. Screenshot 11
12. Screenshot 12
13. Screenshot 13
14. Screenshot 14
15. Screenshot 15
16. Screenshot 16
== Changelog ==
= 1.3.82: January 31, 2017 =
* Enhancements:
* Add filter hook to disable secure account fields
* `um_account_secure_fields__enabled`
* Updates ReduxFramework to version 3.6.2
* Adds a body class in profile/user page for the current loggedin user
* `um-own-profile`
* Bugfixes
* Fix select/multi-select field options translation
* Fix profiles visibility and access permissions in member directories
* Fix User deletion in mobile browsers
* Fix WPML & PolyLang compatibility issues
* Fix field view and edit restriction
* Fix author name in recent comments widget
* Fix overwrite of multiple image and file uploads with the same filename
* Remove notices
= 1.3.81: January 19, 2017 =
* Bugfixes
* Fix conditional field option with 'contains'
* Fix WPML compatibility with UM logout
= 1.3.80: January 18, 2017 =
* Bugfixes:
* Fix loop email notifications on user creation in the back-end
= 1.3.79: January 17, 2017 =
* Enhancements:
* Adds new username and string validation filter hooks:
* um_validation_safe_username_regex
* um_validation_safe_string_regex
* Adds new filter hook to modify conditional fields
* um_get_field__{$field_key}
* Change max limit of users queue's count in cache
* Adds current logged in users WP and Community roles in the System Info
* Adds confirmation on user deletion
* Bugfixes:
* Fix conditional fields
* Fix logout compatibility issues with WPML
* Fix select option's custom callback validation
* Fix translation strings of primary and secondary buttons on Login and Register forms.
* Fix gender filter and results
* Fix user deletion in account page for mobile browsers
* Fix form rows CSS options
* Fix default text autocomplete
* Remove notices
= 1.3.78: December 08, 2016 =
* Bugfixes:
* Fix menu settings compatibility issue with WP 4.7
* Fix mobile class on account delete tab heading
* Fixes an issue where tagline shows the current users to all members
* Fixes notice on updating WP List Table quick edit
* Remove notices
= 1.3.77: November 30, 2016 =
* Bugfixes:
* Fix set and reset password validation.
* Remove notices
= 1.3.76: November 30, 2016 =
* Bugfixes:
* Fix invalid security notice in set password.
= 1.3.75: November 29, 2016 =
* Bugfixes:
* Fix 'Invalid user ID' on profile update
= 1.3.74: November 29, 2016 =
* Enhancements:
* Improves clear users cache.
* Removes user id from redirect URL on registration process for pending review and email activation statuses.
* Bugfixes:
* Fix assigning of role on registration process
* Fix change email address in edit mode.
* Fix change password validation.
* Removes notices when role field is present in the profile form.
= 1.3.73: November 17, 2016 =
* Enhancements:
* Adds a filter hook to modify the submitted details on registration process
* `um_before_save_filter_submitted`
* Adds a filter hook to disable canonical link in header
* `um_allow_canonical__filter`
* Adds a filter hook to modify the auto-generated email address on registration process
* `um_user_register_submitted__email`
* Adds filter hooks to modify locale, language file path and textdomain
* `um_language_textdomain`
* `um_language_locale`
* `um_language_file`
* Adds filter hook to modify the data of selected value:
* `um_is_selected_filter_data`
* Adds new select/multi-select options to retrieve options from a callback.
* In the form builder, edit or add a select/multi-select field and add your callback function in `Choices callback` field to get populated.
* Adds parent select field option to dynamically populate another select field.
* If `Choices Callback` option is set in the field settings, the `Parent Option` triggers an Ajax request to populate the child options on `change` event.
* Updates `um.min.js` file.
* Updates `en_US` translation file.
* Bugfixes:
* Removes notices from WPCLI console.
* Removes notices from edit profile mode
* Removes autocomplete from search filter fields
* Fix translation strings of search filters on a member directory
* Fix email notifications not sending on registration process
* Fix field selection with special characters on form submission
* Fix assigning of role on register submission process
= 1.3.72: October 10, 2016 =
* Enhancements:
* Improves the bulk filters, actions and redirection in `User Screens`
* Adds new access options to disallow access on homepage and category pages.
* Adds Textarea to show in profile tagline on Member Directory
* Adds a filter hook `um_allow_frontend_image_uploads` to allow profile and cover photo uploads on front-end pages.
* Adds new filter hooks to modify image field data on upload:
* `um_image_handle_global__option`
* `um_image_handle_{$field}__option`
* Adds a new filter hook to modify the redirection of non logged in users who visit the parent user page.
* `um_locate_user_profile_not_loggedin__redirect`
* Improves generate dummies tool with `wp_remote_get`
* Adds a new action hook for a new section in cover area:
* `um_cover_area_content`
* Updates the English translation .po and .mo files.
* Improves the shortcode `um_show_content` to swap the `user_id` with the current profile.
* Bugfixes:
* Fixes a bug where multi-select field options doesn't match the user selected options that contain html entities.
* Fixes a bug to display correct role slugs in radio and select fields.
* Fixes a bug where reset password form is conflicting with register and login form on a page.
* Fixes a bug where Users queue count in the Admin > `All Users / Users` menu doesn't update when a user account is in `pending user review` and gets deleted.
* Fixes a typo in Password Reset Email option's description
* Fixes a bug where conditional fields 'equals to' validation on registration process
* Fixes a bug to disable the query with hiding account on member directory
* Fixes a bug to retrieve specific number of members
* Fixes a bug to retrieve all members with `get_members` new parameter `number`
* Fixes a typo in Welcome Email template.
* Fixes a bug where login form redirection is set to `wp-admin/admin-ajax.php` instead of the current page when loaded via ajax.
* Fixes a bug where uninstall link doesn't load.
* Fixes a bug to redirect users to correct URL after login based from login options.
* Fixes a bug where non-logged in users are not able to access the profile page when `Global Site Access` is set to `Site accessible to Logged In Users`.
* Fixes a bug to modify the login redirection url especially when DOING_AJAX is defined.
* Fixes a bug to retrieve correct community roles per site in a Multisite Network setup.
= 1.3.71: September 12, 2016 =
* Enhancements:
* Adds a new filter hook to modify the `cover photo` uri.
* `um_user_cover_photo_uri__filter`
* Bugfixes:
* Fixes a bug to allow users change their password in account form
* Fixes a bug to allow role validation and assigning of roles to users on registration process
* Fixes a bug to avoid blank admin footer text all around WordPress
= 1.3.70: September 09, 2016 =
* Enhancements:
* Adds a new filter hook to modify the profile `cover photo` uri.
* `um_user_cover_photo_uri__filter`
* Bugfixes:
* Fixes a bug to allow users change their password in account form
* Fixes a bug to reset passwords
= 1.3.69: September 08, 2016 =
* Enhancements:
* Adds a system information tool for support purposes
* Adds a new option to disable generating profile slugs on every load of member directory pages.
* Located in UM > Settings > Advanced > Stop generating profile slugs in member directory.
* This improves the performance when loading profiles in directories. It generates profile slug on Profile Update ( front and back-end ), Registration Process and viewing the Users in the back-end.
* Adds new filter hook `um_activate_url` to modify the account activation url.
* Adds new filter hooks to modify first and last name cases
* `um_user_first_name_case`
* `um_user_last_name_case`
* Adds new filter hooks to modify nonces of image and file uploads
* `um_file_upload_nonce`
* `um_image_upload_nonce`
* Improves search member filters and keyword sensitivity
* Improves generation of profile slugs
* Improves force capitalization of display names with dash
* Improves the pagination and loading of profiles in member directory
* Bugfixes:
* Fixes a bug where users in member directory are missing after updating their profile
* Fixes a bug to generate random email when email field is not added in a form.
* Fixes a bug to show hidden members in member directory for admins
* Fixes a bug to validate username length on registration process
* Fixes a bug to display profile name in dynamic menu and profile page title
* Fixes a bug where frequent security notices show on registration process
* Fixes a bug to assign correct role to a user on registration process
* Fixes a bug to display correct roles in radio and dropdown fields
* Fixes a bug to validate the reset password
* Fixes a bug to change the assign of role in navigation menu items
* Fixes a bug to select radio field in profile form
* Fixes a bug to allow frontpage and posts page to handle custom access settings
* Fixes a bug where profile role field's conditional logic doesn't show/hide the second field.
* Fixes a bug to show 'Last Login' field in profile edit and view mode.
* Fixes a bug to sync roles with users in Edit Roles.
* Fixes a bug to disable/enable UM profile cache
* Fixes a bug to disable biography field's character limit when added in form
= 1.3.68: August 02, 2016 =
* Fixed: radio field in account page
= 1.3.67: August 02, 2016 =
* New: allow non-editable fields in registration form
* Fixed: member directory mobile pagination
* Fixed: biography field validation in profile header and forms
* Fixed: remove override 'birth date' label
* Fixed: html support in biography field
* Fixed: select options search
* Fixed: select field's search query
* Fixed: search filters and multi-select fields
* Fixed: select, radio and checkbox field options
* Fixed: multiple select in UM settings
* Fixed: member directory's pagination links
* Fixed: remove nonce and http referer from submitted user details
* Fixed: disallow direct access link to posts with enabled category access restriction
* Added: new filter hook: `um_get_default_cover_uri_filter`
* Added: new filter hook: `um_register_allow_nonce_verification`
* Added: new filter hook: `um_get_option_filter__{$option_id}`
* Added: new filter hook: ` um_profile_{$key}__filter`
* Added: new filter hook: `um_profile_{$key}_empty__filter`
* Added: new filter hook `um_enable_ajax_urls`
* Added: new filter hook `um_field_checkbox_item_title`
= 1.3.66: July 14, 2016 =
* Tweak: update translation strings and English translation file.
* Fixed: alphabetic and lowercase validations
* Fixed: checkbox and radio label encoding
* Fixed: user_login field validation type
* Fixed: registration form process
* Fixed: remove comments with hidden/private posts from comment tab
= 1.3.65: July 06, 2016 =
* Tweak: update ReduxFramework to version 3.6.0.1
* Added: new action hook 'um_registration_after_auto_login'
* Added: new option for Network Permalink Structure
* Added: an account option to require first and last name
* Fixed: account deletion and password confirmation
* Fixed: registration form submission process
* Fixed: access settings in home page and posts conflict
* Fixed: encoding non UTF8 strings
= 1.3.64: June 29, 2016 =
* Fixed: edit profile permission
= 1.3.63: June 28, 2016 =
* Fixed: admin navigation
* Fixed: profile access and redirection
= 1.3.62: June 27, 2016 =
* Fixed: access settings and redirection for logged out users
* Fixed: global access settings
* Fixed: remove notice in permalink
= 1.3.61: June 24, 2016 =
* Fixed: edit profile url in multi-site setup
* Fixed: global access settings
= 1.3.60: June 23, 2016 =
* Fixed: change password
* Fixed: menu settings and roles
* Fixed: cropper issue with Avada theme
* Fixed: image cropper and modal
* Fixed: nonce in registration forms
* Fixed: user redirection for non-loggedin users
* Fixed: global access setting
= 1.3.59: June 17, 2016 =
* Added: filter 'um_register_hidden_role_field'
* Added: filters and action hooks in form post
* Added: cache time filter in avatar url
* Fixed: Nonces added to file uploads
* Fixed: remove notices
* Fixed: upload image cropper
* Fixed: select field multiple select
* Fixed: changing community role by admin
* Fixed: current url method in multisite setup
* Fixed: access settings
= 1.3.58: June 09, 2016 =
* Fixed: change password
* Fixed: select field overlay
= 1.3.57: June 09, 2016 =
* Fixed: admin access restriction
= 1.3.56: June 09, 2016 =
* Fixed: query of pages
= 1.3.55: June 09, 2016 =
* Fixed: select fields styles
* Fixed: select fields with accented characters
* Fixed: select fields with accented text values
* Fixed: select fields in overlay
* Fixed: admin front-end access restriction
* Fixed: pages query
= 1.3.54: June 02, 2016 =
* Fixed: remove quick edit from Built-in roles row actions
* Fixed: remove notices
* Fixed: dropdown/select fields
* Fixed: upload file extension's case sensitive issue
* Fixed: reset and change password
= 1.3.53: June 01, 2016 =
* New: generate dummy users tool
* Added: filter 'um_submit_form_error' for custom error messages
* Tweak: update compressed CSS
* Tweak: update select2.js to version 4.0.2
* Fixed: gravatar and transfer tool
* Fixed: permalink base for username
* Fixed: saving account fields
* Fixed: remove notice
* Fixed: upload form error logging
* Fixed: cache option
* Fixed: edit profile url
* Fixed: login redirection
* Fixed: remove account information from welcome email
* Fixed: form error with users tags
* Fixed: select fields with accented characters
* Fixed: image upload
= 1.3.52: May 14, 2016 =
* Added: 'wp_authenticate_username_password_before' action hook
* Tweak: remove access settings in media screens
* Fixed: convert tags format
* Fixed: ReduxFramework notice
* Fixed: remove PHP notice
= 1.3.51: May 10, 2016 =
* Added: 'um_form_fields_textarea_settings' filter
* Added: reset password limit options
* Added: option to force display name to be capitlized
* Fixed: remove notices
* Fixed: redirect url on login
* Fixed: optimize query and object caching
* Fixed: profile photo as required field
* Fixed: admin access in front-end login
* Fixed: typos in tooltips
* Fixed: embedding video fields
* Fixed: Flush rewrite rules
= 1.3.50: April 21, 2016 =
* Fixed: menu incompatibility issue
* Fixed: username validation
* Fixed: admin css conflict
* Fixed: display name capitalization
* Fixed: search member filter and fields
* Fixed: member directory big SELECT query
* Added: action hook 'um_access_post_type' & 'um_access_post_type_{current_page_type}' for current page type in access settings
= 1.3.49: April 14, 2016 =
* Fixed: remove core notices from ajax requests
* Fixed: upload form and media path
= 1.3.48: April 11, 2016 =
* New: advanced option to disable profile object caching
* Added: ssl media uri function
* Added: first and last name initial as meta key
* Fixed: order by random and pagination
* Fixed: user sort by random
* Fixed: status message encoding
* Fixed: image upload and file name
* Fixed: user login with other provider
* Fixed: translation strings
* Fixed: dependencies fatal errors
* Fixed: remove notices
= 1.3.47: April 6, 2016 =
* Fixed: Fatal errors with language filter file
= 1.3.46: April 6, 2016 =
* Fixed: Search widget fatal error
* Fixed: image jpeg upload sizes
= 1.3.45: April 6, 2016 =
* New: support for wordfence and limit login
* New: search widget
* New: secondary email address
* Added: hook to password reset form fields
* Added: privacy options for profile menu tabs
* Added: option to allow primary email editable in profile view
* Added: member directory sort randomly
* Fixed: user page redirection
* Fixed: admin script error
* Fixed: invalid image path
* Fixed: upload image png with transparency
* Fixed: permalink basename fallback
* Fixed: casting variable and add new filter
* Fixed: remove notices
* Fixed: search users by tag
* Fixed: force UT8 encoding option
* Fixed: email content type
* Fixed: WPML compatibility
* Fixed: permalink base name format and redirect loop in profile page
* Fixed: form labels textdomain
* Fixed: edit profile redirect
* Tweak: accept period in profile url
= 1.3.44: March 11, 2016 =
* New: an option to force Strings to use UTF-8 encoding
* New: an option to change Gravatar default image
* New: South Sudan to the list of countries.
* Fixed: update profile edit
* Fixed: remove feed from content restriction
* Fixed: search username query
* Fixed: support for server query string data after user login
* Fixed: matching fields values
* Fixed: email template path
* Fixed: shortcode within [um_show_content] shortcode
* Tweak: remove notices
= 1.3.43: March 5, 2016 =
* Fixed: redirect URL after login
* Fixed: security check in registration form
* Fixed: email template path string
* Fixed: member directory query
= 1.3.42: March 3, 2016 =
* Fixed: email template and localization
* Fixed: redirect URL
= 1.3.41: March 3, 2016 =
* Fixed: Registration form redirect url
= 1.3.40: March 3, 2016 =
* New: filter `um_<field_type>_form_show_field` for display field
* New: shortcode: show custom content to specific role [um_show_content roles='member'][/um_show_content]
* New: 'not' attribute to [um_show_content not='member,contributor'][/um_show_content] shortcode
* Tweak: update masonry script
* Tweak: sql concatenate with prepare statement
* Fixed: remove notices
* Fixed: missing mCSB_buttons.png
* Fixed: set Gravatar default image as UM default image
* Fixed: fix default gravatar image
* Fixed: select2 multi dropdown for wc orders
* Fixed: show admin bar option
* Fixed: session issue with logout
* Fixed: register using email address if it exists
* Fixed: duplicate full_name permalinks
* Fixed: duplicate profile
* Fixed: show admin bar for non-logged in users
* Fixed: honorifics in full name
* Fixed: unsynced wp role
* Fixed: display wp user role filters
* Fixed: select and radio invalid value
* Fixed: email template path
* Fixed: user profile url with single dash in the last name
* Fixed: function to check meta value existence by meta key
* Fixed: um-admin-dashboard warnings
* Fixed: community role field in profile edit screen
* Fixed: mismatched roles
* Fixed: admin access in profiles
* Fixed: allow multiple member directory shortcode in a page
* Fixed: datepicker for ios and safari
* Fixed: adding of members in wp-admin
* Fixed: Fix redirection and XSS issue in login form
= 1.3.39: February 24, 2016 =
* New: add gravatar transfer tool
* New: show users with gravatar photo in member directory
* New: add upgrade class for data migration
* Tweak: Set last login for new users to show in member directory
* Tweak: validate roles for forms without fields
* Tweak: cropper js update
* Tweak: update minified script
* Tweak: tooltip and comment
* Fixed: member search query
* Fixed: Registration process with pending and show message enabled
* Fixed: Fix form security validation
* Fixed: email content type, template and localization
* Fixed: remove php notices
* Fixed: custom columns for roles
* Fixed: admin bar visibility per user role
* Fixed: community role editing
= 1.3.38: February 19, 2016 =
* Tweak: remove username validation
* Tweak: update minified scripts
* Fixed: Fix email and user submitted data encoding
* Fixed: role validation on register submission
* Fixed: form role and validation
* Fixed: search form pagination visibility
= 1.3.37: February 17, 2016 =
* New: Add password confirmation validation
* New: Add VK url validation
* New: Add Vkontakte as predefined url field
* New: Add additional file types
* New: Add file size limit label in image field
* New: Added password reset limit
* New: Allow redirect_to param after registration
* New: Indonesian language support added
* New: Add bio characters limit
* Tweak: Use native WP masonry script instead of duplicating it
* Tweak: Add image upload notice
* Tweak: Add option to allow users to hide profiles from member page
* Tweak: Add filters to modify output field
* Tweak: Add filter hook for email template path
* Tweak: Tweak upload form styles
* Tweak: Remove masonry from core and gulp
* Tweak: Add admin assets and apply minification
* Tweak: Update pickadate assets
* Tweak: Allowing usertags in search filters
* Tweak: Allow members template to be customized/overridden
* Tweak: Option to login user after clicking the activation link
* Tweak: Remove bio count strings
* Fixed: bio limit javascript error
* Fixed: ssl checker for load balancers
* Fixed: redirect loop with wpml permalink
* Fixed: WPML permalink and form compatibility
* Fixed: blocked words
* Fixed: searching with space
* Fixed: change password
* Fixed: members grid override
* Fixed: tipsy.js error
* Fixed: Plugin conflict causing account page displaying wrong info
* Fixed: email locale tempalte path
* Fixed: invalid role
* Fixed: validation for change password
* Fixed: unchecked access roles
* Fixed: telno input styles
* Fixed: escape display name in title attributes
* Fixed: datepicker css issue with some themes
* Fixed: make sure the hash parameter is a string
* Fixed: loading core assets
* Fixed: title tags not updated
* Fixed: empty uneditable fields
* Fixed: account deletion on one submission
* Fixed: Fixed indentation
* Fixed: user_login fallbacks and remove email address
* Fixed: password changed email template
= 1.3.36: January 6, 2016 =
* New: added in-page content restriction to protect content for logged-in or logged out users
* New: added community role field to user creation in backend
* New: added community role field to user editing in backend
* New: show specific users in members directory
* New: added a new field type: Number
* New: added filter hooks to specific profile fields
* New: added custom admin bulk actions support
* New: added usermeta support to content locking feature in-page
* Tweak: several tweaks in core to be more WordPress native
* Tweak: added fallback for page setup selections
* Tweak: automatic clickable links in profile header bio
* Tweak: trim long field labels in backend fields modal
* Fixed: profile page SEO title
* Fixed: multi-site redirect support
* Fixed: activation hash comparison
* Fixed: page setup fallback field
* Fixed: prevents php warnings and notices
* Fixed: WP-CLI and cronjobs issues
* Fixed: category posts restriction and redirection
* Fixed: category access settings
* Fixed: activation link
= 1.3.35: December 15, 2015 =
* Fixed: registration/login issues resolved
= 1.3.34: December 15, 2015 =
* New: new privacy option for fields: allow profile owner & specific roles to view the field
* Fixed: wrong php syntax in admin notice
= 1.3.33: December 15, 2015 =
* Fixed: Member search on homepage
* Fixed: emoticons support
* Fixed: redux notices, css styles in admin
* Fixed: users not being deleted
= 1.3.32: December 10, 2015 =
* Fixed: array format and notices
* Fixed: users search, delete confirmation and role filter
* Fixed: unique key field validation
= 1.3.31: December 9, 2015 =
* Fixed: Add slash in base url filter for multisite
* Fixed: manage user roles, status and filters
* Fixed: Enable WPML support to all UM url/links
* Fixed: Sanitize referers and printing notices in admin screens
= 1.3.30: December 3, 2015 =
* New: added Simplified Chinese language support
* Tweak: added many new filters (for developers)
* Fixed: Display name update in profile
* Fixed: Photo upload unique IDs
* Fixed: Remove duplicated method um_convert_tags
= 1.3.29: October 31, 2015 =
* New: added new documentation links to plugin files
* New: added filters to control profile photo menu (for developers)
* Fixed: added security patch to remove decrypted passwords from database
* Fixed: bug with blocked words during registration
* Fixed: some localization strings
* Fixed: php warnings/bugs on specific installs
= 1.3.28: October 13, 2015 =
* Fixed: Bug with plugin folder structure
= 1.3.27: October 13, 2015 =
* Fixed: Role name display in Users dashboard
= 1.3.26: September 25, 2015 =
* New: added Greek language support
* Tweak: added custom class to every user meta in member directory
* Tweak: added option to stop flushing rewrite rules every load (performance tweak)
* Fixed: WPML issue on multisite install
* Fixed: Removed redux menu from tools
* Fixed: fix for wp_authenticate_username_password()
* Fixed: searching users by e-mail address
* Fixed: conflict with sites with thousands of pages
= 1.3.25: September 7, 2015 =
* Fixed: 404 error on UM pages
= 1.3.24: September 6, 2015 =
* Tweak: saved some database queries
* Tweak: plugin not compatible with cache plugins out of the box - needs to exclude dynamic urls from cache
* Tweak: added more development filters in backend
= 1.3.23: September 2, 2015 =
* Fixed: PHP strstr() notice on profile
= 1.3.22: September 2, 2015 =
* Fixed: compatibility bug with older PHP versions
= 1.3.21: September 2, 2015 =
* Tweak: added security by sanitizing file/image uploads
* Fixed: issue with account page > notifications tab
* Fixed: image upload path in email notification
* Fixed: php issue with displaying name
* Fixed: missing localisation strings
* Fixed: couple of php notices
= 1.3.20: August 28, 2015 =
* New: added security measure for profile photo uploads
* New: added filter to hook in registration details sent in email notification
* New: added core pages filter to allow you change pages of extensions within plugin settings (e.g. activity)
* Fixed: multi-select field filtering bug
* Fixed: strip slashes from field names in fields modal
* Fixed: show drag and drop footer content only in the drag and drop form builder page
* Fixed: profile photo crop/upload issue
* Fixed: category/post specific restriction conflict
* Fixed: display UM classes only in UM pages
* Fixed: minor code improvements
= 1.3.19: August 20, 2015 =
* Fixed: please update - profile issue
= 1.3.18: August 20, 2015 =
* New: filter for comment types tab in profile
* New: jQuery.scrollto script added (for developers and extensions support)
* Fixed: XSS vulnerability in text input
* Fixed: user goes to profile about tab after editing profile
= 1.3.17: August 13, 2015 =
* New: added Brazilian Portuguese language support
* Tweak: added support for upcoming social activity extension
= 1.3.16: August 11, 2015 =
* New: added option to restrict categories in addition to per post content restriction
* New: added support to use dynamic user/profile ID in shortcode field e.g. [your-shortcode user_id={profile_id}]
* New: added security feature to disable admin logging via frontend (optional)
* New: added filter to um_get_core_page() function (for developers)
* Tweak: removed delay from tooltips
* Fixed: conflict with Podcast feed
= 1.3.15: August 4, 2015 =
* Fixed: issue with logout from adminbar
= 1.3.14: August 4, 2015 =
* New: added last login date support
* New: show user's last login in profile
* New: added sorting members by last login date
* New: added option to re-assign core pages in plugin settings
* Fixed: issue with multi-select required field
* Fixed: URL validation for custom fields
* Fixed: backend user filtering by non-english role
* Fixed: RTL css bugs
= 1.3.13: July 22, 2015 =
* Fixed: Woocommerce manual order dropdown conflict
= 1.3.12: July 22, 2015 =
* New: ability to delete user cache from plugin dashboard
* New: function is_ultimatemember() checks if user is on UM page (developers)
* New: option to disallow editing email in account page
* New: added Spanish (Mexico) language support
* Fixed: bug with profile viewing and user roles
* Fixed: Woocommerce dropdown bugs/conflicts
* Fixed: ipad/tablet css fixes for profile columns
* Fixed: deleting users delete their content
= 1.3.11: July 8, 2015 =
* Fixed: Redux errors and popups in backend
= 1.3.1: July 7, 2015 =
* Fixed: major issue with showing HTML in profiles
= 1.3.0: July 7, 2015 =
* New: easily sync UM roles with WP roles with role settings
* New: first steps towards WPML compatibility
* New: option to show member results only If user has searched
* New: add .um-err class to UM form if the form contains errors
* New: updated redux framework to latest version
* Fixed: feed issue with private / access locked posts
= 1.2.997: June 21, 2015 =
* New: added support for Farsi / Romanian language
* Tweak: adapted core community roles to prevent conflicts
* Fixed: bug with search results pagination
* Fixed: issue with panic key usage and wp-admin screen
* Fixed: bug with custom field validation action
= 1.2.996: June 11, 2015 =
* Fixed: php notice causing errors to appear in both frontend and backend
= 1.2.995: June 11, 2015 =
* New: added required support for WooCommerce extension
* Tweak: added option to fix conflicts of user profile links using different server method to get current url
* Fixed: security fix for redux framework added
* Fixed: button appearance on tablets
* Fixed: member search by display name
= 1.2.994: June 6, 2015 =
* Tweak: added a filter hook to change priority of enqueued styles/scripts
* Fixed: UM forms and elements not appearing in IE
* Fixed: Skype field output
* Fixed: conflict with libraries using Mobile Detect
* Fixed: issue with WP locale (using get_locale() now instead)
= 1.2.993: May 29, 2015 =
* Fixed: correction to last update
* Fixed: Private messages extension bug
= 1.2.99: May 29, 2015 =
* New: added Czech language support
* Fixed: WooCommerce dropdown issues and bugs in backend
= 1.2.98: May 18, 2015 =
* New: added Google map field
* New: added Vimeo video field
* New: added YouTube video field
* New: added SoundCloud track field
* New: added Hebrew language support
* Tweak: do not show captcha response in submitted registration details
* Fixed: profile photo upload issue on profile view mode
* Fixed: user search in backend/frontend
* Fixed: UM login check
* Fixed: admin settings css issue on mobile
* Fixed: cache variable undefined issue
= 1.2.97: May 13, 2015 =
* Fixed: issue with image upload fields
* Fixed: date localization resolved
* Fixed: issue with image upload during registration
* Fixed: JS issues for PM extension
= 1.2.96: May 12, 2015 =
* New: hooks and compatibility with Private Messages extension
* Fixed: bug with empty password on welcome e-mail
* Fixed: bug with member search using default permalinks
= 1.2.95: May 9, 2015 =
* New: RESTful API methods update.user, get.stats, and delete.user
* New: added Danish (Dansk) support
* New: added Swedish (Svenska) support
* Tweak: minor account and logout redirection tweaks
* Fixed: issue with changing user role
* Fixed: bug with login form validation
* Fixed: issue with biography field and html
= 1.2.94: May 6, 2015 =
* Fixed: bug with activation e-mails
* Fixed: bug stopping password reset
* Fixed: bug with changing user role and status in backend
= 1.2.93: May 5, 2015 =
* New: user profiles are cached to speed up load time
* New: emoji support added to bio / user descriptions
* Fixed: issues with bio field HTML
* Fixed: WP-admin PHP warning
* Fixed: bug with localization of en_US.po file