Home Forums Basel support forum My account link

My account link

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #158938

    ricardocastro1
    Participant

    Hello,

    I would like that when my cients are loged in my site are able to go to “My account” directly with a link, for example when I´m logged in Xtremos, in the top right of the page there is a link My Account.

    Is this possible with this template? if yes please provide me the steps

    Thanks!!

    #158985

    Hello,

    You need to disable Login form in the sidebar in the Theme settings > Header > MY ACCOUNT LINKS

    Best Regards

    #159196

    ricardocastro1
    Participant

    Hi, I just didi what you told me but it doest work, could you please check the attached file in order to know if I did it correctly.

    Attachments:
    You must be logged in to view attached files.
    #159218

    Hello,

    Please provide the site admin access to the private area.

    Best Regards

    #159376

    ricardocastro1
    Participant

    Sure

    #159435

    Hello,

    Now, I see. By default, this header layout doesn’t have Login/Register link. But 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

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