Created
July 29, 2017 10:00
-
-
Save 1naveengiri/675d4acbcc8aa47f42fd2ca0a923ce72 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'admin_notices','bp_admin_notices' ); | |
/** | |
* Add Admin Notice when BuddyPress is not activated. | |
*/ | |
public function bp_live_admin_notices( ){ | |
if( ! is_plugin_active('buddypress/bp-loader.php') ){ ?> | |
<div class="notice notice-warning is-dismissible"> | |
<p> | |
<?php _e( 'BuddyPress Live Notification required BuddyPress to be activated', 'bp_live_notification' ); ?></p> | |
</div> | |
<?php } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment