- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2019 03:50 AM
Hi All,
I have requirement, I want hide to 'More Information' toggle from the form.
I don't know how but it is exist for current instance(London), now we have upgraded it to Madrid, It is showing for Madrid.
It is showing in London instance as below,
It is showing in Madrid as below,
I want same as London (First screenshot) in Madrid.
Thanks in advance.
Regards,
Abhijit
ServiceNow MVP
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2019 09:43 PM
Go to Service Portal -> Pages and open the page with ID= sc_cat_item.
Add the CSS as shown below
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2019 05:52 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2019 07:45 AM
Hi,
It is platform enhancement so you cant remove toggle button without deactivating the help message.
if your need is to show the message evrytime without clicking the toggle button, check the always expanded check box .
As an alternative you can use g_form.showFieldMsg to show info message below the field but this info will be wiped if there is a value change in variable.
-Satheesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2019 08:07 AM
I guess i dint read it well, If this is on Service portal then yes it should be possible to remove the toggle icon.
The following CSS could be added on the sc_cat_item page to hide the toggle icon and then the Always expanded should be checked to display it. Even if the toggle is hidden, the Label could be still clicked to collapse. The widget would need to be customized further to remove the collapse feature.
.accordion-toggle{
display:none;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2019 08:19 AM
Thanks for the reply,
The solution you have provided here might work but I have to write this for every catalog item and record producer. I want instance level solution like system properties or something like that where If I modify something then it should reflect for all.
Thanks.
Regards,
Abhijit
ServiceNow MVP