Hide "Actions" drop down on knowledge articles in service portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2023 08:04 AM - edited 01-24-2023 08:07 AM
Hi,
There is a requirement to hide "Actions" drop down menu on knowledge article page(esc_kb_article_view) in service portal. Below "css" code worked fine in sandiego and after upgrade to tokyo, its not working.
.dropdown.kb-end-buttons {
display: none;
}
tried below one but no luck
.dropdown.kb-end-buttons {
visibility: hidden;
}
Regards,
Shravani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2023 08:33 PM
Try this
.kb-dropdown-button{
display: none;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2023 07:10 AM
Hey Shruti,
It worked and Actions button was hidden but the favorite icon beside it was different. Earlier(san diego) it was star icon and now(tokyo) it was heart icon with arrow, where can I find this icon configuration as I need to change to star now, was checking in knowledge article content widget and OOB favorite widget.
Regards,
Shravani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2023 03:03 AM
Navigate to Service Portal -> Portals
Check the Quick Start Config field of the portal.
Update the desired values
[{"favorite":{"icon_checked":"fa-star","icon_unchecked":"fa-star-o","color":"primary"}}]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2023 04:32 PM
You might be able to swap the icons out using the content CSS property. Just swap out the value for heart with star.
robert_fauver@cable.comcast.com or robertfauver@gmail.com