top



[solved] How can I delete this Column ?  22870205
[solved] How can I delete this Column ?  51745686


PHPBB 2

Thank's !

A simple way could be template editing.
Go and find following part in "Generel admin." -> "Home page : categories list" and delete it.

Code:
      <td class="{catrow.forumrow.INC_CLASS}" align="center" valign="middle">
         <img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
      </td>

I deleted it but it is messing up the other columns... The last topic is not displayed correctly... xD

Thank's...

then just hide it with CSS

Code:
style="display:none;"
add this part to the td tag

The same thing.... Uhhhmm... Forget it... I hate phpbb2 Evil

You can delete only this :

Code:
<img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />


EDIT: I found a solution Smile so, first of all delete this
Code:
      <td class="{catrow.forumrow.INC_CLASS}" align="center" valign="middle">
         <img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
      </td>

Second, replace this:
Code:
      <th nowrap="nowrap" width="50">{L_POSTS}</th>
with this:
Code:
      <th colspan="2" nowrap="nowrap" width="50">{L_POSTS}</th>
Then find this:
Code:
      <td class="row3" align="center" valign="middle" height="50">
         <span class="gensmall">{catrow.forumrow.TOPICS}</span>
      </td>
and replace with this:
Code:
      <td colspan="2" class="row3" align="center" valign="middle" height="50">
         <span class="gensmall">{catrow.forumrow.TOPICS}</span>
Finally find this:
Code:
      <td class="row3 over" align="center" valign="middle" height="50">
         <span class="gensmall">{catrow.forumrow.LAST_POST}</span>
and replace it with this:
Code:
      <td colspan="2" class="row3 over" align="center" valign="middle" height="50">
         <span class="gensmall">{catrow.forumrow.LAST_POST}</span>

Save & Publish
- I have tested this already on my test forum and it works fine.
btw - sorry for my bad english :/

THANK YOU very much !!! Works perfect !

You're welcome Smile

Solved | Locked