05/09/2017 at 4:40 pm
#422342
Keymaster
@ Michael
I knew it made http text links into real links but it also does with text links that being with www. Honestly, I never really knew that until now. Connections applies a core WP filter called make clickable on the bio and notes before it is displayed. This filter automatically adds the http to both the www text and the href. There is no way to turn it off. What can be done is the make clickable filter can be removed. Install the Code Snippets plugin and add this as a new snippet:
add_action( 'plugins_loaded', 'cn_remove_make_clickable', 11 );
function cn_remove_make_clickable() {
remove_filter( 'cn_output_bio', 'make_clickable', 9 );
}
Hope that helps!
