Hi Eugene,
That’s a great question.
It is something of a customization so I’m afraid there’s a limit as to how deep we can go in answering it, but essentially it depends on whether you are using (and are happy building on) an existing SEO plugin or if you want to code something independently, from scratch.
Whichever approach you go for, you can detect the type of event view using some logic along these lines:
// For month views
if ( tribe_is_month() ) {
/* add code to tweak the meta output here */
}
// For list type views
elseif ( tribe_is_list_view() ) {
/* and again for list views */
}
I realize that is slightly vague, but without knowing how you are setting things up in the first place it’s tricky to assist further. Even so, does that help at all?