3

I have Mautic setup on my server and I want to customize the UI for navigation. What I want to achieve is that I want to add a custom navigation bar on the top of every page with an image and 3-4 links.

What is the recommended way to do this in Mautic. I want my implementation to be upgrade safe and I also want to use the best practices for such a task.

enter image description here

androidharry
  • 197
  • 1
  • 12

1 Answers1

2

Two way to achieve this :

  1. Create custom plugin and override existing navigation file and header. Which will not disturb your core files. So you can safely upgrade mautic. Mautic Custom Plugin Mautic Custom Plugin Step 2

  2. Our create custom theme and do customisation Custom Mautic Theme

In plugin approach. First create plugin and then override existing navigation html file.

Search for exact file first by search html code. Then you will get exact html file which you need to change and path. Then copy same file paste into plugin directly same way in CoreBundle.

Use this guide to override or inheritance.

https://symfony2-document.readthedocs.io/en/latest/cookbook/bundles/inheritance.html

Avinash Dalvi
  • 8,551
  • 7
  • 27
  • 53