Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Activity Stream background different for admins and groups


LPH2005
Participant

@lph2005

After some help on other issues, this one is back to the forefront. The suggestion for a div tag seems reasonable, except the particulars are not very clear.

This was done in the forums using functions:

`function my_forum_is_first_post() {
global $topic_template;

if ( $topic_template->post->post_position == 1 )
return true;
return false;
}

function my_admin_post() {
global $topic_template;

if ( $topic_template->post->poster_id == 1 || $topic_template->post->poster_id == 117 || $topic_template->post->poster_id == 126 )
return true;
return false;
}`

Skip to toolbar