Want to know the process of edit an existing template files

Hello All,
I want to edit an individual template in suitecrm. e.g i want to add some notice as a paragraph in the Schedule Meeting creation page. can you guide me the exact process and exact file location in where i needs to change.

Which version? Do you need text fields?

You can go to below location and add WYSIWYG field and maybe make it readonly in the code:

Admin β†’ Studio β†’ Meetings β†’ Fields β†’ ADD FIELD

Once field created then go to Layout and add it.

Thank you for your reply @rsp . I know how to add new field but i want to edit the template in code level so that i can add a paragraph inisde the Meeting creation page.

I don’t know exactly, how to do it. But, you can try this out:

modules/Meetings/tpls/

You can add your paragraph directly into the HTML structure.

<div class="my-notice">
    <p>Write your paragraph here.</p>
</div>

Do QR&R