How can we help?

If you are looking for support for our PokaTheme, this is the place!

Home Forums PokaTheme support Disable archive page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #18607
    Asaf Bernstein
    Participant

    Can you please provide a suitable code for the updated theme?
    the below doesn’t work.

    add_filter( ‘register_post_type_args’, ‘change_slug_affiliates_cpt’, 10, 2 );
    function change_slug_affiliates_cpt( $args, $post_type ) {

    if ( $post_type == ‘affiliates’) {
    $args[‘has_archive’] = false;
    }

    return $args;
    }

    #18623
    admin
    Keymaster

    You can try this code instead in your child theme !

    add_filter( ‘register_post_type_args’, ‘change_slug_affiliates_cpt’, 10, 2 );
    function change_slug_affiliates_cpt( $args, $post_type ) {
    if ( $post_type == ‘affiliates’ ) {
    $args[‘has_archive’] = false;
    }
    return $args;
    }

    #18627
    Asaf Bernstein
    Participant

    Hi, It didn’t work, can you please take a look?

    #18630
    admin
    Keymaster

    It works at my end, Can you please provide credentials to your site in private message so we can look it further ?

    #18634
    Asaf Bernstein
    Participant

    I’ve sent you in private message

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.