- Issue created by @geekygnr
When trying to override the template I ran into some challenges because the file name for the template begins with `block--` which is what the file name suggestions for the block surrounding the content are.
Copy the template from the module and put it in your theme
Change the template file name and suggestions. As a short term solution I added this into a hook_theme_suggestions_alter and it seems to be working so far.
if ($hook == 'exposed_filter_data_block') {
$suggestions[] = 'exposed_filter_data_block';
}
Active
1.0
Code