tags around custom success message
-
I’m trying to add <p> tags around the custom success message.
I have this code (from custom-contact-forms/classes/class-ccf-form-handler.php):
if ( 'redirect' === $output['action_type'] ) { $output['completion_redirect_url'] = get_post_meta( $form_id, 'ccf_form_completion_redirect_url', true ); } else { $output['completion_message'] = get_post_meta( $form_id, 'ccf_form_completion_message', true ); if ( empty( $output['completion_message'] ) ) { $output['completion_message'] = esc_html__( '<p>Thank you for your submission.</p>', 'custom-contact-forms' ); } }
I’ve put the <p> tags around the default success message, but I can’t figure out how to add <p> tags around the custom message which is this line:
$output['completion_message'] = get_post_meta( $form_id, 'ccf_form_completion_message', true );
Any help or guidance is appreciated!
- The topic ‘tags around custom success message’ is closed to new replies.