• Resolved romanzif

    (@romanzif)


    Hi, how i can turn-off related posts on event pages?
    Thanks

    Tried to add

    function jetpackme_no_related_posts( $options ) {
      if ( 'event' == get_post_type() ) {
        $options['enabled'] = false;
      }
    
    return $options;
    }
    add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_no_related_posts' );

    Didnt help.

    Maybe problem with post-type name?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @romanzif ,
    Thanks for reaching out to us,

    I think that you are using the right filter there.
    Could you try changing the If condition to (is_singular( ‘tribe_events’ )) ?

    Let me know if this changes anything

    Best
    Santiago

Viewing 1 replies (of 1 total)

The topic ‘Related posts’ is closed to new replies.