Disable/change AI-generated summary on mobile

AI-generated summary of comments is too intrusive, taking up too much space on mobile. Could you add an option to disable it on mobile, or rethink how it is shown?

1 Like

Hey there and welcome aboard, @Jakub_Gonet :waving_hand:

Thank you for the feedback!

I agree that it would be awesome to have this option in the settings. We’ll try to consider this opportunity in the future, especially if more users upvote it.

As for now, you can hide the AI Summary on mobile using this code in the Custom CSS field on the Style tab of your widget’s settings:

@media(max-width: 480px) {
  .es-review-container:has(.es-ai-summary-content-container) {
    width: 0;
    height: 0;
    margin-bottom: -20px;
  }
}
2 Likes