WP Floating Notification , Notification: Error, Warning, Success, Info.
| Author: | Vishal Kamal (profile at wordpress.org) |
| WordPress version required: | 3.0.1 |
| WordPress version tested: | 4.1.5 |
| Plugin version: | 1.0.0 |
| Added to WordPress repository: | 12-05-2015 |
| Last updated: | 14-05-2015
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 0 |
| Rated by: | 0 |
| Plugin URI: | http://www.vibgyorlogics.com |
| Total downloads: | 1 205 |
| Active installs: | 10+ |
![]() Click to start download |
|
Wp Floating Notifications plugin is use to display Warning , Error, Success and Info messages with animated box. It is very simple to use. You have to call simple function to set your notification.
Installation:-
1.Upload plugin-name.php to the /wp-content/plugins/ directory
2. Activate the plugin through the 'Plugins' menu in WordPress
After installation: This plugin include function "setWpNotification" to set your messages from anywhere. This function having two argument First: contains message (which you want to display). Second: Message type Like:- error,warning,success,info.
We define four types of notification: error , warning, success, info. you will use these notification type into your message. default notification type is set to error.
Example:
setWpNotification('this is test error message', 'error');
setWpNotification('this is test warning message', 'warning');
setWpNotification('this is test success message', 'success');
setWpNotification('this is test info message', 'info');
