Magento 2 Price – Disable ‘As Low As’ Price in Magento 2.1

magento-2.1priceproduct-grid

I am working on a Magento 2.1.7 shop.

On my category pages, I need to disable "As low as" price, as it ruins the products grid.

enter image description here

I want to hide it on configurable and non-configurable products, but only on the category pages. If possible, not with CSS (display: none).

What is the easiest and/or the most appropriate way to do this?

Best Answer

I have solved it with a piece of less/css:

.product-items .minimal-price-link {
  display: none;
}