RMS Filter by AddonsLab

RMS Filter by AddonsLab [Paid] 2.1.0

No permission to buy ($69.99)
We have just released the upgraded version, please apply and let us know if there are any issues.

Thank you!

Thanks for the update @AddonsLab. Unfortunately, it doesn't seem to be working with XF2.3. I believe it's related to Template Modifications not being applied.
 
some templates still rely on jquery

template rmsf_rms_filter_form_macros

Code:
    <xf:js>
        jQuery.extend(XF.phrases, {
        s2_error_loading: "{{ phrase('s2_error_loading')|escape('js') }}",
        s2_input_too_long: "{{ phrase('s2_input_too_long')|escape('js') }}",
        s2_input_too_short: "{{ phrase('s2_input_too_short')|escape('js') }}",
        s2_loading_more: "{{ phrase('s2_loading_more')|escape('js') }}",
        s2_maximum_selected: "{{ phrase('s2_maximum_selected')|escape('js') }}",
        s2_no_results: "{{ phrase('s2_no_results')|escape('js') }}",
        s2_searching: "{{ phrase('s2_searching')|escape('js') }}"
        });
    </xf:js>

fix
Code:
    <xf:js>
        XF.phrases = Object.assign(XF.phrases || {}, {
            s2_error_loading: "{{ phrase('s2_error_loading')|escape('js') }}",
            s2_input_too_long: "{{ phrase('s2_input_too_long')|escape('js') }}",
            s2_input_too_short: "{{ phrase('s2_input_too_short')|escape('js') }}",
            s2_loading_more: "{{ phrase('s2_loading_more')|escape('js') }}",
            s2_maximum_selected: "{{ phrase('s2_maximum_selected')|escape('js') }}",
            s2_no_results: "{{ phrase('s2_no_results')|escape('js') }}",
            s2_searching: "{{ phrase('s2_searching')|escape('js') }}"
        });
    </xf:js>
 
Last edited:
I just tried it forgetting what happened here. Doesn't work with 2.3 yet.
 
Correction - it now works for me and required something new and can confirm it works.
 
I have created RMS fields with a TON of options and the filter sidebar is now a mile long.

Can a triangle be added to each field option that will then open up and reveal all of the possible checkmarks instead of showing them all at once?
 
AddonsLab updated RMS Filter by AddonsLab with a new update entry:

Collapsible custom field filters

This release introduces an option to make custom field filters collapsible in the RMS filter form, improving usability for forms with many fields.

A new admin option is available:

- Collapse custom field filters
- None
- Checkbox and radio option lists
- All custom fields

When enabled, custom field filter blocks are collapsed by default and can be expanded:
  • by clicking the field header/title
  • by clicking the caret...

Read the rest of this update entry...
 
This is odd.. when I type in an item in the filter it shows results but automatically selects a random filter field I didn't select.

Is anyone else seeing that?
 
Back
Top Bottom