Hi All,
My name is Vincent and i need some help!
Is there an easy way to remove the starting from price a grouped product? (just show no price at the category page)
it looks kinda silly when the whole list of products are required with a total price well over a 1000 euro and than a small connector piece is like 2 euros
Thanks
I'm also looking for the solution for this blog. Can anyone please help!
Hello @vctrade
<div class="price-box"> <?php if ($minProduct && \Magento\Framework\Pricing\Render::ZONE_ITEM_VIEW != $block->getZone()) : ?> <p class="minimal-price"> <span class="price-label"><?= $block->escapeHtml(__('Starting at')) ?></span><?= $amountRender->toHtml() ?> </p> <?php endif ?> </div>
<?php if ($this->getRequest()->getFullActionName() != 'catalog_category_view'): ?> <div class="price-box"> <?php if ($minProduct && \Magento\Framework\Pricing\Render::ZONE_ITEM_VIEW != $block->getZone()) : ?> <p class="minimal-price"> <span class="price-label"><?= $block->escapeHtml(__('Starting at')) ?></span><?= $amountRender->toHtml() ?> </p> <?php endif ?> </div> <?php endif; ?>