更改 Magento 中新产品网格小部件的列数
如何更改 Magento 中新产品网格小部件的列数?
我知道我必须以某种方式更新 layout.xml
文件,但我不确定要插入什么。或者我是否必须在包含小部件的 CMS 页面中进行布局更新?
How do I change the number of columns for the New Products grid widget in Magento?
I know I have to update the layout.xml
file somehow but I'm not sure what to insert.Or maybe do I have to do a layout update in the CMS pages that include the widget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 CMS 页面内容作为小部件容器:
这非常简单,只需在
{{widget type="widget_type"parameter1="value" column_count="your_value"}}
指令中添加 column_count 参数即可。顺便说一下,widget 是一个带有一些预配置的标准 Magento 块,因此您可以轻松地在
{{widget}}
指令中指定任何块参数。如果您想使用小部件功能,您可以使用以下 XML 在自定义模块中创建
etc/widget.xml
:它将向小部件表单添加一个新字段,管理员用户将能够在其中输入单个产品行中的产品数量
享受 Magento 的乐趣 =)
If you are using CMS page content as widget container:
It is pretty simple, just add column_count parameter in
{{widget type="widget_type" parameter1="value" column_count="your_value"}}
directive.By the way widget it is a standard Magento block with some pre-configurations, so you can easily specify any block parameter within
{{widget}}
directive.If you want to use Widget functionality, you can create
etc/widget.xml
in your custom module with this XML:It will add a new field to widget form, where an admin user will be able to enter the number of products in a single products row
Have fun with Magento =)