How to show price (or sth else) in shopping opions when browsing a category?
Answer Posted / Priyanka Kushwaha
To show product prices in Magento while browsing categories, you need to use the following PHP code in your custom block or template file: `<?php echo $block->getProductPrice($_product); ?>`. Here, `$_product` is the Magento product object. This code will display the final price of the product.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers