4
Unfortunatly, the only way to achieve what you want to do, is to clone the blocks, as you can only set the positon of a block once.
E.g.::User Menu
- take the file /modules/system/templates/blocks/system_block_user.html
- copy and name something like
system_block_user_left.html- open /modules/system/xoops_version.php in you editor
- insert the code, telling XOOPS about the extra template; it should look something like this
$modversion['blocks'][13]['file'] = "system_blocks.php";
$modversion['blocks'][13]['name'] = _MI_SYSTEM_BNAME2;
$modversion['blocks'][13]['description'] = "Shows user block";
$modversion['blocks'][13]['show_func'] = "b_system_user_show";
$modversion['blocks'][13]['template'] = 'system_block_user_left.html';
- go into sys admin -> modules, and update the system module
- if you are not using the default template set, you will need to
generate the new template
- now you can set the new user menu to appear within the newbb module, in the leftsidebar
Unfortunatly you will have to do this with every block you want to have appear in different location in your site.
....hope this helps....