Home Forums Basel support forum Login / resgistration / logout, in this menu Reply To: Login / resgistration / logout, in this menu

#52559

Artem Temos
Keymaster

Try to replace it with this code instead

add_filter( 'basel_header_configuration', 'basel_custom_header_configuration', 1, 1 );

function basel_custom_header_configuration() {

	return array(
				'container' => array(
					'wrapp-header' => array(
						'logo',
						'main_nav',
						'right-column' => array(
					                'header_links',
							'wishlist',
							'cart',
							'mobile_icon',
						)
					)	
				),
				'secondary-header' => array(
					'container' => array(
						'categories_menu',
						'search_extended',
					)
				)	
	);
}