Updating product attributes in WooCommence is a painful experience, right?

In this section,let me share how to update the product attributes programmatically in wordpress.

Let’s say we have a product attribute call “markup”. We have to write like this in order to get the attribute correctly.

$markup_value = get_post_meta(…


This content originally appeared on DEV Community and was authored by Zaw Htut Win

In this section,let me share how to update the product attributes programmatically in wordpress.

Let's say we have a product attribute call "markup". We have to write like this in order to get the attribute correctly.

$markup_value = get_post_meta($product->post_id, '_product_attributes',true)['markup']['value'];

In order to save the attribute again, quite tricky but still managable.

$post_id = $product->post_id;
$product_attr = get_post_meta(post_id, '_product_attributes',true);//get the whole product attributes first

$product_attr['markup']['value'] = 50.75;//your desired attribute value

update_post_meta(post_id , '_product_attributes',$product_attr);

So, that's it. If you have a list of post id, and you want to update the product attribute(in our case markup), that's how you are going to do it.


This content originally appeared on DEV Community and was authored by Zaw Htut Win


Print Share Comment Cite Upload Translate Updates
APA

Zaw Htut Win | Sciencx (2021-06-05T12:47:54+00:00) Updating product attributes in WooCommence is a painful experience, right?. Retrieved from https://www.scien.cx/2021/06/05/updating-product-attributes-in-woocommence-is-a-painful-experience-right/

MLA
" » Updating product attributes in WooCommence is a painful experience, right?." Zaw Htut Win | Sciencx - Saturday June 5, 2021, https://www.scien.cx/2021/06/05/updating-product-attributes-in-woocommence-is-a-painful-experience-right/
HARVARD
Zaw Htut Win | Sciencx Saturday June 5, 2021 » Updating product attributes in WooCommence is a painful experience, right?., viewed ,<https://www.scien.cx/2021/06/05/updating-product-attributes-in-woocommence-is-a-painful-experience-right/>
VANCOUVER
Zaw Htut Win | Sciencx - » Updating product attributes in WooCommence is a painful experience, right?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/06/05/updating-product-attributes-in-woocommence-is-a-painful-experience-right/
CHICAGO
" » Updating product attributes in WooCommence is a painful experience, right?." Zaw Htut Win | Sciencx - Accessed . https://www.scien.cx/2021/06/05/updating-product-attributes-in-woocommence-is-a-painful-experience-right/
IEEE
" » Updating product attributes in WooCommence is a painful experience, right?." Zaw Htut Win | Sciencx [Online]. Available: https://www.scien.cx/2021/06/05/updating-product-attributes-in-woocommence-is-a-painful-experience-right/. [Accessed: ]
rf:citation
» Updating product attributes in WooCommence is a painful experience, right? | Zaw Htut Win | Sciencx | https://www.scien.cx/2021/06/05/updating-product-attributes-in-woocommence-is-a-painful-experience-right/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.