Reply To: Need to Update Message Title from Reply Message Meta


Home Forums Front End PM PRO Need to Update Message Title from Reply Message Meta Reply To: Need to Update Message Title from Reply Message Meta

#30707
David
Participant

add_action( ‘fep_action_message_after_send’, function( $message_id, $message, $new_message ){
$message_parent = fep_get_parent_id(fep_get_the_id());
$message_reply = fep_get_message( $message_parent );
$message_reply->update( [ ‘mgs_title’ => ‘UPDATED TITLE HERE’ ] );
}, 10, 3);