Home Forums Basel support forum Greeting message

Greeting message

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #161287

    fabioweb
    Participant

    Hello, in top header i can see “My account” page. Do you have a feature once user is logged in? Switch “My account with hello $username

    Thanks

    #161323

    Hello,

    Yes, there is the option. Please navigate to the Theme Setting > Header > MY ACCOUNT LINKS > enable “With username”

    Best Regards

    #161340

    fabioweb
    Participant

    Ok thanks. i have “simplified” version. It works only in other version like “E-Commerce”?
    Regards

    #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

    #161377

    fabioweb
    Participant

    Oh thank you very much. It works but layout is broken. I have to fix by myself or you can help me?
    Regards

    #161394

    Hello,

    Please provide the page URL, I am checking the URL provided earlier and do not see any problems.

    Best Regards

    #161409

    fabioweb
    Participant

    yes because i remove your code and now everything is correct. Try to check now
    If possible i’d like to display like here: https://ibb.co/k845WKW
    Regards

    #161480

    Hello,

    I have tested the code with a Simplified design. You need to increase the width of the right column in the Theme Settings > Header > Header layout http://prntscr.com/q709pd and all the elements would be aligned in one row.

    Best Regards

    #161520

    fabioweb
    Participant

    Ok thank you very much! now menu is below the logo. How can i place in the right?

    Thanks

    #161530

    fabioweb
    Participant

    Ok sorry for repost i fixed in this way.
    Should be possible to display also in .top-bar-right ?

    /*******CIAO UTENTE DOPO LOGIN******* */
    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’,
    )
    )
    ),

    );
    }`

    `

    #161557

    That is fine. If you have any questions please feel free to contact us.

    Best Regards

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

The topic ‘Greeting message’ is closed to new replies.