Log in and register button is gone from mobile view header

Hi,

Please try this PHP snippet:

remove_action( 'wp_nav_menu_items', [ hivepress()->template, 'add_menu_items' ], 10, 2 );

add_filter(
	'hivepress/v1/templates/site_header_block',
	function($template){
		return hivepress()->template->merge_blocks(
			$template,
			[
				'site_header_menu' => [
					'blocks' => [						
						'user_account_link'   => [
							'type'   => 'part',
							'path'   => 'user/login/user-login-link',
							'_order' => 9,
						],
					],
				],
			]
		);
	},
	1000
);

However, please note that the dropdown menu will not be available then.

1 Like