Change the value of Radio button options based on the day of the week
add_filter( ‘frm_field_value_saved’, ‘my_custom_function’, 10, 3 ); function my_custom_function( $option_name, $opt_key, $field ) { if ( $field[‘id’] == 11375 ) { // Change 11375 to the ID of your radio button /checkbox $date = date( ‘l’ ); if ( $date ===…Continue reading