Is there a way to remove/disable the title attribute?
Not supported.
I used:
$.fn.selectpicker_remove_title = function() {
$(this).next().children().removeAttr('title');
};
var $sel = $(...).selectpicker();
$sel.selectpicker_remove_title();
$sel.change($.fn.selectpicker_remove_title);
Removing the tile is currently not supported (the default is to mirror the html behaviour). However, you can set selectedTextFormat to 'static' to prevent the title from being updated.