规则%s可在qtyincrements.phtml中以%s的增量购买,Magento中显示产品名称和数量。如果您删除第一个%s,因此只有%可以以%s的增量购买,它会在%s符号处显示名称。所以你需要两个标志的数量。
有没有办法只调用数量。我们希望得到:该产品可以按......的增量购买。
答案 0 :(得分:1)
这只是PHP’s sprintf function的包装器。如果您只想显示增量数量,请从函数参数中删除$this->getProductName()
并仅使用一个%s重新编写字符串。一个例子是:$this->__('This product is available for purchase in increments of %s', $this->getProductQtyIncrements())