How to hide rating and helpful link from article

Prakash_S
Tera Contributor

Can we hide rating and helpful link from article? if yes then how?

1 ACCEPTED SOLUTION

Runjay Patel
Giga Sage

Hi @Prakash_S ,

 

Yes you can set the property to false.

RunjayPatel_0-1735642183175.png

 

-------------------------------------------------------------------------

If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." This not only supports me but also benefits the community.


Regards
Runjay Patel - ServiceNow Solution Architect
YouTube: https://www.youtube.com/@RunjayP
LinkedIn: https://www.linkedin.com/in/runjay

-------------------------------------------------------------------------

 

View solution in original post

5 REPLIES 5

PritamG
Mega Guru

yes, you can hide the rating and helpful link from an article by modifying the widget or UI component.

Edit the widget used for knowledge articles then remove or comment out the html code for rating links. alternativly, use css in the theme to hide them:

use code-

.rating, .helpful-link{

     display: none;

}