ASP Filters Box Disappears

Home Forums Product Support Forums Ajax Search Pro for WordPress Support ASP Filters Box Disappears

This topic contains 39 replies, has 2 voices, and was last updated by Alex Meda Alex Meda 2 years, 10 months ago.

Viewing 15 posts - 16 through 30 (of 40 total)
  • Author
    Posts
  • #32385
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Thank 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.png

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #32402
    Alex Meda
    Alex Meda
    Participant

    I got it 🙂
    Once again, thanks a lot for everything!

    #32473
    Alex Meda
    Alex Meda
    Participant
    You cannot access this content.
    #32482
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Well, 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;
    }
    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #32503
    Alex Meda
    Alex Meda
    Participant

    Thanks a lot, the first code is the best choice in the current case 🙂

    #32748
    Alex Meda
    Alex Meda
    Participant
    You cannot access this content.
    #32753
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    It 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.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #32755
    Alex Meda
    Alex Meda
    Participant

    Thanks Ernest,
    I will check this out !

    #32902
    Alex Meda
    Alex Meda
    Participant
    You cannot access this content.
    #32913
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    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.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #32937
    Alex Meda
    Alex Meda
    Participant
    You cannot access this content.
    #32938
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Try 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.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #32982
    Alex Meda
    Alex Meda
    Participant
    You cannot access this content.
    #32993
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    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.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #33012
    Alex Meda
    Alex Meda
    Participant

    Thanks a lot for all the details 🙂

Viewing 15 posts - 16 through 30 (of 40 total)

You must be logged in to reply to this topic.