Advertisement
designbymerovingi

BP: Hide Balance from visitors

Feb 10th, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. /**
  2.  * Hide Balance from Visitors
  3.  * @version 1.0
  4.  */
  5. add_filter( 'mycred_bp_profile_header', 'mycredpro_hide_balance_from_visitors' );
  6. function mycredpro_hide_balance_from_visitors( $content ) {
  7.  
  8.     if ( ! is_user_logged_in() ) return '';
  9.  
  10.     return $content;
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement