Support

Account

Home Forums General Issues Cannot update title field based on post type Reply To: Cannot update title field based on post type

  • So it works if you only have this

    
    if ('post' == get_post_type($post_id)) {
      $_POST['acf']['_post_title'] = $_POST['acf']['field_610b936e9292c'];
    }
    

    or if you only have this

    
    if ('customposttype' == get_post_type($post_id)) {
      $_POST['acf']['_post_title'] = $_POST['acf']['field_61ddb5d56ddfe']; 
    }
    

    but it does not work when you have this

    
    if ('post' == get_post_type($post_id)) {
      $_POST['acf']['_post_title'] = $_POST['acf']['field_610b936e9292c'];
    } elseif ('customposttype' == get_post_type($post_id)) {
      $_POST['acf']['_post_title'] = $_POST['acf']['field_61ddb5d56ddfe']; 
    }
    

    I don’t see anything in the code that you’ve provided that can cause this.