04/29/2016 at 10:08 am
#374618
Keymaster
@ Matthew
re: That worked for the char on the right. Can we do something like that for the search
After some experimentation this code snippet will work:
add_filter( 'cn_permalink', 'cn_permalink_team' );
add_filter( 'cn_form_open_action', 'cn_permalink_team' );
function cn_permalink_team( $permalink ) {
$permalink = $permalink . '#team';
return $permalink;
}
However, for this code to work, it required a tweak to Connections which in turn require an update. I made this tweak and will likely release this update early next week. So if you update your code snippet to the latest code it should just automagically work when the update is applied.
