@danielmariveles
8 years, 10 months ago
I already tried but still no luck. I also tried to export my previous bp tables and wp_user & usermeta, but still no luck.
Or this one:
$(document).ready(function() { if ($("h1:contains('Create an Account')").is(":visible")) { $(".field_first-name").remove(); } });
You can do it using jQuery
$( document ).ready(function() { if ($("#register-page").is(":visible")) { $(".field_YOUR-INPUT-CLASSNAME-HERE").remove(); }); } });
As a result, the title is not working properly when on the member profile page.