Hi @9ball
Thank you for your interest in the Filter Everything plugin.
There is a possibility to create a custom reset button, If you remove the apply button from “apply button” mode how can you apply all of the filters that you have chosen?
You can use this example of the code:
function reset_filters_button_shortcode() {
if( class_exists( 'FilterEverything\Filter\UrlManager' ) ){
$urlManager = new \FilterEverything\Filter\UrlManager();
$resetUrl = $urlManager->getResetUrl();
return 'Reset filters';
}
return '';
}
add_shortcode('reset_filters_button', 'reset_filters_button_shortcode');
And use the shortcode [reset_filters_button] where you want the reset button to appear.
Best Regards – Victor