Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
How can we remove the Vtiger CRM side menu
We do not advise to completely remove the side menu as it can cause UI issues. The way around is to disable the button (it does not click anything). That way the UI remains the same and does not need to be fixed.
We can fix it for you, but it will be a billable task and will cost $350.
Description
How to remove side menu from the CRM
Moved by
Chris (March 24, 2024)
How can we check the current PHP version of the CRM system?
You can find the PHP version of the CRM system by using the following two methods
Using the CRM URL, add phpinfo.php to the CRM URL will take you to the page where you can see the PHP version
e.g. http://yourcrm_path/phpinfo.php
Through SSH, run the following command and it will show the current PHP version of the system
Command: php -v
Description
How to check the PHP version of your CRM system?
Moved by
Salman (March 08, 2024)
Can we find a custom field number in the CRM by its name? and can we find the name of the field if we know the field number?
Yes, you can find the custom field name by its field number and field number by its field name in the CRM system
Let's check it with an example
User has a field number of a custom field created in the project task module (i.e. CF_1805) and wants to search for the related field name. Here is process how they can find it
Go to the module, in this case it is project tasks and open new record creation window
2. Right click on screen and choose "Inspect" option
The following window will appear
3. Hover mouse cursor to the element section and press CTRL+F, a search bar will start appearing at the bottom of the window
4. Type in the field number in the search bar "CF_1805" and press enter. Keep hitting enter until you see result similar to the one shown in below image. Once you hover mouse cursor on the result, it will highlight the field in upper half window
This shows that the name of the field is "Engagement specialist"
Follow the above mentioned step up to step 3. After that, search the field name in the search bar and in the result it will show the field number. Here is a screenshot for reference
Description
How to find a custom field number by its name in CRM and vice versa
Moved by
Chris (August 24, 2024)
Charts feature of the Project module does not populate the chart even though all the requirements are fulfilled
This issue is the default vTiger CRM issue that it does not populate the chart when the chart button is clicked
You have to refresh the page chart page only then it will populate the chart and diagram view will be called up
Description
Charts do not populate in the Projects module
Moved by
Chris (March 27, 2024)
Is there any security issue if VTiger is running on older php versions
Kindly, make sure to take the following precautionary measures (sorted by the most important first) to make your CRM system more secure
Do not easy to guess user/pass: admin/admin, test/test, demo/demo, etc..
Deactivate any test/developer/temporary users.
Not use the same 'admin' password across multiple instances
Do not use your own email to test MailConverter, MailManager, Outgoing EMail Server. (This is extremely important. If someone breaches your vtiger instance && there is an email account, they can download/search messages for certain strings to locate other instances).
Have proper .htaccess restrictions, where folders cannot be viewed
Add 2-FA through Cloudflare
If you had #6 added (2faCloudflaree), everything else would not matter, because Cloudflare 2fa works as a VPN without VPN's usability issues.
Description
Steps to fortify VTiger security
Moved by
Chris (March 02, 2024)
This articles explains how decimal places works in Vtiger
Here are some general rules regarding the decimal place configuration in Vtiger CRM
The settings in the user preference specifically and only apply to "Currency" field.
2. The settings for Decimal fields are done in the "Fields and Layout Editor" and the "User Preferences" settings do not apply (as explained in #1)
3. Truncate Trailing zero setting is also applied only to the Currency field.
4. All of the above changes are only UI related. The database has the complete value and neither of these settings apply to the DB settings
Description
This articles explains how decimal places works in Vtiger
Moved by
Chris (June 20, 2024)
Can you add my tax number or VAT on my invoices for the Tax purposes? If yes how can it be added to the past invoices?
For the Tax ID, you can give us the ID and we can add them to your account. However, all of above the information will reflect in future invoice.
For past invoices (In critical situations): The invoices that have been already generated, you can send them over to us and we will update them for you accordingly
Extension
Billing
Description
Can I add TAX filer number on the invoice?
Moved by
Chris (August 26, 2024)
How can a user move a module from one category to a different category in Vtiger?
Main menu configuration allows user to move a module up and down in the que, but does not allow to move one module from one section to another, here is a video for clarification
It can be done through database
Make the changes in the table: vtiger_app2tab
22 is the tabid for the "Sales Order" module in our example
Description
How to move a module from one category to another
Moved by
Chris (May 20,2024)
How can a user add or remove columns from a related module view?
For example, user want to remove the primary email column when accessing the contacts through organizations as a related module. Here is a screenshot for further clarification.
You can remove it by going to the properties of that field using Module layout and Fields
Here is a video showing how you can remove a column from a related module view
Here is a video showing how you can add a column from a related module view
Extension
VTiger default
Description
How to add and remove columns of a related module
Moved by
Chris (September 02, 2024)
Does Vtiger allow configuring different tax regions, if yes then how?
Yes, Vtiger CRM allows configuring different tax regions using the tax management
Using this feature you can configure different tax regions and calculate the tax in quotes, invoices, sales order, purchase order
Here is a complete video showing how can you configure different tax regions and how can you use it
Extension
VTiger default
Description
Configuring Tax Region and using it in Vtiger
Moved by
Salman (September 02, 2024)
What is the length of the description field in opportunities and can I increase it?
The default length of the description field in the opportunities is 16,777,215 characters, as it is a medium text field and it is good enough for the normal usage
Check the following video to see the visual representation of how many characters a description field in opportunities can hold
Still if you want to increase its length, that can also be done using the following
ALTER TABLE vtiger_crmentity
MODIFY COLUMN description
longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL ; query
Using the query the length of the description field in the opportunities can be increased to 4,294,967,295 characters
Sometimes user want to search the records, except the records that are assigned to a specific user only
How can a user search records except the records assigned to a specific user?
Users can use the conditional search and add the condition to not include the records assigned to a specific user
In this example, we will search all the contacts, except the contacts that are assigned to user named as "Borg Dugget"
Now, we will set the condition to exclude the tickets assigned to user Cher Hugill
The search will show all the tickets except the tickets assigned to Cher Hugill
Percentage type fields do not show decimal values and round it off
It is a generic issue, Sometimes saving a records shows an error instead of saving the record
Sometimes saving a records shows an error instead of saving the record
Here is a screenshot of the error faced while saving an opportunity
This issue is caused when the sql_mode is set to STRICT
To resolve this issue. Kindly, disable the sql_mode STRICT. This can be done by editing the Mysql Config file
Description
It is a generic issue, Sometimes saving a records shows an error instead of saving the record
Moved by
Chris (11 Nov 2024)
How to change the privilege of a field, whose privilege button is not moving (transparent)
User want to make a field from write to read only, but fails to do so. Because, the privilege switch button of a field cannot be moved and is transparent. As shown in the image
The reason behind this behavior of the switch button is, that the field for which user is trying to change the privilege is a mandatory field. If a field is mandatory then its privilege cannot be changed
To solve this problem, go to layout editor and uncheck the mandatory field feature for that field
Once done now, you can change the privilege for that field
Once done, user can go to the module layout and fields and change the make the field mandatory
Email will be sent to everyone in the follow list, except the updater, when record is updated (that is, for every little update or just when record is edited and saved button clicked?) Email is sent to followers, except the updater: Correct. Email is sent ONLY when at least ONE field has changed. Email is NOT sent when none of the fields have changed (except "Modified Time/Modified By) Here is an example: for 1 email will not be sent and for 2 email will be sent
Follow feature not sending emails to the followers? It is a standard Vtiger issue and we can resolve it for you as per incident support
Can a user use “follow list” on workflows so he/she can send notifications to followers on time interval basis?
Currently this is not supported in Standard Vtiger. But, we can customize this feature for you this feature.
When doing multiple updates on a record within, let’s say, one to five minutes interval, will the followers receive one email for each update or a single email comprising the updates made since the last cron job execution?
The email is sent ON SAVE, meaning if you edit+save records 2x times within 1 minute, you will get 2x emails
Example:
We can add interval based notifications. but, it will be a billable support and will cost $750.
The assigned user do not receive notifications in the same way the followers do, but only through workflows. Right?
Yes, the assigned to user do not receive notification in same manner as followers. But, we can customize this feature for you where the assigned to user will be treated as follower as well, but it will be a billable task and will cost $500
Can we automatically add some of the users in the follow list upon creation of a record?
This is not available in standard Vtiger, however we can customize this feature for $400
Can all the participants of a group (e.g. Sales team) added to the followers list once a new record is created, while the user who created the record is not part of that group?
Yes, this can be done through customization, it will cost $350
A limitation of Vtiger CRM workflows is that it does not allow to create more than 10 scheduled workflows. How to resolve it?
VTiger CRM limits the scheduled workflows to 10 only, but it can be increased easily. It was done intentionally, to limit the resource consumption by the CRM system
Following are the two methods using which you can increase the scheduled workflow limit
Go to
Make the changes in line 113
Go to config.inc.php. and set the limit as per your requirement, for example in the below command we want to increase it to 15
You can set different Default Terms and Condition For Different Modules. This feature save the hassle of the user to change the terms and condition every time for different module.
Go to the “Menu” and select “CRM Settings“.
Under “Inventory” select “Terms and Conditions” and then select the “Module” and write the terms and condition in the space given below.
Here you can see the the “Terms and Conditions” while creating the new “Invoice“.
Note:
Unlike all other fields where the default value is set in Field Editor – this field has it’s own area for default value
Description
How to increase the scheduled workflow limit (by default its 10) in Vtiger CRM
Moved by
Chris (September 23, 2024)
Description
Change Default Terms And Conditions For Invoice/Quote/Sales And Purchase Order In VTiger
Moved By
Chris (Jan 10, 2025)
Description
How the new ticket is always assigned to a specific group by default
Created by
Chris (13 Jan, 2025)
Description
How to remove the user from the Vtiger marketplace login
Moved by
Chris (Jan 02, 2025)
This article focuses on some of the main reasons that cause CRM system to be slow and What we can do in this regard
With the increase of database size with the passage of time
Too many records in a module/related module
Too many custom permissions/sharing rules
Too many active users in CRM
Server specs are lower than required
Customizations done to the CRM in inappropriate way
Too many 3rd party modules installed
Too many external integrations done that are syncing data in a shorter duration.
Several others
Login screen (before login) takes too long
After login - landing to Dashboard
After login - landing to a module’s listview
Opening a specific module’s listview
Opening listview of all modules
Opening a record’s summary view
Opening a record’s detail view
Going to edit mode of a record
Saving a record
Opening a report
Opening a 3rd party module
In VTiger, You can Remove Modules for related module list. This feature helps user to remove the unwanted modules from the related module list to keep it small and simple.
Go to the “Menu” and select “CRM Settings“
Under “Module Management” select “Module Layout And Fields“. Select the “Module” and click on the “Relationship” tab and than you can remove the relationship of the module by clicking on the “X” sign on the right side. You can also rearrange the by using drag and drop.
You can also add the “Module” again after deleting it.
Description
How to Remove Certain Modules from Related Module List
Moved by
Chris (10 Jan, 2025)
Currently, in VTiger, when you open any module and try to add a related module, it opens a quick create popup, instead of going to the full form. Some of the companies/users do not prefer that outcome and want to move to full form straight.
How to remove Quick Create feature for any module? The aim is to remove a specific module from the Quick Create list as well as when adding as a new related record to another module.
Go to add this: modules/YOUR_MODULE/models/Module.php
Add following function to your custom_module/Models/Module.php
Description
How to Remove Quick Create For Individual Standard & Custom Modules In VTiger
Moved by
Chris (09, Jan 2025)
Can we turn off the counter label from the related module?
Yes, you can turn off the counter label from the related module. Below, you will find the solution
File: ../vtigercrm/modules/Vtiger/actions/RelatedRecordsAjax.php
Look for function getRelatedRecordsCount.
Add highlighted code as in the screenshot:
Description
How to turn off the counter label from the related modules
Topic
Miscellaneous Vtiger Issues
Created By
Chris (Jan 16, 2025)
Description
Why can't we seem to find the add mailbox button in the mail converter?
Topic
Miscellaneous vTiger issues
Created by
Chris (13 Jan, 2025)