I can't seem to create a new ticket because the link you have to press to create a new ticket isn't working for me so maybe you can help me create these tickets:
1) When you are logged in, the black wordpress top bar is showing up - is it possible to hide this bar for all users except the admin users?
2) If I want to design a login page for users that are not admin is this possible? It is just to make the login site a little more personal with our own logo etc.
3) Under "my account" - is it possible to show the First Name of the user instead of the created user name when you are logged in? Is it also possible to change the menu name form My Account to the users first name? do you know what I mean?
Hi there, in your guide I can't seem to find a section about my question. I don't need to customize the My Account page - I just need to change the appearance of the name that are being presented to the user from the username to the first name. So when they login with user name and password it says "Mai" instead of my username and instead of "My Account" it could say "Mai's profile" or something. The "My Account" page itself is already done.
If you can share the screenshot where exactly you want to display "Mai's profile" and problem URL that would help me to guide you in the right direction.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I have set the next reply to private which means only you and I have access to it.
The thing is that Toolset do not control the Menu items. Also, On my-account page, the welcome message added to my account page as its coming from the Woocommerce.
However - I'm sharing here the workaround that will change the "My Account" to "Mai's Profile". To achieve this, I've added the following line of code to "Custom Code" section offered by Toolset:
=> lien caché
function new_nav_menu_items($items,$args) {
global $current_user;
$profile_menu_caption = $current_user->first_name."'s Profile";
$items = str_replace("MIN KONTO",$profile_menu_caption,$items);
return $items;
}
add_filter( 'wp_nav_menu_items', 'new_nav_menu_items',10,3 );
And maybe translate it? The site will come in multiple languages later - by using polylang. Right now it should just be in Danish (the word "profile" is just "profil")
As the original question to this ticket already addressed, I urge you to mark resolve this ticket.
PS: I informed our systems team that you are not able to create more than 3 tickets at a time, they will investigate and I will get back to you with their findings with the ticket where are interactive about that issue.