Here is how I would do it so you will still have the ability to use both user1 and user2. In other words you can use either module by itself of have both active. The modules will stack down the center of the main content area of the template.
First change the following line in index.php under your templates directory (simply changing the conditional from && to ||):<?php
}
if ( mosCountModules( 'user1' ) && mosCountModules( 'user2' )) {
include('user1_user2.php');
}
?><?php
}
if ( mosCountModules( 'user1' ) || mosCountModules( 'user2' )) {
include('user1_user2.php');
}
?><?php defined( '_VALID_MOS' ) or die( 'Restricted access' ); ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" >
<?php if ( mosCountModules( 'user1' )) { ?>
<tr>
<td width="100%">
<div class="user1_inner">
<?php mosLoadModules ( 'user1', -2 ); ?>
</div>
</td>
</tr>
<?php }
if ( mosCountModules( 'user2' )) {
?>
<tr>
<td width="100%">
<div class="user2_inner">
<?php mosLoadModules ( 'user2', -2 ); ?>
</div>
</td>
</tr>
<?php } ?>
</table>
Unable to see the code