Hi Alex,
Thanks for the plugin update. Images are now working in the backend but I’m still having issues displaying them on the user’s profile similar to @cracyd’s issue.
I’ve tried the field_id
solution you suggested and many other methods but they all return: <img src="https://mydomain.com/wp-content" alt="image">
These are some other implementations I’ve tried:
echo bp_profile_field_data( 'field=47' );
echo xprofile_get_field_data(47);
echo bp_get_profile_field_data(array('field' => '47', 'user_id' => '4'));
echo bp_get_profile_field_data(array('field' => '47'));
echo xprofile_get_field_data('Image 1');
echo xprofile_get_field_data(array('field' => '47', 'user_id' => '4'));
echo xprofile_get_field_data(array('field' => '47'));
Is there something I’m possibly missing?
Many thanks.