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.
我正在尝试为我的 magento 商店提供此选项。人们会走进商店,他们必须表现出对产品的兴趣。例如,当兴趣数达到 5 时,可以出售产品。
我必须为此创建一个 view2.phtml 并将自定义布局添加到一个类别,以便我可以选择在哪些产品中我需要这个选项。但这怎么能做到呢?有没有什么插件或者方法可以实现?
谢谢
您可以为每个产品添加自定义布局更新(产品->设计)。通过添加类似的规则
<reference name="product.info"> <action method="setTemplate"> <template>catalog/product/view2.phtml</template></action> </reference>
产品页面将是仅针对该单个产品的 view2.phtml。
请注意,最好将此新文件 (view2.phtml) 放在您自己的主题文件夹中,而不是使用基本目录。