1

(1 replies, posted in PunBB 1.2 discussion)

I know you can go back and edit the topic and post content itself, but is there a way to change the date and time for a post? For example I want to add a 'new' post from halloween that I had posted on another blog/site but I want it to show up on my PunBB site as if it was posted way back on Halloween instead of right now.

Thank you. I'm such a newbie. For future reference this is how you do it, very simple.

modules>news>template>main.tpl

in main.tpl find:

<div id="puntal_sidebar">
<puntal_bloc_classic_menu>
<puntal_bloc_custom_menu>
<puntal_bloc_custom_bloc>
<puntal_bloc_custom_menu_bis>
<puntal_bloc_custom_bloc_bis>
<puntal_bloc_downloads>
<puntal_bloc_login>
<puntal_bloc_recent_topics>
<puntal_bloc_active_topics>
<puntal_bloc_lang_switcher>
<puntal_bloc_style_switcher>
<puntal_bloc_online>
<puntal_bloc_stats>
<puntal_bloc_archives>
</div>

now move <puntal_bloc_login> to the top:

<div id="puntal_sidebar">
<puntal_bloc_login>
<puntal_bloc_classic_menu>
<puntal_bloc_custom_menu>
<puntal_bloc_custom_bloc>
<puntal_bloc_custom_menu_bis>
<puntal_bloc_custom_bloc_bis>
<puntal_bloc_downloads>
<puntal_bloc_recent_topics>
<puntal_bloc_active_topics>
<puntal_bloc_lang_switcher>
<puntal_bloc_style_switcher>
<puntal_bloc_online>
<puntal_bloc_stats>
<puntal_bloc_archives>
</div>

If I'm posting this in the wrong forum, I apologize. My question is about Puntal.. How do I change the order of the blocks/menus. For example, you have the Menu, Links and Login box on the left side in that order, I want to move the Login box to the top of the menu list. I looked over the official Puntal site but I do not understand french and google translation isn't working correctly on their document wiki or forums.