Home Forums Basel support forum Greeting message Reply To: Greeting message

#161350

Hello,

Yes, that is right.

If you need to add it to other design, you can add it manually placing the following code snippet to the functions.php file in the child theme.

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'
			)
		)	
	);
}

Best Regards