문제

In magento2 - I want to remove price from category page ( product listing ) in magento enterprise version.

도움이 되었습니까?

해결책

app/design/frontend/vendor/themename/Magento_Catalog/templates/product/list.phtml

<?php  //echo $block->getProductPrice($_product) ?>

comment this line...

Note : if you not find file above path than copy from

vendor/magento/module-catalog/view/frontend/templates/product/list.phtml

to

app/design/frontend/vendor/themename/Magento_Catalog/templates/product/list.phtml

다른 팁

We use a different solution with applying a CSS-style:

div.products.wrapper.grid.products-grid div.price-box.price-final_price, /*pricing in categories*/
{
    display: none !important;
}

We use this way to avoid problems with the updated list.phtml file by further Magento updates and in our case hiding price is only a "nice to have" but not business-critical.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top