• csgaraglino

    (@csgaraglino)


    I’m running 1.2.0

    I have several links setup, but all have /go/ in the url.

    This the way it is currently working.
    http://www.ilgm.com/go/support

    This is the way is needs to work.
    http://www.ilgm.com/support

    In the admin, the permalink has /go/ in it and I can’t get it out.
    There are many reason ps this is not a good idea, but the top two is clumsy urls to send to people, use in ads and sharing – but it’s really bad practice for SEO – a site can actually be penalized for using them.

    Please advise.

    Warm regards,
    Chris Sgaraglino

    https://ww.wp.xz.cn/plugins/linker/

Viewing 1 replies (of 1 total)
  • Plugin Author Yakir Sitbon

    (@kingyes)

    You can’t do that. cuz in the new post type you need to set slug for the permalinks.

    But, if you want to setup all functions to CPT post, you can use with this code:

    add_filter( 'linker_post_type_slug', function ( $cpt ) {
    return 'post';
    } );
    
    add_filter( 'linker_skip_register_post_type', '__return_true' );

    For now, you can not see the posts in your website.

Viewing 1 replies (of 1 total)

The topic ‘Remove /go/ from links.’ is closed to new replies.