English 中文(简体)
Magento的每家商店有不同的SKU。
原标题:Different SKUs per store in Magento

如果我想获得一个特定产品的不同SKU的运行功能,我必须做些什么?

据悉,我有不同的店铺,如男子的鞋子。

Now, I want to define the SKU in the men s store as mens_shoes_cnclog, and in the women s store as womens_shoes_cnclog. Here I m handling one website, and two stores. So, how can I define different skus based on store name?

我试图推翻<代码>saveAction() 方法Catalog_ProductController,其中我可以很容易地获得网站代码,但我想存储-wise SKUs,以便在搜索引擎中将其视作两种不同的产品。

TIA

最佳回答

如果是同一个后端产品,则应当使用一个ku子跟踪。 尽管如此,我的理解是,你可能有一些相互矛盾的要求。 我认为,如果不彻底破坏该系统的后遗症,实现这一目的的唯一途径是建立一个“对抗库”的场所,用于在仓库内向客户展示。 你们需要用每家店库取代前端的参考资料,并且仍然会看到背后的真正库。

问题回答

暂无回答




相关问题
Is it possible to override a non-virtual method?

Is there any way to override a non-virtual method? or something that gives similar results (other than creating a new method to call the desired method)? I would like to override a method from ...

Is is possible to override a hidden method?

Say I have the following hierarchy: public class MyClass { protected virtual void Method() { ... } } public class MySubClass : MyClass { public new virtual void Method() { ... } } public class ...

C++ : implications of making a method virtual

Should be a newbie question... I have existing code in an existing class, A, that I want to extend in order to override an existing method, A::f(). So now I want to create class B to override f(), ...

Override Events in VB.NET

I would like to shadow/override an event in VB.NET. I do it only because I have to implement in this object an interface, that contains the same event like the base object itself, and I need to keep ...

Count calls to eval

I would like to count the number of calls made to eval in our javascript application. I came up with the following, but it generates errors. These errors are hard to track, and my knowledge of the ...

JavaScript: Overriding alert()

Has anyone got any experience with overriding the alert() function in JavaScript? Which browsers support this? Which browser-versions support this? What are the dangers in overriding the function?

热门标签