Reply To: How to edit some information?


Home Forums Front End PM PRO How to edit some information? Reply To: How to edit some information?

#16341
Shamim Hasan
Keymaster

Add following code in your theme’s (child theme’s if any) functions.php (instead of second part of above code)

add_filter( 'fep_form_fields', function( $fields ){
	if( isset( $fields['message_title'] ) ){
		$fields['message_title']['label'] = __( 'Subject/Order number', 'front-end-pm' );
                $fields['message_title']['placeholder'] = __( 'Subject/Order number', 'front-end-pm' );
	}
	return $fields;
});