1. Google Map Display issue on Web Interface
If you are using Google API than there is certain fix need to be done at file level to have Google Maps to be display correctly on vTiger CRM web Interface.
Please Follow steps below.
(Notes : Kindly take a backup of your file before change the code.)
File Path : libraries/csrf-magic/csrf-magic.js
- Change in line no : 11 and write as below
var bhsurl = ”;
- Change in line no : 31 and write as below
bhsurl=url;
- Change in line no : 44 and 46 write as below
var substring = “google”;var index = bhsurl.includes(substring);
- Change in line no from 58 to 62 write as below
if (index) {return this.csrf_send(data);}else{return this.csrf_send(prepend + data);}