WooCommerce Changing Simple Product to Variable and Vice Versa, but how to get n
-
I am creating a plugin that ties into the Runit System for showing onhand products in WooCommerce. This requires changing products via a Cron job that will update them, from Simple Products to Variable Products and vice versa depending on the quantity of stock and the variations of these products, which change. I have working code, that updates these products in the backend, showing the correct variations, however, it does not update on the front end. The new variations, even when editing Variable Products, do not show on the front end when viewing the actual Product itself. I still see the old variations in there. How to update the variations to use the new variations automatically, instead of having to hit the
Update
button in the backend Administration when editing the Product?Is there some sort of function that needs to be called for updating the Variations in WooCommerce that I’m not aware of? I am using the array like this and serializing it before updating the meta_value for the meta_key
_product_attributes
in wp_postmeta table, like so:function ProcessBasicProperties(Array $properties) { $return = array(); $position = 0; if (!empty($properties)) { if (!empty($properties['siz'])) { ++$position; $size = !is_array($properties['siz']) ? array($properties['siz']) : array_unique($properties['siz']); $return['size'] = array( 'name' => 'Size', 'value' => count($size) > 1 ? implode(' | ', $size) : $size[0], 'is_visible' => count($size) > 1 ? 0 : 1, 'is_variation' => count($size) > 1 ? 1 : 0, 'is_taxonomy' => 0, 'position' => $position ); } if (!empty($properties['ext'])) { ++$position; $extension = !is_array($properties['ext']) ? array($properties['ext']) : array_unique($properties['ext']); $return['extension'] = array( 'name' => 'Extension', 'value' => count($extension) > 1 ? implode(' | ', $extension) : $extension[0], 'is_visible' => count($extension) > 1 ? 0 : 1, 'is_variation' => count($extension) > 1 ? 1 : 0, 'is_taxonomy' => 0, 'position' => $position ); } // styles do not get added to attributes for variable products, instead, with variable products, the style goes into the overall sku of the product (General Properties) // So, in short, variable products should not have this key set. if (!empty($properties['style'])) { ++$position; $return['style'] = array( 'name' => 'Style', 'value' => htmlspecialchars($properties['style'], ENT_QUOTES), 'is_visible' => 1, 'is_variation' => 0, 'is_taxonomy' => 0, 'position' => $position ); } if (!empty($properties['color'])) { ++$position; $colors = !is_array($properties['color']) ? array($properties['color']) : array_unique($properties['color']); $return['color'] = array( 'name' => 'Color', 'value' => count($colors) > 1 ? htmlspecialchars(implode(' | ', $colors), ENT_QUOTES) : htmlspecialchars($colors[0], ENT_QUOTES), 'is_visible' => 1, 'is_variation' => 0, 'is_taxonomy' => 0, 'position' => $position ); } if (!empty($properties['gender'])) { ++$position; $return['gender'] = array( 'name' => 'Gender', 'value' => htmlspecialchars($properties['gender'], ENT_QUOTES), 'is_visible' => 1, 'is_variation' => 0, 'is_taxonomy' => 0, 'position' => $position ); } if (!empty($properties['season'])) { ++$position; $return['season'] = array( 'name' => 'Season', 'value' => htmlspecialchars($properties['season'], ENT_QUOTES), 'is_visible' => 1, 'is_variation' => 0, 'is_taxonomy' => 0, 'position' => $position ); } } return $return; }
This is a function that returns the proper array that get serialized and inputted into the
wp_postmeta
table for themeta_value
wheremeta_key
=_product_attributes
. Each variation also has a meta_key ofattribute_size
and meta_key ofattribute_extension
where themeta_value
equals the value of that specific variation as required within thewp_postmeta
table for that posts variation ID.I’m at a loss, trying to update the variations of a Variable Product, or when Converting a Simple Product to a Variable Product, that needs to be updated. It shows up fine in the backend admin panel of the product, but when going to the actual product page, it still shows the OLD product variations. The only way to show the new one’s is to go into the backend admin panel of the product and hit the
Update
button, which than shows all of the new variations. But how to do this programmatically? I thought this was possible? Must be something I’m overlooking here? Perhaps there are terms somewhere that need updating? Each variation exists within thewp_posts
table and is being linked to the actual product, and all of thepost_meta
data in thewp_postmeta
table exists for these variations as well.Do I need to call
wp_set_object_terms
function after editing the products variations or something? If so, how should I do this, and what values need to be passed to it?
- The topic ‘WooCommerce Changing Simple Product to Variable and Vice Versa, but how to get n’ is closed to new replies.