Status
Not open for further replies.

nk2join

Banned
Banned
131
2010
35
0
I have installed IPB 3.2.3. there are two problem.
1. when I try to upload skin I get follow error
e98be12957.jpg


2. how to align subforum categories
4546a915b5.jpg


I will be very thankful if some can fix these problem
thanks in an advance.
regards
 
9 comments
What do you mean align? They are set to just list. If you want them aligned you will need to put them in a table.

In the boardIndexTemplate template.
 
There is a mod that can sort the subforums like this:

index.php


Mod is called: (DP31) Sort Subforums 1.0.0

This is what you can do with it:


  1. enable/disable mod,
    choose which groups can see sorted subforums,
    set in how many columns they should be displayed,
    - set sort order ( ASC or DESC ).

Its not a free mod, so you could search for alternative download forums.
Do also note that its not clear to me if the hook has been updated or if you can use for the latest version of IPB
 
...note that its not clear to me if the hook has been updated or if you can use for the latest version of IPB
People have requested for an updated version but that was in august so for now its still only for 3.1.x

I belive its possible to ask the skincreators to help with this and in this case it looks like one of Ehrens creations on IPBForumskins but correct me if Im wrong. :D
 
Show me the sub forums routine from your boardindex and maybe I can help.

Or use this as a guide
Code:
<ol class='subforums1'> 

<foreach loop="subforums:$forum_data['subforums'] as $__id => $__data"> 

</ol> 


<ol class='subforums2'> 

<if test="showSubForumsLit:|:$__data[3]"> 

</foreach> 

</ol> 



<ol class='subforums3'> 

<foreach loop="subforums:$forum_data['subforums'] as $__id => $__data"> 

</ol> 


<ol class='subforums'> 

<if test="showSubForumsLit:|:$__data[3]"><li class='newposts'><else /><li></if> 

<a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}" title='{$this->lang->words['go_to_forum']}'>{$__data[1]}</a></li> 

</foreach> 

</ol>
css
table.ipb_table ol.subforums {
margin-top: 3px;
float: left;
width: 33%;
}

table.ipb_table ol.subforums1 {
width: 33%;
}

table.ipb_table ol.subforums2 {
width: 33%;
}
 
Status
Not open for further replies.
Back
Top