I was wondering if anyone knew of a way to show specific styles to the activity loop depending on the activity type?
This is what I had an idea of:
function mycustom_act_type() {
if ('friendship_created' != bp_get_activity_type() )
echo ' style="background:red;" ';
}
and this is in the <li> whithin the loop:
<li <?php mycustom_act_type()?> >blah </li>
but obviously doesn't work. Any ideas?
