Open lufik opened 6 years ago
The hook onTwigSiteVariables is fired after Twig template ( https://github.com/getgrav/grav/issues/1163 ).
It's enough to change the name of the hook to onTwigPageVariables and everything works like a charm:
$this->enable([ // 'onTwigSiteVariables' => ['onTwigSiteVariables', 0] 'onTwigPageVariables' => ['onTwigSiteVariables', 0] ]);
The hook onTwigSiteVariables is fired after Twig template ( https://github.com/getgrav/grav/issues/1163 ).
It's enough to change the name of the hook to onTwigPageVariables and everything works like a charm: