Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Nick Sotiriadis

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 23 total)
  • Nick Sotiriadis in reply to:
    Empty values for number ranges
    #267766

    Thank you for your reply Trevor, unfortunately, what you suggested is not quite what I am looking for.

    Back to my original question, is there at least a way to manipulate the $inputobject of the range number input field? If so, is there an example? Looks like the input object is split in 3 arrays and am not sure if I am not pointing the values correctly, or if it simply doesn’t work.

    Really, I am looking forward to V3, it’s too bad that there’s no roadmap, and tbh, I am really scared of all the changes that will have to occur. I have written so many custom stuff, hopefully the migration will be easier that I anticipate.

    I know I’ve asked a million times, but maybe this time there’s an estimated release date?

    Nick Sotiriadis in reply to:
    Some search fields are showing values instead of labels
    #267714

    Ok, so, I seem to have found what the problem was.

    When I had initially created my ACF checkboxes, I only used labels, so I had to leave the is ACF field? unchecked inside my s&f form for the filters to be created properly.

    Now that I switched to the key:value format, I must check the ACF checkbox.

    I think it would be a good idea to document this – maybe even add some information on the is ACF field? tooltip to help people out.

    Thanks for being around though!

    Nick Sotiriadis in reply to:
    Some search fields are showing values instead of labels
    #267574

    Hello Trevor,

    unfortunately I cannot share with you admin credentials, since the site includes sensitive data. I am going to make a few changes later on today and get back to you with a link to the site if it doesn’t fix anything. Looks like re-creating the ACF fields saved some parts of the app.

    Thanks for the continuous support!

    Nick Sotiriadis in reply to:
    Range inputs and auto submit form
    #266456

    Actually I ended up combining my solution with the one in the link I added… so essentially the form auto submits either when you hit enter OR focus out.

    Nick Sotiriadis in reply to:
    Range inputs and auto submit form
    #266454

    Actually, I found my solution to my own problem and thought I should share..

    I searched this forum and found this:
    https://support.searchandfilter.com/forums/topic/prevent-range-number-from-auto-submit/page/2/

    So, This is what I did in the latest version.

    At #2818 I replaced this:

    $this.on('input', 'input[type="number"]', function(e) {
      self.inputUpdate(800);
    });

    With this:

    $this.on('keyup', 'input[type="number"]', function(e) {
      if(e.which == 13) {
        self.inputUpdate(200);
      }
    });

    Now, you have to hit enter to auto-update the form.

    Nick Sotiriadis in reply to:
    Is there a limit to the number of filters allowed?
    #262544

    Perfect Trevor, this was it! Would have never guessed.

    Thanks!

    Nick Sotiriadis in reply to:
    Ajax search back button not refreshing results
    #258781

    Thanks! Can’t wait for v3 to be released!

    Nick Sotiriadis in reply to:
    Ajax search back button not refreshing results
    #258768

    Ever since HTML5 there has been history.pushState() and history.popstate().

    Essentially on every ajax call you send a pushState call and then you can use that when using the back button – and it can be developed with minimum effort since you are already changing the url hash – so in every use of back button you could trigger an ajax request based on the hash.

    Adding link for reference:
    https://developer.mozilla.org/en-US/docs/Web/API/Window/popstate_event

    Nick Sotiriadis in reply to:
    Ajax search back button not refreshing results
    #258659

    So… what’s the point of changing the url query cars if the back button is not working?

    If the back button doesn’t work then Ajax is useless. Are there any workarounds?

    Nick Sotiriadis in reply to:
    Number Ranges Min-Max values
    #258340

    Hello again,

    is there a way to calculate the count in ranges?

Viewing 10 posts - 1 through 10 (of 23 total)