Home Forums Basel support forum Log in buttons

Log in buttons

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

    mybusiness360
    Participant

    Good day,
    I am using basel theme with “Basic full import”. I can see there is a Log in form on my site (display: fixed), but I can’t see any log in button on header (where I suppose it should be). Plus I can see “My account” on mobile menu.
    How could I enable login Button on header?
    Thanks in advance

    #132981

    Hello,

    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

    #133075

    mybusiness360
    Participant

    Good day sir,

    Will you be kind to guide me on how to create child theme. I have check the documentation section “Child themes” and this is what I have done.
    1. Create new folder basel-child
    2. copy the function.php
    3 add the new code you have send me

    Probably I have done something wrong because I still can see the the log in on header.

    Thank you in advance

    #133132

    Hello,

    Find the ready child theme in the theme folder of the Themeforest, install and activate, enter the ready functions.php and insert the code.

    Best Regards

    #133169

    mybusiness360
    Participant

    Alright this works! And how will I move all this icons section on the black Top Bar where the menu is(Αρχική Blog). I mean exchange this menu with login icon, search, cart etc.?

    #133238

    Hello,

    There is no option to move them. It will require more complicated customization which is not covered by our support.

    Best Regards

    #133274

    mybusiness360
    Participant

    Good day sir,

    Thank you very much! I will compromise with the current position!

    Have a nice day!

    #133324

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

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

The topic ‘Log in buttons’ is closed to new replies.