Manipulate options
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
Helpful works with WordPress functions, so you can manipulate Helpful afterwards.
For example, to edit the headline using functions.php you can use the following:
add_filter( 'pre_option_helpful_heading', function( $option, $default ) {
return 'My new question?';
}, 10, 2 );