We sacrifice by not doing any other technology, so that you get the best of Magento.

We sacrifice by not doing any other technology, so that you get the best of Magento.

    If you want to display product final price after quantity box then you have to follow below instruction.

    You need to overwrite addtocart.phtml file in your theme.

    Then put below code after quantity input.

    <?php 
    echo $this->getLayout()
     ->createBlock('MagentoCatalogPricingRender',
     "product.price.final.clone",
     [
     'data' => [
     'price_render' => 'product.price.render.default',
     'price_type_code' => 'final_price',
     'zone' => 'item_view'
     ]
     ]
     )
     ->toHtml();
    ?>

    Anything more? Nopes, that’s it. Try the given code and you will able to display product price programmatically.

    field_5bfb909c5ccae

      Get a Free Quote