To suitcrm install the Spanish language package.
In the contacts module it shows me the field phone_movil as “MOVIL” and I need to change it to “TELEFONO CELULAR”.
Find the file in the path root /cache/modules/contacts/language/es_ES.lang.php and modify it.
The problem is when I execute the repair option, since it overwrites the changes they make.
Now I have the following doubt, I need to change the DetailView.tpl of the contacts module.
This file is in suitecrm/cache/themes/suiteP/modules/contacts/DetailView.tpl
Where would you copy the file so you do not lose the changes?
Copy the DetailView.tpl file to suitecrm/custom/modules/contacts/DetailView.tpl
But it does not work.
Well, you’re not supposed to be doing anything on the cache folder. It’s just a cache, it can change any time…
But I can’t find a file called
modules/Contacts/DetailView.tpl
in my system.
My guess is that it’s simply this file
include/DetailView/DetailView.tpl
that gets instantiated for each module that you use. Does that file look similar to the one you’re editing? If not, try to find one that does, but not in the cache folder.
I have searched for some file that has a structure similar to the file that is in cache, but I have not found it.
So I assume that the DetailView.tpl has to be a generic file that is used in all the modules.
I solve the problem I had with the images.
In suitecrm/include/SugarFields/Fields/ Are all the types of fields that suitecrm handles. For each type there is a folder containing the default code for them.
I overwritten the code of type IMAGE and that solves my problem.
With the subject of google maps I am still testing to find some solution. Also I have seen that you can add custom types to suitecrm. This could be another solution to what I am doing, although for the moment it has not worked for me.