Pregunta

I am working with Magento 2.1.3 and i want to add some custom text before product's price in product details page.

¿Fue útil?

Solución

You need to make changes in price-box.js which is placed at

/vendor/magento/module-catalog/view/base/web/js/price-box.js

Make sure you take this js in your custom theme folder and make changes on line number 22 near priceTemplate: '<span class="price"><%- data.formatted %></span>'

Add your custom text after <span class="price">

Some thing like this,

priceTemplate: '<span class="price">Price - <%- data.formatted %></span>'

Done.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top