Reputation: 1
I am trying to update prices using Magmi on 2 store views but I am having issues. Here is my setup.
Website Name (Code: bab) Store Name (Root Category: BAB)
Has 2 store views Storeview 1 (Code: abc) Storeview 2 (Code: bab)
As I am just wanting to update prices for the storeviews my csv file is as follows: store, websites, sku, price admin, faf, 1001, 5.00 admin, gpf, 1001, 7.00
Unfortunately the prices are just not updating as needed. Only 1 store price updates, while the other one doesn't.
I have tried importing in different ways.
None of these approaches are applying the price to both. I either get just 1 price update. Or I get the default price show in 1 store, and the other store not updating at all.
I have also been re-indexing after each magmi import, clearing magento cache and my chrome cache.
I have also checked to make sure there are no discounts or pricing rules effecting any products.
So I am hoping someone can advise me on anything I am doing wrong or anything else I need to check. Maybe I am configuring my csv file wrong?
Nore: I have over 5000 products and I don't think I can use magneto's default import feature / data profiles as it is really slow and often just crashes.
Thanks and hope you can help. Would be much appreciated. Paul
Upvotes: 0
Views: 2125
Reputation: 331
Open magmi/engines/magmi_productimportengine.php and add this condition
if ($attrcode == "price" && $attrdesc["is_configurable"] == 1){
$scope=0;
}
After
if ($attrcode != "price" && $attrdesc["is_configurable"] == 1)
{
$scope = 0;
}
https://github.com/dweeves/magmi-git/issues/435
Upvotes: 0
Reputation: 5615
as stated in magmi support : http://sourceforge.net/p/magmi/support-requests/121/#9fbb
to work with multistore, you MUST vary on "store" column putting storeviews code, not on "websites" column. here:
store,sku, price
abc, 1001, 5.00
bab, 1001, 7.00
This should fix your problem
Upvotes: 1