I hid a tag in CSS only in the first part of the home but I can’t hide the posts in latest.
Also, there are some posts missing to complete the first part of the home page.
How can I do it?
.home-template .tag-racconti {
display: none;
}
I hid a tag in CSS only in the first part of the home but I can’t hide the posts in latest.
Also, there are some posts missing to complete the first part of the home page.
How can I do it?
.home-template .tag-racconti {
display: none;
}
Those posts are missing because you set ‘display: none’. That’s why they’re missing. :) Or possibly you need to mark additional posts as ‘featured’. Sorry, I don’t have Source open right now.
It will also be possible to hide posts in the lower section, but you’re going to have the same problem, that hidden posts are not replaced with anything, so you’ll have gaps in your layout. For the bottom part, it might be better to exclude those posts by uploading a routes.yaml file that blocks them from the /: route. For the top part, you’d have to edit the theme, as Source doesn’t respect routing.