Something similar was taking place in drupal 7.
I have hook_views_query_alter in MODULENAME.views.inc file in the same folder as module file. I found out, that query handler is class views_plugin_query_default. Within that class:
function alter(&$view) {//dpm($view);
foreach (module_implements('views_query_alter') as $module) {//dpm($module);
$function = $module . '_views_query_alter';
$function($view, $this);
}
}
Is called, but can't find any module that implements hook...
Of course I cleared all the caches, even truncated tables cache_views and cache_views_data, all in vain.
AFAIR in drupal 7 similar problem solved itself automagically after some time, and hook_views_query_alter started to work. So maybe there is something else cached somewhere? Maybe .inc file is not being seen by backdrop? Access rights are as usual...
Recent comments
Try using caching in the View settings, set to 24 hours. This should work for anonymous site visitors.
View to show a different node each day
That would actually be a nice usability improvement. A lot of people already build search pages with Views, so having an easier way to convert the default search results into a View would make...
[UX] Convert search to a view.
Have you already played with Views random seed? I belief, what you try to achieve would work with that module. Show only one node and set the sort order to "Global: Random seed" with "...
View to show a different node each day
I found a long expired sandbox module for Drupal that would do this. https://www.drupal.org/sandbox/couloir007/2030621 I don't think I've ever used the Nodequeue module. It seems like...
View to show a different node each day
To add a summary of event details to the list below the title and customize the way the time is displayed. If this is part of the library then I guess the easiest way is to create a list...
FullCalendar Views - way to modify list view?