Replace the function into your functions.php file –
function update_dynamic_select() {
update_post_meta($_POST['aid'], $_POST['field'], $_POST['value']);
echo $_POST['value'];
die();
}
Replace options in your HTML part –
<?php
$val = get_post_meta( 104, '_image_matmenys', true );
$s1 = ($val == "10x10") ? 'selected="selected"' : '';
$s2 = ($val == "20x20") ? 'selected="selected"' : '';
$s3 = ($val == "30x30") ? 'selected="selected"' : '';
?>
<option value="10x10" <?php echo $s1;?>>10x10</option>
<option value="20x20" <?php echo $s2;?>>20x20</option>
<option value="30x30" <?php echo $s3;?>>30x30</option>
EDIT:
Also, add one more hook –
add_action( 'wp_ajax_nopriv_dynselect', 'update_dynamic_select' );
and make sure that variable ajaxurl
has value admin_url('admin-ajax.php')
i.e. var ajaxurl="<?php echo admin_url("admin-ajax.php");?>"
Related Posts:
- Update meta values with AJAX
- Is there any action filter/hook for validating a custom field before publishing the post?
- Get updated meta data after save_post hook
- post meta data clearing on autosave
- Display info from custom fields in all images’ HTML
- Using custom fields in a filter hook
- filtering custom post types via meta data drop down
- How to display childrens custom fields?
- Footnotes in custom fields
- Set new url from custom post field
- Add filter menu to admin list of posts (of custom type) to filter posts by custom field values
- Can I exclude a post by meta key using pre_get_posts function?
- Is there a way to set default custom fields when creating a post?
- Custom post meta field effect on the performance on the post
- How to get custom post meta using REST API
- Difference between meta keys with _ and without _ [duplicate]
- Orderby meta_value only returns posts that have existing meta_key
- What is the index [0] for on post meta fields?
- What is “meta_input” parameter in wp_insert_post() used for?
- How to enable revisions for post meta data?
- The “_encloseme” Meta-Key Conundrum
- Add subtitle to Woocommerce product title
- Best way to programmatically remove a category/term from a post
- Filter WP_Query for posts having a certain meta-value
- Using get_post_meta with new_to_publish
- Apply the_content filter to a custom field with multiple values
- Custom field metabox not showing in back-end
- So much data in postmeta
- Can I count the number of users matching a value in a multiple value key?
- Pass all custom fields through the same filter on post load?
- When using add_post_meta and update_post_meta, is there any way to give the individual arrays keys?
- How to hide meta box values from custom fields list?
- Auto sort the wp-admin post list by a meta key
- get_post_meta() unserialize issue – returns boolean(false)
- What is the advantage of the wp_options design pattern?
- Storing meta fields multiple times OR once with multi dimensional array?
- Allow user to create instances of custom field
- display specific custom fields
- Is there a hook / action that is triggered when adding or removing a post thumbnail?
- Edit Custom Database Tables in WordPress
- Fetch and show multiple custom fields via AJAX
- Filter results with custom field values and dropdown
- Meta keywords and descriptions plugin for manually editing meta for each page/post
- getEntityRecord without knowing the post type
- passing argument to get_template_part() or a better way to code
- Is it possible to store arrays in a custom field?
- Archive sorting functions by custom fields (front-end)
- Multiple meta values for same meta_key adding on “Preview Changes” hit but not on saving or updating post
- Save HTML formatted data to post meta using add_post_meta()
- importing data from non-wordpress mysql db
- Check before publishing, if already exist post with current custom field value
- Query postmeta values, and return multiple post_titles for common meta value
- When post is updated, custom metadata in text area field is overwritten
- Get custom fields when hover link of post
- Filter and display a specific custom field value [closed]
- Adding custom fields to images
- How to save dynamically generated value in post type?
- Hide H1 Title using the_title filter
- wordpress simple post multi rating with post_meta and user_meta
- Media Attachment Custom Meta Fields not saving in Media Uploader when using jQuery UI Autocomplete
- How to filter post using custom feild value in shortest and longest duration?
- Query Posts Via WordPress URL
- wp_postmeta are updated for only one page
- update_post_meta not working in action hook
- how to show this part only in the single post page?
- Custom Field: Display only if a specific key is selected outside the loop
- Change event firing in wordpress
- Display meta data from a custom field within plugin Category Grid View Gallery
- Incorrect data after modifying post using backlink from wp_die
- When editing a post with a custom meta box the values aren’t displaying correctly
- Hard Define Custom Field Value
- Add custom fields after post/page title
- Create widget that filters posts on current page based on entered value
- Custom fields / meta box output
- Including inline Custom Fields info with add_filter in functions.php
- If post custom meta data is not set, show normal state
- Sort posts after filtering them through multiple taxonomies
- add_post_meta insert null value into Database
- Make Custom Fields Public in JSON – API
- How do i output images from URL’s added to the same custom field key
- Retrieving custom field as shortcode
- Colecting values from custom field checkboxes and displaying them in the post
- Build Array from Input Fields question
- How to automatically create a custom field when a post is published?
- custom field with links
- add multiple values (array) to post meta_input
- Order by a meta field in query loop
- Order shipped by which driver[hook for woocoomerce order staus changed and popup in admin panel ] [closed]
- How can i put a custom field inside this php
- Add custom fields to specific menus
- Site uses wpdb to fetch meta_keys but just displays first meta_key from a page (the post uses the same meta_key “filmmaker” more than once)
- save all acf options in one meta_value [closed]
- How to add new Metadata options (Date, Author, etc.) for Posts?
- WP Query Args – search by meta_key or title
- Saving multiple custom meta box fields
- Search for meta_query does not return any result if combined with title
- get Custom field label (select/dropdown) on front end
- SQL query based on two different custom field values
- Block Editor – Meta values not saved, meta changes to empty array on update
- What is the best way to get a different post’s custom field/postmeta with js?