Home Forums Basel support forum My Account, Login Not shown in header Reply To: My Account, Login Not shown in header

#1577

Artem Temos
Keymaster

Hello there,

Thank you for the question.

This type of header doesn’t include account and login links by default. But you can add the following code snippet into child theme functions.php file to achieve this.


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

function basel_custom_header_configuration() {

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

}

Regards