在Magento 2中,我必须将final_price.phtml文件重写到主题中。
vendor/magento/module-configurable-product/view/base/templates/product/price/final_price.phtml我尝试用相同的文件夹结构在主题中重写如下
/app/design/frontend/Company/Theme/Magento_ConfigurableProduct/templates/Product/Price/final_price.phtml 我也试过了模块。但我得到了这个错误
请帮忙谢谢
发布于 2018-10-26 05:33:28
我想你犯了一些大写小错误
您必须更新文件路径。
/app/design/frontend/Company/Theme/Magento_ConfigurableProduct/templates/Product/Price/final_price.phtml
至
/app/design/frontend/Company/Theme/Magento_ConfigurableProduct/templates/product/price/final_price.phtml
https://stackoverflow.com/questions/52971015
复制相似问题