Need a special offer?Find out if your project fits.
+

Disabling the new features in 2.7.0

Answered
Christopher Phillips asked on May 10, 2019

Hi,
My team would like to know if we would be able to disable the new "Filters" available since the 2.7.0 release? Our app is currently on 2.6.13 but would like to be able to disable just these filters (Label and Value) with a boolean value in the options. We would like to get all the other bug fixes and improvements but would like that feature to be optional.
Or if your team would be able to back port your bug fixes that would be a great option as well.
 
Thanks,
Chris

2 answers

Public
Vera Didenko Vera Didenko Flexmonster May 13, 2019

Hello, Chris,
 
 
Thank you for your question.
 
 
As a workaround, the desired feature can be achieved via CSS:

/* Hide filter options: */

#fm-filter-label,
#fm-labels-filter-btn,
#fm-values-filter-btn {
visibility: hidden !important;
}

Here is a JSFiddle example for illustration.
 
This way backporting is not necessary since the CSS workaround provides the desired output.
 
Please let us know if such a solution would work for you.
 
We are looking forward to hearing from you.
 
 
Best Regards,
Vera

Public
Christopher Phillips May 14, 2019

Thank you Vera that works for us!

Please login or Register to Submit Answer