Home › Forums › Basel support forum › Greeting message
Greeting message
- This topic has 10 replies, 2 voices, and was last updated 5 years, 3 months ago by
Elise Noromit.
-
AuthorPosts
-
December 5, 2019 at 12:14 pm #161287
fabiowebParticipantHello, 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
December 5, 2019 at 1:59 pm #161323
Elise NoromitMemberHello,
Yes, there is the option. Please navigate to the Theme Setting > Header > MY ACCOUNT LINKS > enable “With username”
Best Regards
December 5, 2019 at 2:46 pm #161340
fabiowebParticipantOk thanks. i have “simplified” version. It works only in other version like “E-Commerce”?
RegardsDecember 5, 2019 at 3:22 pm #161350
Elise NoromitMemberHello,
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
December 5, 2019 at 4:14 pm #161377
fabiowebParticipantOh thank you very much. It works but layout is broken. I have to fix by myself or you can help me?
RegardsDecember 5, 2019 at 6:19 pm #161394
Elise NoromitMemberHello,
Please provide the page URL, I am checking the URL provided earlier and do not see any problems.
Best Regards
December 5, 2019 at 10:04 pm #161409
fabiowebParticipantyes 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
RegardsDecember 6, 2019 at 9:09 am #161480
Elise NoromitMemberHello,
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
December 6, 2019 at 10:53 am #161520
fabiowebParticipantOk thank you very much! now menu is below the logo. How can i place in the right?
Thanks
December 6, 2019 at 11:29 am #161530
fabiowebParticipantOk 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’,
)
)
),);
}``
December 6, 2019 at 12:59 pm #161557
Elise NoromitMemberThat is fine. If you have any questions please feel free to contact us.
Best Regards
-
AuthorPosts
The topic ‘Greeting message’ is closed to new replies.
- You must be logged in to create new topics. Login / Register