How to remove the annoying notification free trial from Rating-Widget: Star Review System plugin
Add this code to your theme functions:
function remove_rating_widget_free_trial_notification(){
echo '
<style>
.fs-notice.promotion {
display: none !important;
}
</style>';}
add_action( 'admin_head', 'remove_rating_widget_free_trial_notification', 111);