How to remove post meta info - author, date etc. in category list

I’m using breadcrumbs and therefore don’t need data on author, date, category in category lists.
How do I remove these data?
(digitalan.dk/category/orden/spurvefugle/)

You can remove post author, date and category list from entry meta for Travelify theme by adding this simple CSS to Appearance >> Theme Options >> Other >> Custom CSS.

.archive .entry-meta {
    display: none;
}

This will leave entry meta in place for single post view, blog and other places where it appears. If you want to remove it as well please let me know and I will give you other suggestions.