helpful_current_tab
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 hook filters the current tab in the Helpful settings. This is useful if you want to expand the tabs and set the active tab correctly.
<?php // functions.php
add_filter( 'helpful_current_tab', function( bool $status ) {
return $status;
});