Delete main page

Hello all!

How can i delete o remove the standard tab on the main page?

Hi,

What do you mean by the “standard tab”?

If you’re referring to the “SuiteCRM Dashboard” tab, I don’t think you can remove this with the functionality that SuiteCRM Provides out of the box.

If you’re referring to the individual dashlets, (i.e: Discover SuiteCRM), you can remove these by clicking the “X” Icon on the top-right of the dashlet.

Hello John!

I mean about this tab

Hey all!

I still waiting for suggestions…

We don’t want to see the “Suitecrm - main page” tab on a home screen… can i rename that tab?

1 Like

If you are happy just with modifying the text “Suite - основная страница” with something more suitable for your needs you could try to create a file called
ru_ru.yourcustomlabels.php
(the part “yourcustomlabels” can be modified with any name that you prefer)

and inside the file you should write:

<php

$app_strings['LBL_SUITE_DASHBOARD'] = 'Suite - основная страница';

modifying the part between the two single quotes ( ‘Suite - основная страница’) with the text that you prefer.

once done you should copy the file, making sure that you do not overwrite any other file with the same name (in that case you should name it in a different way) in the folder: custom/Extension/application/Ext/language/

Once done run Quick repair and rebuild and your string should take precedence to the old one.

Please note that, if there are already other files inside the above mentioned folder it may be possible that one of those files renames this label and, if it is processed after yours, your modification may not be seen. In that case you should find which of the files modifies the label and either delete the modification or modify the label within that file.

Please note also that, when you run Quick repair and rebuild, the system will create a file called ru_ru.lang.ext.php containing all the strings including yours.
Additionally, you will probably see a file called ru_ru.suitecrm.php which modifies this label.
I don’t know the processing order when building the file ru_ru.lang.ext.php so, before modifying ru_ru.suitecrm.php you could try using different filenames hoping that they are processed in alphabetical order.
Note that, if you modify any of the already exixting files, your modification may not be upgrade safe.
Always back up your entire folder and files structure as well as your database.

1 Like

amariussi, it is awesome!! Thanks! :woohoo:

And one more question. How can i make one column on the main page instead of 2?

Hi,

You should be able to do this by making the following changes:

in the file: /custom/modules/Home/index.php

at line 192, (Above the line that begins with $numCols), enter the code:

$pages[0]['numColumns'] = '1';

and in the file: /custom/include/MySugar/retrieve_dash_page.php

at line 201, (Again, above the line that begins with $numCols), enter the code:

$pages[0]['numColumns'] = '1';

Run a Quick Repair and Rebuild in your CRM, clear your browser cache, The Main Dashboard should be 1 column.

I am not certain as to how upgrade safe this will be, but as it is in /custom/ it will most likely be.

1 Like

amariussi, John, thank you guys! :woohoo:

It’s all i need!)))

suite crm 8 correct:

/public/legacy/modules/Home/index.php :180
$pages[0][‘numColumns’] = ‘1’;
and
Admin → Users → Administrator → Reset Homepage