Continuing the discussion mentioned here:
Remove "Select All" action button from pickerInput using shinywidgets
OP had this code and tries to remove one of the select/deselect buttons:
pickerInput(inputId = "country_select_list", label = "Select countries", choices = country_list, multiple = TRUE, options = pickerOptions(actionsBox = TRUE))
The answer was to utilize CSS:
.bs-select-all {
display: none;
}
Where exactly should this part of the code be put so that the select-all button disappears?