Hello,
We are using Mautic 6.0.0.
How can you white label Mautic ?
I believe there is a github project however it does not support Mautic 6.0.0 according to the documentation.
Mautic has a formal structure for email themes. Were we can choose an existing theme or code a new theme etc.
What about extending this idea and have a default theme for the Mautic dashboard and logon screen etc. We could then easily change default mjml, html, CSS, logo’s and icons etc all in one place. Makes a lot of sense.
Thanks.
Hi @andrew_c3,
I believe the plugin you’re referring to is this one, probably the most well-known one out there, eheh:
GitHub - nickian/mautic-whitelabeler: Easily change the logos, colors and company name in the Mautic user interface.
Keep in mind that Mautic is currently going through significant UI changes. One of the upcoming features will allow users to select and customise themes - including colours - directly from the interface. Andersson is the main developer behind these improvements, and he’s doing a great job introducing more flexibility for branding and personalisation, like you pretend.
So honestly, I think the plugin you mentioned might become unnecessary in the near future!
As for your idea of changing the logo across all assets at once (email templates & LPs) that would require custom development. It’s not something currently supported out of the box in Mautic, as each theme handles its own assets separately.
Technically, it is possible to build a feature like that, but it would involve creating a mechanism to propagate branding elements across multiple theme directories and template files. While its a great idea, there are currently more pressing priorities in the community, especially around fixing critical bugs and improving overall stability, given the limited development resources available.
HOWEVER if you’re a developer and feel that you could contribute to this specific feature, either on your own or in collaboration with other community members, that could significantly speed things up. If the code passes all the necessary tests, security checks, and reviews, there’s definitely a chance it could be integrated into Mautic in a future release.
Sorry for the long reply 
Best regards,
Ricardo
1 Like
Hello @ricfreire
Thanks for your reply.
Yes I have seen the posts about the upcoming theme UI changes and it is great news however that is scheduled for Mautic 7.0.0 release which is not due until later this year.
I’m currently testing Mautic 6.0.0 for the minimum feature set we need for a production rollout in the coming week. I’ve been slowed down by the need to learn how to hand code custom email themes by cloning existing ones which I’ve now done successfully. Easy really.
Yes that is the free plugin I found on github however some have reported that it no longer works for more recent versions of Mautic so I haven’t tried it myself but I have looked through the code of the plugin to gain some insight on how branding works in Mautic in general.
My initial goal was to either remove or replace the Mautic logo on the main dashboard logon page as its very different branding to our branding which has lead to some confusion.
The Mautic 6.0.0 login page logo is actually html rendered svg. You can either delete the svg code to remove the logo. If you wish to replace the logo use inkscape to create an svg graphic and save it as plain svg. Open the plain svg file with a text editor and replace the Mautic svg code. I experimented with different sizes of logo so that it viewed centrally which works well as a short term workaround. The Mautic 6.0.0 svg code can be found in the following source file: public_html/app/bundles/UserBundle/Resources/views/Security/base_html.twig
Yes I’m a technology consultant and developer of long standing. I’ve coded assembler, Pascal, C, C++, SQL, HTML etc… However my php and symphony skills are minimal at the moment. However in Symphony you can call C++ compiled libraries so I’m getting by that way for the present until I improve my php and Symphony skills.
I would also like to say that Mautic is a wonderful project and has huge potential. I can’t wait to see what improvements are implemented in the next release.
Thanks.
1 Like
I mean if all you are after is logo change, you can do that by overriding template. This is for Mautic 4, but it should put you on the right track should you want to modify templates via custom plugin:
< mautic-field-group-bundle/EventListener/CustomTemplateSubscriber.php at b8cbe0111e1ab463d790c6409729c0da67b6010f · mzagmajster/mautic-field-group-bundle · GitHub >
If you want, I can also prepare a plugin for you that overrides all the necessary templates (in that case drop me a DM, if interested).
Best, M.
1 Like