更改odoo电子商务网站中的按钮字符串
Change the string of button in odoo eCommerce website
I want to change string on Add to Cart button
我想更改“添加到购物车”按钮上的标签字符串。在附图中
谢谢
使用Xpath
定位替换成这样:
<xpath expr="//a[@id='add_to_cart']" position="replace">
<a id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit" href="#">Your custom text</a>
</xpath>
I want to change string on Add to Cart button
我想更改“添加到购物车”按钮上的标签字符串。在附图中 谢谢
使用Xpath
定位替换成这样:
<xpath expr="//a[@id='add_to_cart']" position="replace">
<a id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit" href="#">Your custom text</a>
</xpath>