WordPress User profile page fields missing

This is the new default password methodology used in WordPress 4.3. In WordPress 4.3, if you have Javascript disabled or broken, then you will get the normal New Password and Repeat New Password fields. If you have Javascript enabled and running normally, then you only get the Generate Password button. If you get two things … Read more

Remove Edit Profile option but still have the profile viewable

add_filter( ‘wpmem_register_form_rows’, ‘prefix_profile’, 9999, 2 ); function prefix_profile( $rows, $toggle ){ if( ‘edit’ == $toggle ){ foreach( $rows as $row_item ){ $rows[$row_item[‘meta’]][‘field’] = preg_replace( ‘/<input(.*) value=”(.*)” class=”textbox”(.*)\/>/’, ‘<p class=”noinput”>$2&nbsp;</p>’, $row_item[‘field’] ); $rows[$row_item[‘meta’]][‘label’] = str_replace( ‘*’, ”, $row_item[‘label’] ); } } return $rows; }