All HowTo's

Remove Adverts from vTigerCRM (2019)

vTigerCRM is an excellent opensource (free to use) CRM that I use. However, it does have a small advert to help promote the work of 3rd party developers contributing the to marketplace. It’s there for a good reason but i fully understand why some people don’t want it there.

You can remove the adverts by editing the file:

modules/ExtensionStore/ExtensionStore.js

Tip: This file is in the document root. If you can’t find it, search for it.

and replacing this:

    125 jQuery(document).ready(function () {
    126         var moduleName = app.getModuleName();
    127         if (moduleName == 'Home') {
    128               var instance = new ExtensionStore_ExtensionStore_Js();
    129               instance.registerEvents();
    130         }

with this:

    125 jQuery(document).ready(function () {
    126         var moduleName = app.getModuleName();
    127         if (moduleName == 'Home') {
    128         //      var instance = new ExtensionStore_ExtensionStore_Js();
    129         //      instance.registerEvents();
    130         }

The adverts will not be displaying any more.

Leave a Reply

Your email address will not be published. Required fields are marked *