Thank you. I have enabled Data Inspector and have noticed something.
Where my Groups are being displayed, it shows the Group of the Forum that i am viewing and below the Group, it is also showing all the Groups as well.
I have now gone one step further. Somehow I have managed to display the Forum on the list and the associated Topics on the right.
I am using this code:
if( $spThisForum->group_id == $spThisGroup->group_id )
sp_SectionStart('tagClass=spGroupViewSection', 'groupHeader');
sp_GroupHeaderName('tagClass=spHeaderName');
sp_SectionEnd('tagClass=spGroupViewSection', 'groupHeader');
sp_SectionStart('tagClass=spGroupViewSectionBox', 'groupHeader');
sp_SectionStart('tagClass=spGroupViewForumBox', 'groupHeader');
if (sp_this_forum()):
sp_SectionStart('tagClass=spGroupForumSection', 'forum');
sp_ColumnStart('tagClass=spColumnSection spLeft&width=12%&height=55px');
sp_ForumIndexIcon('tagClass=spRowIcon spLeft');
sp_ColumnEnd();
sp_ColumnStart('tagClass=spColumnSection spLeft&width=80%&height=55px');
sp_ForumIndexName('tagClass=spRowName', __sp('Browse topics in %NAME%'));
sp_ForumIndexDescription('tagClass=spRowDescription');
sp_ForumIndexPageLinks('tagClass=spInRowPageLinks spLeft', __sp('Jump to page %PAGE% of topics'));
sp_ForumIndexSubForums('icon=0', '', __sp('Browse topics in %NAME%')); sp_InsertBreak();
sp_ColumnEnd();
sp_InsertBreak();
sp_SectionEnd('', 'forum');
else:
sp_NoForumsInGroupMessage('tagClass=spMessage', __sp('There are no forums in this group'));
endif;
sp_SectionEnd('', 'groupHeader');
sp_SectionEnd('', 'groupHeader');
sp_SectionEnd('', 'groupView');
I have removed all unnecessary code from the above. When you have the time, could you look this over and let me know where i have gone wrong or whether I am on the right track.