左侧边栏出现在分组产品页面上
Posted
技术标签:
【中文标题】左侧边栏出现在分组产品页面上【英文标题】:Left sidebar appearing on grouped product page 【发布时间】:2015-06-25 05:05:15 【问题描述】:我的 Magento 网站有一个小错误/问题。 我已经开始制作一些组合产品,但所有组合产品页面都损坏了。 看起来产品页面上出现了一个或两个侧边栏,并将产品信息“挤压”到页面中间。
我正在使用“ultimo”主题。
谁能建议我如何自己尝试解决这个问题?
如果有人能够将我指向正确的文件并建议要修复的代码,我可能可以自己修复它。
Here is the example:
【问题讨论】:
I can probably fix it myself, if someone is able to point me to the correct file and suggest a code to fix.
在实践中,你不会自己修复它。
【参考方案1】:
在我看来,此页面设置为基本模板 3-columns 而不是 2-columns-right。
既然您说它只发生在分组产品中,请查看您的布局 xml 文件中的句柄 PRODUCT_TYPE_grouped
,然后使用此句柄您可能会看到如下内容。
<reference name="root">
<action method="setTemplate"><template>page/3columns</template></action>
</reference>
我猜应该是:
<reference name="root">
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
</reference>
【讨论】:
感谢您的回复。可悲的是,我已经尝试过了,但没有成功。以上是关于左侧边栏出现在分组产品页面上的主要内容,如果未能解决你的问题,请参考以下文章