在views app/views/listings/show.haml
中,我有以下代码:
- if @listing.price
.row
.col-12
.listing-price
%span.listing-price-amount
= humanized_money_with_symbol(@listing.price).upcase
- with_quantity_text(@current_community, @listing) do |text|
%span.listing-price-quantity
= text
在产品展示页面上,它会显示以下文字:
最小订单(数量)
如何将此文本更改为"最小订单"?
答案 0 :(得分:0)
根据您自定义的Sharetribe的数量,您应该在/config/locales/en.yml
下的listings.show.price.per_quantity_unit
下找到此字符串。
with_quantity_text
结束here,并使用I18n来获取字符串。 YMMV,如果你已经在这里定制了任何助手。