Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我们有:
如果我们现在在购物车中选择此自定义选项添加该产品,则该产品的 SKU 将在结帐页面上变为“product-sku-custom-option”。
Magento 有没有办法禁止将自定义选项的 SKU 附加到产品的 SKU 或至少在产品添加到购物车后获取产品的原始 SKU?
经验法则是永远不要接触核心文件。您应该扩展app/code/core/Mage/Catalog/Model/Product/Type/<yourtype>.php并简单地执行此操作:
app/code/core/Mage/Catalog/Model/Product/Type/<yourtype>.php
public function getOptionSku($optionValue, $skuDelimiter) { return ''; }