Advertisement
rdusnr

Untitled

Oct 11th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. function bpfr_hide_profile_edit( $retval ) {
  2. // remove field from edit tab
  3. if( bp_is_profile_edit() ) {
  4. $retval['exclude_fields'] = '54'; // ID's separated by comma
  5. }
  6. // allow field on register page
  7. if ( bp_is_register_page() ) {
  8. $retval['include_fields'] = '54'; // ID's separated by comma
  9. }
  10.  
  11. // hide the field on profile view tab
  12. if ( $data = bp_get_profile_field_data( 'field=54' ) ) :
  13. $retval['exclude_fields'] = '54'; // ID's separated by comma
  14. endif;
  15.  
  16. return $retval;
  17. }
  18.  
  19. function sqr_hide_x_custom_profile() {
  20. if (!pmpro_has_membership_access()) {
  21. add_filter('bp_after_has_profile_parse_args', 'bpfr_hide_profile_edit');
  22. }
  23. }
  24. add_action('init', 'sqr_hide_x_custom_profile');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement