Hide

Customization of this page

/** ==================================================
 * Filter of Fixed Bottom Menu
 *
 * fbm_hide
 * @param bool $hide  hide.
 */
function fixed_bottom_menu_hide( $hide ) {

	if ( 108 === get_the_ID() || 110 === get_the_ID() ) {
		$hide = true;
	}
	return $hide;

}
add_filter( 'fbm_hide', 'fixed_bottom_menu_hide', 10, 1 );

Hide the menu by specifying the post ID.


Customize it to be visible to logged in users only

/** ==================================================
 * Filter of Fixed Bottom Menu
 *
 * fbm_hide
 * @param bool $hide  hide.
 */
function fixed_bottom_menu_login_only( $hide ) {
	if ( ! is_user_logged_in() ) {
		$hide = true;
	}
	return $hide;
}
add_filter( 'fbm_hide', 'fixed_bottom_menu_login_only', 10, 1 );