Use CSS to hide the sticker labels from the archive page
You can hide the new, Home Open, Sold and Leased labels with a line of CSS added to your theme style.css file.

Hide all stickers
body .epl-stickers-wrapper {
display: none;
}
Hide a specific sticker
New
body .epl-stickers-wrapper .new {
display: none;
}
Under Offer
body .epl-stickers-wrapper .under-offer {
display: none;
}
Sold
body .epl-stickers-wrapper .sold {
display: none;
}
Leased
body .epl-stickers-wrapper .leased {
display: none;
}
Open
body .epl-stickers-wrapper .open {
display: none;
}