Bootstrap Select - Not showing dropdown items

Hi,

I have installed bootstrap-select via bower and am running into an issue, which i think is a conflict issue with bootstrap and the order gulp is compiling the files. When i build, everything loads and it seems that bootstrap-select is functioning as it should, but once i click on a dropdown menu the items within the dropdown do not display, and it only shows an empty white div. Has anyone had this problem before?

<select class="selectpicker">
            <option value="All">All</option>
            <option value="Businesses">Businesses</option>
            <option value="Events">Events</option>
            <option value="News">News</option>
            <option value="Lifestyle">Lifestyle</option>
</select>

1 Like

I faced this issue too. It is because bootstrap-select doesn’t support Bootstrap 4 for now. See this issue: https://github.com/silviomoreto/bootstrap-select/issues/1135

I changed by bootstrap version to 2.2.7 with this links: https://getbootstrap.com/docs/3.3/getting-started/ and bootstrap select started to work properly.

1 Like

Heya - did you ever get this to work with BS 4?