批量更新 Magento 字段以“使用默认值”

发布于 2024-10-10 08:06:11 字数 97 浏览 3 评论 0原文

有没有一种方法可以将特定商店视图的一堆magento产品重置回“使用默认值”似乎一旦您设置了商店特定数据,就没有简单的方法可以取消设置以便它接收默认数据。这导致我必须进行多次导入。

Is there a way that I can reset a bunch of magento products for a particular store view back to "Use Default Value" It seems once you set the store specific data there is no easy way to unset so that it receives the default data. This is causing me to have to do multiple imports.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

波浪屿的海角声 2024-10-17 08:06:11

我知道你想改变“一堆产品”......
仅针对有人想要摆脱所有产品的商店视图特定值的用例:
只需将属性的范围从“Store View”循环到“Global”,然后再次返回“Store View”即可。

I know you want to change "a bunch of products" ...
Just for the usecase someone want to get rid of the store-view-specific values for ALL products:
Just cycle the scope of the attribute from 'Store View' to 'Global' an back to 'Store View' again.

记忆消瘦 2024-10-17 08:06:11

只需从product_entity_[attirubte_type]中删除product_id、attribute_id和store_id的记录即可。

Just remove record from product_entity_[attirubte_type] for the product_id, attribute_id and store_id.

一腔孤↑勇 2024-10-17 08:06:11

您可以使用:

  • core_block_abstract_to_html_before adminhtml 事件为管理员批量更新表单中的每个属性添加所需的复选框;
  • 然后使用 catalog_product_attribute_update_before 事件从特定商店视图的 EAV 表中删除值,仅适用于那些具有您之前通过 core_block_abstract_to_html_before 设置为选中状态。

原始答案:https://magento.stackexchange.com/a/45229/16724

You can use:

  • core_block_abstract_to_html_before adminhtml event to add the required checkboxes for every attribute in admin mass update form;
  • then catalog_product_attribute_update_before event to delete the values from the EAV tables for a specific store view, only for those attributes that have the checkbox you injected earlier with core_block_abstract_to_html_before set as checked.

Original answer: https://magento.stackexchange.com/a/45229/16724

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