Remove WoodMart from admin bar
-
Hello! How can I remove WoodMart from the admin bar? https://postimg.cc/sBwg4ZtT
Hello,
You can rebrand the theme in the Theme Settings > White label. Find our documentation tutorial about this here: https://xtemos.com/docs-topic/how-to-rebrand-the-theme-white-label/
If you have any questions please feel free to contact us.
Best Regards
Which option exactly removes „WoodMart” from admin bar?
Hello,
You need to rename the theme via the options provided. Theme name – the field to replace all instances of “WoodMart”;
If you have any questions please feel free to contact us.
Best Regards
I renamed the theme, but the Woodmart button is still in the admin bar.
Hello,
Please provide the screen of what you want to rename.
Best Regards
The screenshot is already provided in this topic. I want to REMOVE, not RENAME!!!
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
#wp-admin-bar-xts_dashboard {
display: none;
}
Best Regards
It does not work. I will leave the login details so you can look.
Hello,
Please add this code to the functions.php of the child theme:
add_action( 'init', function () {
remove_action( 'admin_bar_menu', array( XTS\Page::get_instance(), 'admin_bar_links' ), 100 );
});
If you have any questions please feel free to contact us.
Best Regards