Hoe verwijder ik afbeeldingen en tags uit de nieuwste in categorieën

i want to remove from here:
My web site .com/categories

From → Latests remove the avatars, tags, categories, just put the titule

I’m sorry, could you elaborate on this in more detail?

to hide avatars, you can probably do something like this in common css of a theme or theme component:

.topic-list .posters {
    visibility: hidden;
}

and I assume you mean the category and tag drop down selectors - try this:

.combo-box.tag-drop, 
.combo-box.category-drop {
    display: none;
}
2 likes