Hi Brajesh,
I see that when i enter multiple lines in x-profile textarea and display it they show up on the same line.
for example - if i save this
line1
line2
it shows up as -
line1 line2
To fix this i added the following line
add_filter( 'bp_get_member_profile_data', 'wpautop' );
This fixed the pbm with text area, not everything shows up well formatted.
But a new line
is entered after every text input as well.
So let say I have two text fields state and city, and i want to display them as state,city but now they are displayed as
state
city
How can I fix this?