RMS Filter by AddonsLab

RMS Filter by AddonsLab [Paid] 2.1.0

No permission to buy ($69.99)
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 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...
 
Back
Top Bottom