I'm trying to filter the results on the category page to only display 'Grouped' Products.
I'm editing the catalog/view/frontend/templates/product/list.phtml file.
$_productCollection = $block->getLoadedProductCollection();
$_productCollection->addAttributeToFilter('type_id', array('eq' => 'grouped'));
Is this the correct file to edit?