=== WP Dashboard Notes === Contributors: sormano Tags: note, notes, dashboard notes, wordpress notes, admin note, private note, notification, collaboration, workflow, to do list, note list, note widget Requires at least: 4.0 Tested up to: 6.4 Stable tag: 1.0.13 License: GPLv3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html Working with multiple persons on a website? Want to make notes? You can do just that with WP Dashboard Notes. Create beautiful notes with a nice user experience. == Description == Working with multiple persons on a website? Want to make notes? You can do just that with WP Dashboard Notes. Create beautiful notes with a nice user experience. **Features:** * Colored notes * List notes or regular notes * Public or private notes * Edit on dashboard * Add as many notes as you like * Drag & drop list items * No save button needed! **Feature requests, ratings and donations are welcome and appreciated!** == Frequently Asked Questions == = How can I add a new note? = A new note can be added in two ways. - There is a 'Add note' button is located in the top admin bar - Or you can add a new note from within an existing note. When hovering over a note there will show an black bar at the bottom of that note. There is an '+' within that bar where you can add a new note. = Can I change the colors = You could change the colors by overriding the style from another stylesheet. If you need help with this, ask in the support forums. = How can I add my own colors? = Add the following code to your functions.php, you can change the values of course to your own colors. Required: ` add_filter( 'wpdn_colors', 'wpdn_add_purple' ); function wpdn_add_purple( $colors ) { $colors['purple'] = '#5236A0'; return $colors; } ` *Optional:* You can add the following code for extra styling (e.g. light text instead of dark) ` add_action( 'admin_head', 'wpdn_add_style' ); function wpdn_add_style() { ?>