Hi,
I would like to remove the following from the availability search form block:
Required fields are followed by *
I have added the following into my theme’s function.php file, & it hasn’t worked?
add_action( 'wp_head', 'remove_renderRequiredFieldsTip' );
function remove_renderRequiredFieldsTip(){
remove_action( 'mphb_sc_search_render_form_top', array( '\MPHB\Views\GlobalView', 'renderRequiredFieldsTip' ), 40 );
}
Thanks for your time!