function remove_elementor_notes_from_admin_bar($wp_admin_bar) {
// Check if the Elementor Notes menu exists and remove it
if ($wp_admin_bar->get_node('elementor_notes')) {
$wp_admin_bar->remove_node('elementor_notes');
}
}
add_action('admin_bar_menu', 'remove_elementor_notes_from_admin_bar', 999);
function disable_elementor_notes_assets() {
// Dequeue any Elementor JS or CSS related to the Notes feature
wp_dequeue_script('elementor-pro-notes');
wp_dequeue_script('elementor-pro-notes-app-initiator');
wp_dequeue_style('elementor-pro-notes-frontend');
}
add_action('wp_enqueue_scripts', 'disable_elementor_notes_assets', 20);