.home .type_3, .home .type_4 {
display: none;
}
If you go into a community there won’t be a ‘home’ css class so you’ll see image and video posts in there.
To hide all image and video posts everywhere:
.type_3, .type_4 {
display: none;
}
You must log in or register to comment.

