WPIntell

Source evidence

Remove /go/ from links.

Linker – URL shortener & track outbound link clicks · support · 2016-05-28T12:54:00+00:00

complaintsentiment
mediumseverity
0.75relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 25 rows with source links

20.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

20 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
csgaraglino unresolved
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://wordpress.org/plugins/linker/ 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.

Comments

1 shown
Yakir Sitbon 2016-05-30T11:20:00+00:00

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.