How to remove creatio's logo and name!

Hi community,

My clients doesn't want any creatio name and logo. Attaching the screenshots please tell me how to remove the creatio name and logo!!

1. on the tab

2. on the right side

3.on the adress bar

 

4. After log in.

5. this version also.

 

It's an urgent requirement please help!!!

 

Many thanks !

Like 0

Like

4 comments
Best reply

In addition to what Olga said about removing the widget on the intro and login pages, you can change the "Creatio" on the browser tab by changing the "Product name" system setting.

You can change the icon as well if you'd like using the "Favicon" system setting.

To hide the version, you'd likely need to add some global CSS (See https://customerfx.com/article/adding-custom-css-style-sheets-in-bpmonl… - add to BootstrapModulesV2 to hide .configuration-version-label { display:none; } ) - however that will only change it in the application, out of luck to hide it on the login screen.

As far as changing the name in the URL, if you're being hosted by creatio.com, you're probably out of luck with that as well, not sure if adding a CNAME on some other domain would work, but I don't think so. Otherwise, you'd have to self-host.

 

Ryan

Hello!

 

To remove the Creatio advertisement on the Login page and on the Intro page you need to uncheck the "Show widget on login page" and the "Show widget on intro page" system settings and clear your browser's cache and cookies.

 

Best regards,

Olga. 

In addition to what Olga said about removing the widget on the intro and login pages, you can change the "Creatio" on the browser tab by changing the "Product name" system setting.

You can change the icon as well if you'd like using the "Favicon" system setting.

To hide the version, you'd likely need to add some global CSS (See https://customerfx.com/article/adding-custom-css-style-sheets-in-bpmonl… - add to BootstrapModulesV2 to hide .configuration-version-label { display:none; } ) - however that will only change it in the application, out of luck to hide it on the login screen.

As far as changing the name in the URL, if you're being hosted by creatio.com, you're probably out of luck with that as well, not sure if adding a CNAME on some other domain would work, but I don't think so. Otherwise, you'd have to self-host.

 

Ryan

Hi Ryan,

 

Wow! Thank you very much for your help. It works.

 

I am left with below one only.

 

Just after login, how can I remove all the advertisements which you can see in the below screenshot like a marketplace, tutorials, app store, getting started, google play, and Facebook, twitter links?

 

Looking forward to your reply!

 

 

Akshit,

 

In order to implement the required functionality please do the following:

1. Create a replacing client module for the “BaseIntroPageSchema” schema. Please find the information about how to do it in the article by the link below:

 

https://academy.creatio.com/documents/technic-sdk/7-16/module-types-and-their-specificities

 

2. Add the following code to this schema:

 

define("BaseIntroPageSchema", [], function(){

                return {

                                diff: [

                                                {

                                                                "operation": "remove",

                                                                "name": "WidgetContainerWrap",

                                                },

                                                {

                                                                "operation": "remove",

                                                                "name": "marketPalceIframe",

                                                },

                                                {

                                                                "operation": "remove",

                                                                "name": "LinksContainer",

                                                }

                                ]             

                };            

});

 

Please enjoy the result:

 

 

Best regards,

Norton

Show all comments