Support

Account

Home Forums Feature Requests Set 'Post Title' from Field Group (Toggle) Reply To: Set 'Post Title' from Field Group (Toggle)

  • Hi @andycheeseman

    It is most likely the line: if ( get_post_type() == 'testimonial' ) { that is failing when you first save the post.

    Perhaps changing it to: if ( get_post_type($post_id) == 'testimonial' ) { will fix the issue.

    Thanks
    E