1 (edited by zenphrog 2005-11-18 22:36)

Topic: puntal users... help?

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.

2

Re: puntal users... help?

I imagine you would edit the .tpl file that it uses.

Re: puntal users... help?

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>