Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › ASP Filters Box Disappears
- This topic has 39 replies, 2 voices, and was last updated 5 years ago by
Alex Meda.
-
AuthorPosts
-
March 29, 2021 at 9:25 am #32385
Ernest Marcinko
KeymasterThank you! The difference is the taxonomy term filters. On the working instance the categories are chosen from under a different parent:
– Working: https://i.imgur.com/5S5PvQ4.png
– Non-working: https://i.imgur.com/a53MaMs.pngMarch 30, 2021 at 5:22 am #32402Alex Meda
ParticipantI got it 🙂
Once again, thanks a lot for everything!March 31, 2021 at 2:15 pm #32473Alex Meda
ParticipantYou cannot access this content.
March 31, 2021 at 3:13 pm #32482Ernest Marcinko
KeymasterWell, in CSS you either need to add them line by line like this:
div.asp_r.isotopic.asp_r_18,
div.asp_r.isotopic.asp_r_19,
div.asp_r.isotopic.asp_r_20 {
overflow: scroll;
height: 500px !important;
overflow-x: hidden !important;
}..or use this variation to target all of them:
div.asp_r.isotopic { overflow: scroll; height: 500px !important; overflow-x: hidden !important; }April 1, 2021 at 12:55 pm #32503Alex Meda
ParticipantThanks a lot, the first code is the best choice in the current case 🙂
April 15, 2021 at 1:51 pm #32748Alex Meda
ParticipantYou cannot access this content.
April 15, 2021 at 2:51 pm #32753Ernest Marcinko
KeymasterIt is because of a custom CSS you have somewhere, which transforms all input text to upper case: https://i.imgur.com/75gD3HT.png
If that is removed, it will resolve that issue.April 15, 2021 at 3:04 pm #32755Alex Meda
ParticipantThanks Ernest,
I will check this out !April 22, 2021 at 5:18 pm #32902Alex Meda
ParticipantYou cannot access this content.
April 23, 2021 at 8:59 am #32913Ernest Marcinko
KeymasterHi,
Instead of the shortcode generator, maybe try using the simple search shortcode there:
[wd_asp id=22]That way the results will hover just below the search bar instead of displaying as a block.
April 26, 2021 at 12:59 pm #32937Alex Meda
ParticipantYou cannot access this content.
April 26, 2021 at 2:10 pm #32938Ernest Marcinko
KeymasterTry using a block layout for the settings box then. It should give you the same as the custom shortcode, while the results will hover over it.
April 28, 2021 at 4:58 pm #32982Alex Meda
ParticipantYou cannot access this content.
April 29, 2021 at 8:45 am #32993Ernest Marcinko
KeymasterHi,
The issue is caused by carbon cloning of the search element within the header. When I start scrolling a duplicate copy is made via a custom script of the search and I guess that is used within the scroll window: https://i.imgur.com/HLDV3zO.png
That is a very bad practice, and usually causes major issues. I designed the plugin to try to resolve these if possible, so that is why the plugin does work initially, but the isotope script fails at some point due to bad variable pointers. I’m afraid I can’t do anything about that from the plugin perspective, as the whole script would have to be deconstructed.
The best and easiest solution would be to use a different sticky header script, which does not use a javascript clone mechanism.April 30, 2021 at 5:44 am #33012Alex Meda
ParticipantThanks a lot for all the details 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.