Nov 24, 2022 8:04 am
Hi, I want to change link only in participant profil website to DoFollow rell. But not for links on forum topics. Can anyone help me?
2 Replies
Nov 24, 2022 9:12 am
Hi @edy-pras,
You can use this code to remove the nofollow rel from the profile website links. Put this code in a PHP snippet of the Code Snippets plugin or insert it directly in the functions.php file of the current active WordPress theme.
add_filter('wpforo_form_prepare_values', function( $field ){
if( 'url' === wpfval($field, 'type') ){
$field['value'] = str_replace('rel="nofollow"', '', $field['value']);
}
return $field;
}, 10);