-
Hi Support,
I need to hide the tooltip ‘ Hit ? for Help’ How do I achieve that please?
Flowplayer for WordPress v. 2.1.20Thanks
Jake
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
Foliovision › Forums › FV Player › Troubleshooting › Hide ‘Hit ? for help’
Hi Support,
I need to hide the tooltip ‘ Hit ? for Help’ How do I achieve that please?
Flowplayer for WordPress v. 2.1.20
Thanks
Jake
Hello Jake,
this appears because the player supports keyboard shortcuts and also has a help screen.
You can put this into your template’s functions.php file, if you know a bit of PHP. It will disable the tooltip.
add_filter( 'fv_flowplayer_attributes', 'tweak_fv_flowplayer_attributes', 10, 2 );
function tweak_fv_flowplayer_attributes( $attrs ) {
$attrs['data-tooltip'] = 'false';
return $attrs;
}
We will look into this and decide if we shouldn’t just disable the tooltip by default.
Thanks,
Martin
Hello Peter,
we are currently concentrating our efforts on FV Player 7, which is currently in beta for Pro users: https://foliovision.com/2018/06/fv-player-7-beta
It no longer shows that tooltip by default.
Thanks,
Martin