Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

Update post meta in woocommerce order frontend

I came across this post looking for a solution for multiple resubmissions due to update_post_meta. Here’s my solution after looking at these posts wordpress get_post_meta check if multiple values set Prevent processing data multiple times in Woocommerce thankyou hook :

<?php
global $post;
$post = $order_id;
if ( isset( $_POST['submit'] ) ){
  echo 'Update nicht';
} else 
 
 // Checking if this has already been done avoiding reload
if ( get_post_meta($order_id,"frontstrasse",true)!="" && get_post_meta($order_id,"fronthausnr",true)!="" {
return; // Exit if already processed
}

  update_post_meta( $order_id, 'Strasse', sanitize_text_field( $_POST['frontstrasse'] ) );
  update_post_meta( $order_id, 'Haus-Nr', sanitize_text_field( $_POST['fronthausnr'] ) );
}

$istrasse = get_post_meta($order->id, 'Strasse', true );
$ihausnr = get_post_meta($order->id, 'Haus-Nr', true );
?>

<form method="post" action="">
<label>Strasse</label><input type="text" name="frontstrasse" value="<?php echo $istrasse ?>" />
<label>Haus-Nr</label><input type="text" name="fronthausnr" value="<?php echo  $ihausnr ?>" />
<input type="submit" value="save" name="frontsubmit" />
</form>
    

Related Posts:

  1. What is the different between an attachment in wp_posts and an attachment in wp_postmeta?
  2. What is the code to get the download link for a product in WooCommerce?
  3. Problem With Order Item Meta In Woocommerce
  4. Need a SQL query to update meta_key=’_price’ with value in meta_key=’_regular_price’
  5. add post meta front end edit
  6. acf_form() – “On Update” action [closed]
  7. How do I retrieve the slug of the current page?
  8. Most efficient way to get posts with postmeta
  9. Get posts by meta value
  10. Explanation of update_post_(meta/term)_cache
  11. How to extract data from a post meta serialized array?
  12. How to save an array with one metakey in postmeta?
  13. WordPress is stripping escape backslashes from JSON strings in post_meta
  14. How can I get the post ID from a WP_Query loop?
  15. Check if Post Title exists, Insert post if doesn’t, Add Incremental # to Meta if does
  16. How to update_post_meta value as array
  17. Adding meta tag without plugin
  18. What’s the point of get_post_meta’s $single param?
  19. How to edit a post meta data in a Gutenberg Block?
  20. Sanitizing integer input for update_post_meta
  21. post formats – how to switch meta boxes when changing format?
  22. Execute action after post is saved with all related post_meta records (data)
  23. Lack of composite indexes for meta tables
  24. Get a single post by a unique meta value
  25. if get_post_meta is empty do something
  26. How we get_post_meta without post id
  27. How get post id from meta value
  28. Safe to delete blank postmeta?
  29. advanced custom fields update_field for field type: Taxonomy
  30. update_post_meta not saving when value is zero
  31. Content hooks vs User hooks
  32. Meta compare with date (stored as string) not working
  33. Trying to get custom post meta through Jetpack JSON API [closed]
  34. How to update/insert custom field(post meta) data with wordpress REST API?
  35. Restrict post edit/delete based on user ID and custom field
  36. get_post_meta returning empty string when data shows in the database
  37. publish_post action hook doesn’t give post_meta_data
  38. Remove WordPress.org Meta link
  39. Remove post meta keys
  40. How to access the post meta of a post that has just been published?
  41. Why time functions show invalid time zone when using ‘c’ time format?
  42. Why is get_post_meta returning an array when I specify it as single?
  43. How to update/delete array in post meta value?
  44. How to get all term meta for a taxonomy – getting term_meta for taxonomy
  45. Adding an assisting editor box to Post page
  46. WooCommerce conditional meta query
  47. delete unused postmeta
  48. Should I sanitize custom post meta if it is going to be escaped later?
  49. Add post meta based on another post meta value before publish post
  50. How do I retrieve multi-dimensional arrays from the wp_postmeta table, & display on a website?
  51. Front-end update_post_meta snippet displays white screen?
  52. Query between two meta values?
  53. Save both current and new version of post meta
  54. Get Advanced Custom Fields values before saving [closed]
  55. Give extra post-meta to RSS feeds
  56. How to get meta value in wp_attachment_metadata
  57. WP REST API “rest_no_route” when trying to update meta
  58. Clean up output added via wp_head()
  59. List posts under meta_value heading
  60. Why am I getting an infinite loop with have_posts?
  61. Up/Down voting system for WordPress
  62. get_post_meta – get a single value
  63. delete value 0 in post meta [closed]
  64. Can I safely delete a record, manually, in the wp postmeta table?
  65. Reason action hook won’t work with update_post_meta from frontend form? Alternative?
  66. How to store post meta in an array?
  67. What action hook updates post meta?
  68. Can’t translate the post meta data (Date) in another language
  69. get_post_meta / update_post_meta array
  70. adding a URL to a post meta
  71. Query for posts from any post type but only add instock products
  72. Exclude a category from the filed under list
  73. Short of raw SQL, can I query for multiple attachment metadata that have a given array key?
  74. How do I access post meta data when publishing a new post in Gutenberg?
  75. update_post_meta() not working when used with WordPress action
  76. Using Advanced Custom Field (ACF) to insert meta description on each page
  77. Triple meta_key on custom SELECT query
  78. get_post_custom()
  79. Adding meta data to an attachment post
  80. update_post_meta not adding anything.(Nor add_post_meta)
  81. loop through all meta keys with get_post_meta
  82. Get posts by meta value with date
  83. How to add meta tag to wordpress posts filter?
  84. Are multiple values from get_post_meta guaranteed to be ordered?
  85. Identifying Importer Posts
  86. Get updated post meta on save_post action?
  87. Get post from meta_key and meta_value
  88. Add a post metadata if only the key and value does not exist
  89. get_post_meta returns bool(false)
  90. How metadata API works?
  91. Correct processing of `$_POST`, following WordPress Coding Standards
  92. Metabox Data not being saved [closed]
  93. How can I get values using key in Carbon Fields from Multiselect?
  94. Delete post meta conditionally after save post
  95. How to sanitize post meta field value?
  96. Job of meta_key meta_value fields in database tables
  97. WordPress Action Hooks and Post ID?
  98. Post IDs missing on delete_postmeta action hook
  99. How to store Gutenberg ColourPicker RGBA as metadata
  100. Options to get my custom post type metadata via the WordPress API
Categories post-meta Tags front-end, post-meta, woocommerce-offtopic
Adding a brand column to WooCommerce Products
Admin Posts Table Column Fitlering is not working for Custom Post Type

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress