Support

Account

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

  • I personally tend to using acf/save_post filters and updating the title after the post is created and the acf fields populated.

    In this case I would look for the existence of the field

    
    if (!empty($_POST['acf']['field_610b936e9292c'])) {
      
    } elseif (!empty($_POST['acf']['field_61ddb5d56ddfe']) {
    
    }