Home Forums Basel support forum Add personal account information and login registration information?

Add personal account information and login registration information?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #265866

    yewenbin
    Participant

    hello,Home page top right picture, this position .how to add personal account information and login registration information?thanks

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

    Hello,

    If you want to add My account to the top row create a menu in Appearance > Menu and assign it as a top menu.

    By default, this header layout doesn’t have Login/Register link. But you can add it in the main row manually by 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',
    					'main_nav',
    					'right-column' => array(
    						'header_links',
    						'search',
    						'wishlist',
    						'cart',
    						'mobile_icon',
    					)
    				)	
    			),
    		);
    }

    Best Regards

    #270388

    yewenbin
    Participant

    Hello, code addition is not very operational.I would like to ask how to add the screenshot?Is there any specific operation? Thank you

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

    Hello,

    You have not activated the child theme and did not add the code. Do you need my help with that?

    Best Regards

    #270504

    yewenbin
    Participant

    Hello, I need your help, thank you very much. I can’t understand the code, thanks

    #270722

    Hello,

    I have uploaded, installed the child theme, and added the code. Now it works. Please check.
    If you have any questions please feel free to contact us.

    Best Regards

    #270824

    yewenbin
    Participant

    Thank you very much, but there is still a small problem.The first screenshot does show the login module, but if the page is dragged down, the login module is gone (see the second screenshot), please help to check how to solve it, thank you

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

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body  .sticky-header .right-column .header-links {
        display: inline-block;
    }

    Best Regards

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