Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterSure!
I have uploaded the image to this reply.
Ernest Marcinko
KeymasterUsually 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.
Ernest Marcinko
KeymasterHi,
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.
Ernest Marcinko
KeymasterHi,
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).
-
This reply was modified 9 months, 1 week ago by
Ernest Marcinko.
-
This reply was modified 9 months, 1 week ago by
Ernest Marcinko.
Ernest Marcinko
KeymasterHi,
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!
October 18, 2025 at 11:43 am in reply to: Taxonomy using multi-select with search layout issue #55765Ernest Marcinko
KeymasterHi,
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!
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterTheoretically yes, via some custom CSS it should be possible to hide both the search and the settings boxes:
.asp_ss, .asp_m { display: none; }October 16, 2025 at 2:52 pm in reply to: hook to complete remove design/ css from the frontend #55734Ernest Marcinko
KeymasterHi,
Yes – it is possible via the asp_load_css hook. I hope this helps!
-
This reply was modified 9 months, 1 week ago by
Ernest Marcinko.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
-
This reply was modified 9 months, 1 week ago by
-
AuthorPosts