Navigation
How to Install Plugins
All Mautic Extendee plugins follow the same installation process.
Step 1: Download the plugin
After purchase you will receive a confirmation email with a download link. Download the plugin ZIP file and extract it.
Step 2: Copy the plugin
Place the extracted plugin folder inside your Mautic installation:
plugins/PluginBundle/
Each plugin has its own folder name (e.g. MauticAutoTaggerBundle, MauticTwigTemplatesBundle). You can find the exact folder name in the plugin documentation.
Step 3: Clear cache
php bin/console cache:clear
Step 4: Reload plugins list
php bin/console mautic:plugins:reload
Step 5: Re-generate assets
php bin/console mautic:assets:generate
Note (Mautic 5+): From Mautic 5 onwards,
mautic:assets:generaterequires Node.js and npm to be installed on the server. If the command fails with a Node/npm error, install Node.js first or ask your hosting provider to enable it.
Step 6: Enable the plugin
Go to Settings > Plugins in Mautic and make sure the plugin is listed and enabled.
Tip: If you do not see the plugin after running these commands, try clearing your browser cache and refreshing the page.
Requirements
- Mautic 4, 5, 6, or 7
- PHP 7.4 or higher (PHP 8.x recommended)
- SSH or FTP access to copy the plugin folder
FAQ
I uploaded the plugin but it doesn't appear in Settings > Plugins
Make sure you ran all the console commands in order. Also check that the plugin folder is placed directly inside the plugins/ directory (not nested in a subfolder).
Can I install via Composer?
Composer installation is not currently supported. Please use the manual method above.
Do I need to re-install after updating Mautic?
No. Plugins survive Mautic updates. After a major Mautic upgrade, run mautic:plugins:reload and mautic:assets:generate again to make sure everything is registered.