Вопрос

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

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top