helpful_feedback_submit_fields
With this you can intervene in the sent fields via the feedback form. You can also add your own fields, which will then be saved in the database.
/**
* This can be used to edit sent fields.
*
* @param array $fields submitted fields.
* @return array
*/
function custom_function( $fields ) {
return $fields;
}
add_filter( 'helpful_feedback_submit_fields', 'custom_function' );
Was this post helpful?
Let us know if you liked the post. That’s the only way we can improve.