This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Searching by Custom Post Type

#38186
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Philip,

1. For post types, make sure nothing is selected under the General Options -> Sources panel: https://i.imgur.com/FAe5pki.png
That will automatically make the checkboxes unchecked. It is a bit counter intuitive, we are reworking the whole front-end system right now.

2. If you are reffering to the search results page, then make sure the search override feature is enabled and the medhot is set to GET.

3. The code I suggested was for category checkboxes, my mistake. This should do the trick:

.asp_filter_cpt {
    width: 100% !important;
    min-width: 100% !important;
}

.asp_filter_cpt .asp_simplebar-content {
    display: flex !important;
    flex-wrap: wrap;
}

.asp_filter_cpt .asp_option {
    margin-left: 0 !important;
}

.asp_filter_cpt legend {
    width: 100%;
}

.asp_filter_cpt .asp_option .asp_option_label {
    white-space: nowrap;
}

4. On the live results list it is possible, this documentation will help with that. The results page layout can not be affected by the plugin.