Viewing 2 replies - 1 through 2 (of 2 total)
  • kaniamea

    (@kaniamea)

    Hi Craig,

    You can add this to your theme functions.php file:

    add_filter('wpseo_title','my_custom_titles');
    function my_custom_titles($title) {
    if( tribe_is_month() && tribe_is_list() &&  !is_tax() ) {
    return 'YOUR TITLE HERE';
    } else {
    return $title;
    }
    }
    Plugin Contributor leahkoerper

    (@leahkoerper)

    It’s been a month, so in accordance with our forum guidelines I’m marking this thread resolved. Thanks for your support!
    ~Leah

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Events list / Grid Page Title’ is closed to new replies.