05.03.2026, 22:55
(Dieser Beitrag wurde zuletzt bearbeitet: 22.05.2026, 00:55 von MyBB.de Bot.)
Eine neue Erweiterung wurde veröffentlicht: Quick Edit Editor
Zitat:Quick Edit Editor
Overview
The Quick Edit Editor plugin replaces the default plain textarea in quick edit boxes with MyBB's full-featured BBCode editor (SCEditor) directly on the showthread page. Users can edit their posts inline without navigating to a separate edit page, while maintaining full access to all BBCode formatting options.
Main Features
User FeaturesBBCode Formatting
- Full BBCode Editor - Uses MyBB's default SCEditor with all formatting options
- Inline Editing - Edit posts directly on the thread page
- Color Picker - Full color selection support for text
- Edit Reason - Edit reason field shown by default
- Smiley Support - Insert emoticons directly while editing
- AJAX Save - Saves changes without page reload
- Cancel Restoration - Reverts to original content on cancel
- Text Formatting: bold, italic, underline, strikethrough
- Alignment: center, left, right, justify
- Colors & Fonts: color picker, font selection, text sizing
- Links & Images: URLs, email links, image embedding
- Lists: Unordered, ordered (numbered/lettered/roman)
- Quotes: Standard quotes, attributed quotes
- Code: Code blocks, PHP, SQL, HTML syntax
- Video: YouTube embedding
- Special: Spoilers, horizontal rules
Requirements
- MyBB 1.8.x (tested on 1.8.34+)
- SCEditor (included with MyBB)
- jQuery (included with MyBB)
- Color Picker plugin (optional, for color picker support)
Plugin Settings
- Enable Quick Edit Editor — Turn on/off the SCEditor in quick edit boxes (Default: Yes)
- Allow MyCode (BBCode) — Allow users to use MyCode formatting (Default: Yes)
- Allow Smilies — Allow smilies in the quick edit editor (Default: Yes)
- Editor Height — Set the height of the quick edit textarea in pixels (Default: 250)
- Allowed Usergroups — Select which usergroups can use the Quick Edit Editor.
- Allowed Forums — Select in which forums the Quick Edit Editor is available.
File Structure
Code:inc/plugins/ ├── quickedit_editor.php └── QuickEditEditor/ └── functions.php jscripts/ └── quickedit_editor/ └── quickedit_editor.js inc/languages/english/ └── quickedit_editor.lang.php
Installation
- Upload the plugin files to your MyBB installation following the file structure above
- Go to Admin CP → Plugins → Install & Activate
- Configure settings in Admin CP → Configuration → Plugins → Quick Edit Editor Settings
How It Works
Inline Editing Process
- When viewing a thread, each post shows a Quick Edit button
- Clicking Quick Edit loads the post content into SCEditor inline
- Users can format text using all BBCode buttons (if enabled)
- Edit Reason field is shown by default below the editor
- Click Save Changes to save via AJAX without page reload
- Click Cancel to revert to original content
Editor Behavior
- Respects MyBB global MyCode and smilies settings
- Uses same editor instance as new posts/replies
- Maintains all formatting options during quick edit
- AJAX saves preserve formatting and edit reasons
Compatibility
- MyBB 1.8.x
- PHP 7.0+