I have recently added a new attribute option (added 4th one, Three already exists).

After adding a new option I have to first enable and update the price of this new option for about 3000 products.

I tried using UC Feeds module to update the price of a new attribute option, but the attribute is not getting enabled and the price value too. (I have node Title as a unique value)

But when I try to create the new product using UC Feeds then the new attribute values are being imported.

Comments

hanoii’s picture

I think the issue here is that updating the node is not supported, will try to sort it soon.

hanoii’s picture

Status: Active » Fixed

Updating product attributes should now work.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

Ufurf’s picture

Status: Closed (fixed) » Active

With last dev version updating option price doesn't work to me.

Ufurf’s picture

Im not sure its proper way, but i think it worked for me, added in uc_feeds.module

function uc_feeds_node_update($node) {
	if (uc_product_is_product($node) && module_exists("uc_attribute")) {
		uc_feeds_node_insert($node);
	}
}