Dynamically show Most Viewed Posts

Your lucky day! :tada:

Thank @marcioferlan, he helpes me a lot and helped me to find this!

Obs:

This :nth-of-type (1) has to match the ordinal of the component that represents the inline, you know? If there are other components above the first inline, this ordinal has to be adjusted.

<style>
div[id*='screenScrollView'] > div > div:nth-of-type(1) button[data-test='see-all'] {
  display: none;
}
</style>
3 Likes