22.03.2026, 15:45
(Dieser Beitrag wurde zuletzt bearbeitet: 30.03.2026, 18:10 von MyBB.de Bot.)
Eine neue Erweiterung wurde veröffentlicht: Advanced Quote
Zitat:Reply Functionality:
- Select text from any post and click Reply
- Inserts formatted quote with BBCode into quick reply editor
- Configurable destination: Quick Reply or New Reply Page
Quote+ Functionality:
- Select text and click Quote+ to save for multiquote
- Works like MyBB's native multiquote feature
- Saves to localStorage for instant access
- Backs up to database for persistence across sessions
- Automatically toggles multiquote indicator
Tooltip Customization:
- Enable/disable Quote+ tooltip
- Enable/disable Reply tooltip
- Position: Top, Bottom, or Auto (smart positioning)
Data Management:
- Automatic cleanup of old entries (48 hours)
- Database storage for persistence
- LocalStorage caching for speed
Plugin Settings
Zitat:Quote:Enable Quote+ Tooltip: Show Quote+ button when text is selected. Default: Enabled
Enable Reply Tooltip: Show Reply button when text is selected. Default: Enabled
Tooltip Position: Position of tooltip: Top, Bottom, or Auto (smart). Default: Auto
Reply Destination: Where Reply goes: Quick Reply page or New Reply page. Default: Quick Reply
**File Structure**
Code:inc/ └── plugins/ ├── advanced_quote.php (Main plugin file) └── AdvancedQuote/ ├── database.sql (Database schema) ├── settings.json (Settings configuration) ├── js/ │ └── advanced_quote.js (JavaScript) └── css/ └── advanced_quote.css (Tooltip styling)
Installation
- Upload the "AdvancedQuote" folder to /inc/plugins/
- Upload "advanced_quote.php" to /inc/plugins/
- Go to Admin CP > Plugins
- Click "Install & Activate" for Advanced Quote
- Configure settings at Admin CP > Configuration > Settings > Advanced Quote
How It Works
Reply Flow:
- User selects text in a post
- Tooltip appears with Reply button
- Click Reply > JavaScript extracts HTML from selection
- HTML is converted to BBCode (client-side)
- Formatted quote is sent to quick reply editor
Quote+ Flow:
- User selects text and clicks Quote+
- AJAX request fetches formatted BBCode from server
- Quote is saved to localStorage (instant access)
- Quote is saved to database (backup)
- MyBB's multiquote is toggled
- When viewing quick reply, saved quotes are auto-loaded