Home Forums Basel support forum Login/Register Reply To: Login/Register

#23988

Artem Temos
Keymaster

Hello,

Try to add this code snippet to the functions.php file in the child theme to display these links

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

function basel_custom_header_configuration() {

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

Regards