Application for create notes on content.
Required: Forums
Features:
- Add note,
- Edit note,
- Delete note,
- Add note as anonymous,
-
Visibility settings note:
- Selected groups,
- Forum moderators,
- Content author
Note types:
- No background,
- Information,
- General,
- Warning,
- Important,
- Positive
Other:
- Forum notes permissions with several groups,
- Mod Logs,
- Show/Hide avatar in note,
- Change position notes,
- Notifications and Emails when it will be added to the content,
- Mod permissions,
- Changed topic last_post date after add/edit note,
- Refresh topic after adding note
Edited by aXenDev
What's New in Version 1.2.1 See changelog
Released
- Added support for IPS 4.7
📞 Contact support:
⚙ Copy notes from Post Notes app:
Before performing the action, make sure that you have backed up the database!
Run this queries in your phpMyAdmin.
ALTER TABLE postnotes_notes MODIFY COLUMN type ENUM('none', 'info', 'general', 'warning', 'success', 'danger', 'error', 'information'); UPDATE `postnotes_notes` SET `type`='information' WHERE type='info'; UPDATE `postnotes_notes` SET `type`='error' WHERE type='danger'; INSERT INTO axencontentnotes_notes (post_id, root_id, text, created, author_id, type) SELECT post_id, topic_id, note, created_at, author_id, type FROM postnotes_notes; UPDATE axencontentnotes_notes SET groups = '*' WHERE groups IS NULL; UPDATE `postnotes_notes` SET `type`='info' WHERE type='information'; UPDATE `postnotes_notes` SET `type`='danger' WHERE type='error'; ALTER TABLE postnotes_notes MODIFY COLUMN type ENUM('none', 'info', 'general', 'warning', 'success', 'danger');