ArnyVee, I believe I have narrowed it down to a specific problem, and plan on looking at possible changes tomorrow. The issue chipit posted will include a patch file soon (if I can figure svn diff out).
Sounds good.
I've gone back and took out the edits that I did with the mod. Unfortunately, I didn't save my template beforehand, so now I have to backtrack and do some diggin' to see how it originally displayed. That's what I get for not backing up!
I'll keep an eye out for the fix tomorrow. Thanks!
Content Encoding Error
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
* Please contact the website owners to inform them of this problem.
Bob/KK, I already mentioned it to Bree...but, there were some issues with the page going way wide due to Cyb's Sub Forum mod. Bree is working on a fix, but just an FYI.
Bob/KK, I already mentioned it to Bree...but, there were some issues with the page going way wide due to Cyb's Sub Forum mod. Bree is working on a fix, but just an FYI.
All you do is follow directions it tells you within there mod and 0 issues tells you exactly what to do go to those to plugins in CYB mod and add the OR statement. Works perfect.
My issue I am having is the tabs are not showing JUST X forum id but showing ALL no matter what I do which is very strange. I went back to full your js everything and same issue so has nothing to do with my doing different js calls.
Anyone else getting this issue? No errors just shows all forums no matter what Id's I put. I followed pictures to the T as examples still no go.
if you do within plugin:
print_r($content);
It is showing correct forums and info example:
tID=1&tabcat[]=1&
tID=2&tabcat[]=1&tabcat[]=47&
if you do within plugin:
print_r($GLOBALS[tabcats]);
It is showing correct forums and info example:
Array ( [0] => 1 )
Array ( [0] => 1 , [1] => 47)
My issue I am having is the tabs are not showing JUST X forum id but showing ALL no matter what I do which is very strange. I went back to full your js everything and same issue so has nothing to do with my doing different js calls.
Anyone else getting this issue? No errors just shows all forums no matter what Id's I put. I followed pictures to the T as examples still no go.
Yes, for some reason, the Encoding Error just vanished and now I can view the forums, but I am getting that issue.
It isn't showing "X" Forums, it is showing all of them. And I am getting no spacing between each category, for example it should look like:
Yes, for some reason, the Encoding Error just vanished and now I can view the forums, but I am getting that issue.
It isn't showing "X" Forums, it is showing all of them. And I am getting no spacing between each category, for example it should look like:
But it is going:
I just noticed that as well the forums spacing is gone it is all smooshed together. testing on 5 different styles FYI
It has to do with if statement:
<if condition="(THIS_SCRIPT == 'indexTAB' AND in_array($forum['forumid'], $GLOBALS[tabcats]) OR in_array('all',$GLOBALS[tabcats])) OR THIS_SCRIPT == 'forumdisplay'">
if you make it:
<if condition="(THIS_SCRIPT == 'indexTAB' AND in_array($forum['forumid'], $GLOBALS[tabcats]))">
It works for the direct forum add tab BUT not the modules.
Real weird got it working on one style now but still all the others messed up and NOT working with modules just tabs with forums.