BuddyPress – Profile Field – Open Link in New Window
-
On the Members Profile page I’d like to have the Profile Field URL open in a new window.
I found the following article regard this issue.
https://buddypress.org/support/topic/profile-fields-open-url-in-new-tab-_blank/
I’ve tried the mentioned function below but its not working.
function swiss_target_blank( $field_value, $field_type, $field_id ){ if( $field_id == 6 ) { $field_value = str_replace('rel="nofollow"', 'rel="nofollow" target="_blank"', $field_value); } return $field_value; } add_filter('bp_get_the_profile_field_value', 'swiss_target_blank', 11, 3);
It works when I modify the core file located at buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-url.php, line 176. I’d like to find a way to do this without editing the core.
The article referenced above was written about 4 years ago. Has someone changed recently that would prevent the function from working?
Can someone please point me in the right direction? Thx
- You must be logged in to reply to this topic.