It is impossible to disable automodals for filter tips with this module, even if you just want to use the module for other modals.
$items['filter/tips']['modal'] = TRUE;
Should become
$items['filter/tips']['modal'] = (isset($items['filter/tips']['modal']) ? $items['filter/tips']['modal'] : TRUE);
Comments
Comment #1
dave reidThanks for reporting this. I was thinking I should just probably remove this since the module is more of an API. What do you think?
Comment #2
geerlingguy commentedI would say remove it... make this module an api, and maybe show how someone could put filter tips into a modal in a code example or an api.php file.
Comment #3
rv0 commented+1 for removing the line.
Comment #4
dave reidDone!