hi everyone
I m facing an issue with cache, i have a function in my theme onPageProcessed that insert open graph in head the vars come from my modular blueprints, all working ok with no cache
So if save a specific page, the others page "loose" their metadata
hope i'm clear maybe related to that thread https://getgrav.org/forum#!/plugin-development:header-injection
this is excerpt of my function
--- php
public function onPageProcessed(Event $e)
{
$page = $e['page'];
$header = $page->header();
$metadata = $page->metadata();
$uri = $this->grav['uri']->path();
$route = $page->route();