Create custom html page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ziondevil
    Member
    • Jun 2016
    • 30

    Create custom html page

    Hi,

    I need to create a custom html page.

    Where can i add the html file to show as a page in espocrm to all users ?
  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    Such thing are not supported out-of-the-box. You can try to replicate how About page is done.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • grzegorzgie
      Member
      • Jun 2016
      • 31

      #3
      You have to go to the directory:
      client\res\templates

      Copy file: about.tpl

      Give it a new name, for example: information.html

      Then go to the file:
      client\res\templates\site\navbar.tpl

      As an example, immediately after:
      <li><a href="#User/view/{{userId}}" class="nav-link">{{userName}}</a></li>

      Add:

      <li><a href="..\..\..\client\res\templates\information.ht ml" class="nav-link">Link name</a></li>

      I do not know how to work correctly as a file tpl Surely you can do better, but I can not do otherwise, whether it is helpful for you?


      Comment

      Working...