change attachment custom field onChange event
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 == “10×10″) ? ‘selected=”selected”‘ : ”; $s2 = ($val == “20×20″) ? ‘selected=”selected”‘ : ”; $s3 = ($val == … Read more