Enable or Disable Rating¶
The star rating is enabled by default. You can disable the star rating by configuring the defaultTheme.js file.
The defaultTheme.js file has all the parameters defining the look and feel of the developer portal. To learn more about defaultTheme.js refer here.
- 
Open the <API-M_HOME>/repository/deployment/server/webapps/devportal/src/main/webapp/site/public/theme/defaultTheme.jsfile in a text editor and set thethemes.light.custom.social.showRatingattribute tofalseif you want to disable the star rating.const Configurations = { custom: { social: { showRating: false, }, }, };
- 
Refresh the Developer Portal to view the changes.