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

Forum Replies Created

Viewing 15 posts - 511 through 525 (of 18,415 total)
  • Author
    Posts
  • in reply to: ASP with custom blog page from divi 5 #55806
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Mads,

    To restrict items to a specific category only, check this documentation for a step-by-step guide. It should do the trick 🙂

    There is no pop-up feature, however there is a compact (slide out) search box feature. However most themes or page builders nowadays have a pop-up feature built-in, if yours have that feature too, then I recommend using that and placing the search box to the pop-up itself.

    in reply to: Plugin Version #55805
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Plugin Version #55789
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Returning search results not corresponding #55788
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Taxonomy Filter box max-height not honoured #55782
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Sure!

    I have uploaded the image to this reply.

    in reply to: Taxonomy Filter box max-height not honoured #55778
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Usually the best option is the theme custom CSS box, but you can also use our plugin custom CSS input here: https://i.imgur.com/Grrpeqo.png

    You should indeed not change any of the files as it will be overwritten during an update. The custom CSS input above should do the trick.

    in reply to: ASP with custom blog page from divi 5 #55770
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Thank you very much for the details, it helped a lot!

    You almost got it right. This is not yet officially fully supported (but it does work), that’s why there is no documentation for it yet.

    To make it work both the column and the row has to have the class name. I have added the class to the column as well, now the search and filtering should start working as intended.

    in reply to: Taxonomy terms appear over live search results #55767
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    It is an indended behavior for cases when the search results are not closed on blur events and the seleciton does not get covered up. It’s a bit problematic to get it right as both elements are fixed or absolute positioned, so one will hover over the other.

    In your case if it fits better you can force it’s z position via this custom CSS:

    .asp_select2-container {
        z-index: 10 !important;
    }

    This should place the selection container below the results container on the z axis.

    It will however still hover over the search input, that is technically impossible to avoid. An absolute or fixed positioned element in a higher up relative descendant (the results and the floating selection in the body element) will always have precedence over elements lower down the DOM tree (the search box within the content).

    in reply to: Taxonomy Filter box max-height not honoured #55766
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    That unfortunately does not apply to the selection container, it applies to the filter box container only (when used with checkboxes or other non-floating elements).

    Luckily it is very easiely adjustable via a bit of custom CSS:

    .asp_select2-container .asp_select2-results__options {
        max-height: 300px !important;
    }

    I hope this helps!

    in reply to: Taxonomy using multi-select with search layout issue #55765
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    It is very likely due to the admin bar present on the page (it generates a negative margin relative to the body). If you test it on an incognito that it should look all right.

    If this is a concern (ex.: your users see the admin bar), there is a way to offseet that via this custom CSS:

    body:has(#wpadminbar)>span.asp_select2-container {
        margin-top: 32px !important;
    } 

    This should do the trick!

    in reply to: refund #55764
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Filters on result page #55763
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Full height for Checkboxes (Filter) #55747
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Full height for Checkboxes (Filter) #55737
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Theoretically yes, via some custom CSS it should be possible to hide both the search and the settings boxes:

    .asp_ss, .asp_m {
        display: none;
    }
Viewing 15 posts - 511 through 525 (of 18,415 total)