Update a field using PHP
-
I would like to update a field that I created in the product options. I have been able to pull the contents from the field but have not been able to update it.
$your_phone = $item->get_meta('dinner_phone'); $update_phone = wdc_format_phone($your_phone); wc_update_order_item_meta($item,'dinner_phone', $update_phone); $new_phone = $item->get_meta('dinner_phone');
I haven’t been able to figure out how to get the item id to make this work.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Update a field using PHP’ is closed to new replies.