Support

Account

Home Forums Feature Requests Google Map & City Name Reply To: Google Map & City Name

  • Hello John,

    thank you for your answer, I’ve gave it a try, but it didn’t work… I don’t really understand why. Am I supposed to insert the code in my theme’s functions.php ?

    Then do something like this …? :

    <?php
    
    function my_acf_save_post( $post_id ) {
        
        // bail early if no ACF data
        if( empty($_POST['acf']) ) {
            
            return;
            
        }
        
          
        // do things with the var, insert the data i am interested in
     
        $_POST['acf']['field_abc123'] = $my_array_with_data_i_want
    
        
    }
    
    // run before ACF saves the $_POST['acf'] data
    add_action('acf/save_post', 'my_acf_save_post', 1);
    
    ?>

    Is this the spirit ?
    If yes it doesn’t work, and I can’t figure out why…