@AJD I realise this is an old topic but I think I’ve just been looking at doing the same thing as you, so thought I’d share my solution.
I have no buddypress, and wanted to have a list of members which also showed the info we’ve set for their profile (as I can’t link to an individual profile page for each member).
The reason the content is cut down to about 50 characters is the ‘white-space’ setting in the s2member-pro.css as this is set to white-space:nowrap;
. This needs to be set to white-space:normal;
.
So go to /wp-content/plugins/s2member-pro/src/includes/s2member-pro.css
find the bit of css that has the white-space:nowrap;
in, copy it into your child theme style.css and change it to white-space:normal;
(maybe with the !important setting too).
Sorted! Hope this helps you, or anyone else looking to fix this issue.