Changing Custom Module Tab/Panel Name in SuiteCRM

Hello everyone,

I’m currently using SuiteCRM version 7.14.5 and would like to change the name of my custom module tab/panel from “Basic.” Is this possible?

If so, could someone please guide me on how to do this programmatically?

Thank you!

Hello everyone,

I wanted to share that I found the solution to changing the tab/panel name from “Basic” in SuiteCRM 7.14.5!

To change it programmatically for a specific module :

  • Edit the language file for your module:

    Path: custom/modules/<YourModule>/language/en_us.lang.php

  • In the $mod_strings array, add the following line:

    ‘DEFAULT’ => ‘<Your Tab/Panel Name>’,

  • After saving the changes, perform a “Repair and Rebuild” in the admin panel.

I hope this helps others!

2 Likes