Hey,
Contact to the DIVI theme providers.
Thread Starter
hop3y
(@hop3y)
Tried – they don’t answer. Wondered if anyone else knew.
What active plugins are there on your site?
It might be there because of some plugin.
-
This reply was modified 3 years, 11 months ago by
Shashwat.
Can you show us a page with the issue?
Thread Starter
hop3y
(@hop3y)
http://www.lowerhousecc.com
Sure its related to The Events Calendar
Do you have buddypress plugin installed on your site?
Hey,
Try this code and let me know it worked for you or not.
function remove_add_event_wpadmin_bar_eventsplus () {
global $wp_admin_bar;
$wp_admin_bar->remove_node('eab-events-fpe-admin_bar');
}
add_action('admin_bar_menu', 'remove_add_event_wpadmin_bar_eventsplus', 999);
Add this code to functions.php file.
I’d suggest rather using child theme then editing theme’s files.
Thread Starter
hop3y
(@hop3y)
Hey – thanks for that, doesn’t remove it though.
Thread Starter
hop3y
(@hop3y)
Removed all plugins and the bar is still there – however “events” has gone.
Thread Starter
hop3y
(@hop3y)
This doesn’t look to be the plugin.
I’ve deactivated the plugin and the WordPress.Org bar is still there. With just the WordPress logo in the left hand corner even when logged out.
Try this function and check after logout from the WordPress
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}
Thread Starter
hop3y
(@hop3y)
Hey,
Nope – sorry. That didn’t work either.
Thread Starter
hop3y
(@hop3y)
Debugged it – it’s the Forum – wpForo plugin.