I am using buddypress along with BB theme and plugin.
as of now, the fl-post-header title is showing up on the individual profile pages of members. How can I remove this from only these pages?
Thanks for all your help!
I am using buddypress along with BB theme and plugin.
as of now, the fl-post-header title is showing up on the individual profile pages of members. How can I remove this from only these pages?
Thanks for all your help!
Those pages probably have a class on the body, something like bp-profile-page (I’m not sure exactly what it is without looking at it).
You could use that class to hide them like so…
.bp-profile-page .fl-post-header { display:none; }
Justin