Include form title and description
add_filter( ‘frm_pdfs_export_content’, ‘add_title_and_description_to_pdf’, 10, 2 ); function add_title_and_description_to_pdf( $content, $args ) { $target_form_id = 385; // Change 385 to the ID of your form $form_id = (int) $args[‘entry’]->form_id; if ( $target_form_id !== $form_id ) { return $content; } $form =…Continue reading