Recent Topics

1 Aug 11, 2005 04:36    

I am trying to make it so that articles in other Blogs are not published on the main page. How do I set this up to not do that?

Thank you.

3 Aug 11, 2005 12:28

make a new skin for blog all

and put

after

if( isset($MainList) ) while( $Item = $MainList->get_item() )
	{


this code


	if ($Item->get('blog_ID') == '4' ) continue;

this would only show entries that are not in blog 4

mikel

4 Aug 11, 2005 13:18

but : if you place 10 posts on 1 page, and there are 4 posts that are from blog 4, you will only see 6 posts on that page.

5 Aug 11, 2005 16:14

Thank you everyone.

What I did was make another blog the default blog. Now the main page only has what I want on it. The community page has everything.

Thanks again.


Form is loading...