Title: Hide empty status
Last modified: August 15, 2017

---

# Hide empty status

 *  Resolved [blue4](https://wordpress.org/support/users/blue4/)
 * (@blue4)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/hide-empty-status/)
 * Hi,
 * I’m using the latest version of the plugin, but it still shows the text
 * > No current status is set yet.
 * I can see that in the code there is filter **bpps_no_current_status_display**
   but how can I use it?
 * The above text does not have any specific class (eg. no-status) that I can hide
   with css.
 * Please tell me how can I hide that message if there is no status.
    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Sanket Parmar](https://wordpress.org/support/users/sanketparmar/)
 * (@sanketparmar)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/hide-empty-status/#post-9423800)
 * Hey [@blue4](https://wordpress.org/support/users/blue4/),
 * Sorry for the delayed response. 🙂
 * If you only want to hide the text `No current status is set yet.` ( Not link `
   Add New Status` ), then you can paste below code in your theme’s `functions.php`
   file:
 *     ```
       function bpps_hide_no_status_text( $no_status ) {
       	return false;
       }
   
       add_filter( 'bpps_no_current_status_display', 'bpps_hide_no_status_text' );
       ```
   
 * If you want to hide both `No current status is set yet.` + `Add New Status` link,
   then you can paste below code in your theme’s `style.css` file:
 *     ```
       #bpps-current-status {
       	display: none;
       }
       ```
   
 * Let us know if this works for you.
    -  This reply was modified 8 years, 10 months ago by [Sanket Parmar](https://wordpress.org/support/users/sanketparmar/).
    -  This reply was modified 8 years, 10 months ago by [Sanket Parmar](https://wordpress.org/support/users/sanketparmar/).
 *  Thread Starter [blue4](https://wordpress.org/support/users/blue4/)
 * (@blue4)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/hide-empty-status/#post-9431907)
 * Thank you very much, appreciate your help.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hide empty status’ is closed to new replies.

 * ![](https://ps.w.org/bp-profile-status/assets/icon-256x256.png?rev=1274169)
 * [BP Profile Status](https://wordpress.org/plugins/bp-profile-status/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bp-profile-status/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bp-profile-status/)
 * [Active Topics](https://wordpress.org/support/plugin/bp-profile-status/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bp-profile-status/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bp-profile-status/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [blue4](https://wordpress.org/support/users/blue4/)
 * Last activity: [8 years, 10 months ago](https://wordpress.org/support/topic/hide-empty-status/#post-9431907)
 * Status: resolved