Olive – Remove Recipe Stars and Snippets From Title Area

To remove the snippets and/or star ratings from the title area on single posts, you'll need to add a little CSS.
How to Remove the Stars
From your dashboard, go to Appearance > Customize > Additional CSS
Copy and paste the following code snippet:
.entry-header .wprm-recipe-rating {
display: none;
}
How to Remove the Snippet Buttons
From your dashboard, go to Appearance > Customize > Additional CSS
Copy and paste the following code snippet:
.hero-container .recipe-header-snippet {
display: none;
}
If you're adding both of the code snippets, it will look like this:
.entry-header .wprm-recipe-rating {
display: none;
}
.hero-container .recipe-header-snippet {
display: none;
}