When creating a new Series page, you may have noticed that Series does not have its own template. Because of this, building customizations onto that page doesn’t come from a template override, as do many of the other customizations with The Events Calendar.

The good news is that you can easily append the word “Series” (or anything else) to the Series page, making it easier for your users to identify the page as part of a Series.

Let’s take a look at how to make that happen!

Add “Series” to the Series page

To add the word “Series” to the Series page, simply add the following CSS to your stylesheet or through the WordPress Customizer. For the latter, you can add the CSS under Appearance > Customizer > Additional CSS. Here is the snippet you’ll want to add or modify to suit your needs:

.tribe_event_series-template-default h1.entry-title:after {
    content: " Series";
}