how to remove mandatory required fields in buddypress registration [closed]
Finally i did find an hack for this problem Make the field fullname, confirm password as display:none Bind the data from username to fullname and from password to confirm password For eg ( a simple binding example ) <html> <head> <script src=”http://code.jquery.com/jquery-latest.js”></script> <script> $(document).ready(function(){ $(‘#target’).bind(‘keyup keypress blur’, function() { $(‘#target1’).val($(this).val()); }); }); </script> </head> <body> … Read more