The problem is not related to custom fields but rather to the product itself. Observations:
- Updating only the title failed.
- Other Product Options remained unchanged and are consistent with the default settings and other working imports.
- I checked in SQL
_wp_page_template
of the problematic product, and it turns out the issue is related to a custom meta field.
- The specific custom field I intended to update (b2b_link) with value: b2bdomain/?s={name}[1] wasn’t added, but instead _wp_page_template was updated
Once I set
UPDATE
wp_postmeta
SET meta_value
= 'default' WHERE wp_postmeta
.meta_id
= 58104171 AND wp_postmeta
.post_id
= 416651 AND wp_postmeta
.meta_key
= '_wp_page_template';
I could use wp all import to update product again.
It is bit weird this option was updated because I’ve set in Custom Field b2b_link and then within settings I’ve set to update only this custom field too.
View post on imgur.com
-
This reply was modified 1 week, 4 days ago by
mcdeth.