Support Forum
well, I just have to apologize again for not being able to run this down... I feel really bad...
another generic, vague question that you may not understand what I am attempting to ask... I need to run down the details myself on the question... but...
have you modified any of the template tags for subforum elements to not 'bubble up' data from the lowest level? this would be counts ad such... there are arguments in some of the subforum template functions where you can have the parents include data from the lower level or not... by default, we include all the lower level forums but some dont want thtat... not even sure it affects unread status... but wanted to ask...
Visit Cruise Talk Central and Mr Papa's World
Mr Papa said
have you modified any of the template tags for subforum elements to not 'bubble up' data from the lowest level? this would be counts ad such... there are arguments in some of the subforum template functions where you can have the parents include data from the lower level or not... by default, we include all the lower level forums but some dont want thtat... not even sure it affects unread status... but wanted to ask...
Yes you are correct.
In the beginning of this year you (or maybe Andy) showed me how to hide the lowest level subforum from showing up in the group view. I changed the All nested option from 1 to 0.
sp_ForumIndexSubForums('allNested=0', __sp('Sub-Forums'), __sp('Browse topics in %NAME%')); |
well, as a quick test, what happens if you set that back to 1? I need to look at the code and see if that even matters for unread status (dont know)...
Visit Cruise Talk Central and Mr Papa's World
okay. thanks. focusing on the delete issue first.
Visit Cruise Talk Central and Mr Papa's World
Hi Steve,
When i tryed to add the 'allNested=0' argument to the spGroupView.php of my testforum, i found an argument that is used in the latest version of the default theme:
sp_ForumIndexSubForums('unreadIcon=sp_SubForumUnreadIcon.png', __sp('Sub-Forums'), __sp('Browse topics in %NAME%'));
thats missing in the spGroupView of my main forum:
sp_ForumIndexSubForums('allNested=0', __sp('Sub-Forums'), __sp('Browse topics in %NAME%'));
I tryed to add allNested before the new argument:
sp_ForumIndexSubForums('allNested=0', 'unreadIcon=sp_SubForumUnreadIcon.png', __sp('Sub-Forums'), __sp('Browse topics in %NAME%'));
but i supose i am doing something wrong or you simply can not add more than one extra argument, since unreadIcon=sp_SubForumUnreadIcon.png displays as text beside the subforums in groupview.
Take a look at http://sethwire.com/?page_id=6
if you have multiple arguments, they are just in one string, separated by an & symbol... so
sp_ForumIndexSubForums('allNested=0&unreadIcon=sp_SubForumUnreadIcon.png', __sp('Sub-Forums'), __sp('Browse topics in %NAME%'));
so that is good news... at least now we know whats causing the stoppage... I will have to do some research to see if that is by design or changeable... frankly, with allnested set to 0, that is a flag to not bubble up lower level subforum information to the parent level... so not really surprised the unread status icons follow that rule too... otherwise, you get mixed data... you would be showing an unread in one instance, but the rest of the data (last post info) wont match...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)