Support

Home Forums Event Espresso Premium People Type achive title and teaser text

People Type achive title and teaser text

Posted: September 24, 2017 at 4:05 pm


sogtalks@gmail.com

September 24, 2017 at 4:05 pm

Hi,

I would like to change this archive title People Type: Presenter to Presenters.

Trying this in functions in child theme:

function my_custom_people_archive_title( $title ) {
    if ( is_post_type_archive( 'espresso_people' ) ) {
        $title = 'Presenters';
    }
    return $title;
}
add_filter( 'get_the_archive_title', 'my_custom_people_archive_title' );

That is not working.

I see that EE People has automatically added “[site_name] featured speaker” text below the Poeple archive page title, where could I edit/remove this text.

Thank you for your help.


Josh

  • Support Staff

September 25, 2017 at 10:48 am

Hi there,

I’m not sure that Event Espresso actually adds the “[site_name] featured speaker” text below the Poeple archive page title, that may be something your theme is adding.

The code you have in place right now will change the archive text for the /people/ archive page (if the theme allows filtering there). For the people-type/presenters page you’ll use a different conditional e.g.:

if ( is_tax( 'espresso_people_type', 'presenter' ) ) {


sogtalks@gmail.com

September 25, 2017 at 11:54 am

Josh,

Thank you. Originally when I visited Manage People admin, clicked on the “View People Archive Page” button it took me to a sub-category page of the specific people type. It was this page that was generating the teaser message and not complying with the filter text/change title text. I revisited the link looking for /people/ and now I get what I want. I will ignore the sub-category archive teaser for now as I don’t/won’t need it.

Thank you. Closed.

The support post ‘People Type achive title and teaser text’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso