Re: Adding a URL to Profile Field Setup
@member11 – rather than enclosing your website URL in brackets (and making your users do the same) you’d be better off specifying the website URL field in the config file as @r-a-y suggests, so that it’s not linked to the search facility:
Open up the custom-profile-filters-for-buddypress.php file and in the $no_link_fields array (starting on line 14) add in your field, so mine looks like this:
$no_link_fields = array( // Enter the field ID of any field that you want to appear as plain, non-clickable text. Don’t forget to separate with commas.
‘Skype ID ‘ ,
‘Phone’ ,
‘IM’ ,
‘Web Site’
);
– where my web site field is called Web Site.
Also you may want to add in any social networking URLS that your site uses in the $social_networking_fields array that’s below this array. Same principle.