Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Stephen Harris

    (@stephenharris)

    The default templates just call get_header() which should load your header.php. So the <title> attribute will be whatever is set by your theme there.

    I don’t know if perhaps the SEO plug-in changes something (or doesn’t) for custom post types. But really, the header should be included as everywhere else in the theme, and there’s nothing Event Organiser does to header.php, it’s all left to the theme.

    Perhaps digging into header.php might reveal the issue. Typically you might see something like:

    <title><?php wp_title( '|', true, 'right' ); ?></title>

    but keep in mind that the output of that function is filtered (and almost certainly is by the SEO plug-in).

    Thread Starter Marzypann

    (@marzypann)

    Thanks for this, Stephen.

    I deactivated the SEO plugin I was using and voila! The Events page renders how it should be.

    Now to make manual changes to the SEO… :-/

    Really appreciate the quick response, thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing the Page Title of the Archive Page?’ is closed to new replies.