Support

Account

Home Forums General Issues Populate text field dynamically with another field Reply To: Populate text field dynamically with another field

  • Got it!

    function my_acf_save_post( $post_id ) {
        
        // get new value
        $value = get_field('logo');
        
        // do something
        update_field('logo_url', $value);
    }
    
    add_action('acf/save_post', 'my_acf_save_post', 20);