更改 Magento 中新产品网格小部件的列数

发布于 2024-10-05 06:11:45 字数 123 浏览 5 评论 0原文

如何更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那支青花 2024-10-12 06:11:45

如果您使用 CMS 页面内容作为小部件容器:

这非常简单,只需在 {{widget type="widget_type"parameter1="value" column_count="your_value"}} 指令中添加 column_count 参数即可。

顺便说一下,widget 是一个带有一些预配置的标准 Magento 块,因此您可以轻松地在 {{widget}} 指令中指定任何块参数。

如果您想使用小部件功能,您可以使用以下 XML 在自定义模块中创建 etc/widget.xml

<widgets>
   <new_products>
       <parameters>
           <column_count translate="label">
               <required>1</required>
               <visible>1</visible>
               <value>5</value> <!-- default parameter value -->
               <label>The number of Products in a row</label>
               <type>text</type>
           </column_count>
       </parameters>
   </new_products>
</widgets>

它将向小部件表单添加一个新字段,管理员用户将能够在其中输入单个产品行中的产品数量

享受 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:

<widgets>
   <new_products>
       <parameters>
           <column_count translate="label">
               <required>1</required>
               <visible>1</visible>
               <value>5</value> <!-- default parameter value -->
               <label>The number of Products in a row</label>
               <type>text</type>
           </column_count>
       </parameters>
   </new_products>
</widgets>

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 =)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文