helpful_before
Help: If you do not know how to execute or save your own PHP code, you can find help here: How to execute PHP code on your WordPress website
This allows you to place content directly before issuing Helpful.
/**
* Place something before helpful.
*
* @return void
*/
function custom_function() {
echo 'custom_content';
}
add_action( 'helpful_before', 'custom_function' );