Home Forums Basel support forum Placing Account Link On Right Side Of Main Header

Placing Account Link On Right Side Of Main Header

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #6699

    mozomarket
    Participant

    Hello, Can I do The following:

    http://screencast.com/t/M4JZSfQ03qq1

    Thank You

    #6702

    Artem Temos
    Keymaster

    Hello,

    By default this layout doesn’t include login/register link. To enable them you will need to add the following code snippet to the functions.php file in your 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',
    					'main_nav',
    					'right-column' => array(
    						'header_links',
    						'search',
    						'wishlist',
    						'cart',
    						'mobile_icon',
    					)
    				)	
    			),
    	);
    }
    #6745

    mozomarket
    Participant

    Thats a bit complex for me. But Thank You for your help

    #6753

    Artem Temos
    Keymaster

    You are welcome!

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Placing Account Link On Right Side Of Main Header’ is closed to new replies.