1. Commented out /*$event->addItem($item, 1);*/ , to hide Signup tab as well as admin tab, in console event handler.php
2. Modified Join_index.html. Bg image thing did not work though.
{style}
{literal}
.ow_menu_wrap, .ow_main_menu {
display:none !important;
}
body {background-image: url('
http://ugintl.byethost10.com/...es/theme_image_3.jpg');
background-attachment: scroll;
background-repeat: no-repeat;
background-size: 100%;
height: 100%;
width: 100%;
background-position: center top;
}
{/literal}
{/style}
{block_decorator name="box" type="empty" addClass="ow_right"}
{if isset($notValidInviteCode)}
{block_decorator name="box" type="empty" addClass="ow_center" style="padding:15px;"}
{text key="base+join_not_valid_invite_code"}
{/block_decorator}
{else}
{if $step == 1}
{block_decorator name="box" type="empty" addClass="ow_center" style="padding:15px;"}
{text key="base+join_promo"}
{/block_decorator}
{/if}
{block_decorator name='box' type='empty' iconClass='ow_ic_user' langLabel='base+join_form_title'}{/block_decorator}
{form name=joinForm}
<table class="ow_table_1 ow_form">
{if $displayAccountType==true}
{cycle assign='alt' values='ow_alt1,ow_alt2'}
<tr class=" ow_tr_first ow_tr_last">
<td class="{$alt} ow_label">
{label name='accountType'}
</td>
<td class="{$alt} ow_value ow_center">
{input name='accountType'}
<div style="height:1px;"></div>
{error name='accountType'}
</td>
<td class="{$alt} ow_desc">
{question_description_lang name="accountType"}
</td>
</tr>
<tr class="ow_tr_delimiter"><td></td></tr>
{/if}
{foreach from=$questionArray key='section' item='questions' name='section'}
{if !empty($section) }<tr class="ow_tr_first"><th colspan="3">{text key="base+questions_section_`$section`_label"}</th></tr>{/if}
{foreach from=$questions item='question' name='question'}
<tr class=" {if empty($section)}ow_tr_first{/if} {if $smarty.foreach.question.last && $question.name!='password'}ow_tr_last{/if}">
<td class="{if !empty($question.trClass)}{$question.trClass}{/if} ow_label">
{label name=$question.name}
</td>
<td class="{if !empty($question.trClass)}{$question.trClass}{/if} ow_value">
{input name=$question.name}
<div style="height:1px;"></div>
{error name=$question.name}
</td>
<td class="{if !empty($question.trClass)}{$question.trClass}{/if} ow_desc">
{question_description_lang name=$question.realName}
</td>
</tr>
{if $question.name=='password'}
<tr class="{if $smarty.foreach.question.last}ow_tr_last{/if}">
<td class="{if !empty($question.trClass) && $question.trClass == 'ow_alt1'}ow_alt2{else}ow_alt1{/if} ow_label">
{label name='repeatPassword'}
</td>
<td class="{if !empty($question.trClass) && $question.trClass == 'ow_alt1'}ow_alt2{else}ow_alt1{/if} ow_value">
{input name='repeatPassword'}
<div style="height:1px;"></div>
{error name='repeatPassword'}
</td>
<td class="{if !empty($question.trClass) && $question.trClass == 'ow_alt1'}ow_alt2{else}ow_alt1{/if} ow_desc">
{question_description_lang name='repeatPassword'}
</td>
</tr>
{/if}
{/foreach}
{if !empty($section)}<tr class="ow_tr_delimiter"><td></td></tr>{/if}
{/foreach}
{if $isLastStep}
{if $display_photo}
<tr class="ow_tr_first"><th colspan="3">{text key="base+questions_section_user_photo_label"}</th></tr>
{cycle assign='alt' name=userPhoto values='ow_alt1,ow_alt2'}
<tr class=" ow_tr_last">
<td class="{$alt} ow_label">
{label name='userPhoto'}
</td>
<td class="{$alt} ow_value">
{input name='userPhoto'}
<div style="height:1px;"></div>
{error name='userPhoto'}
</td>
<td class="{$alt} ow_desc">
{question_description_lang name='user_photo'}
</td>
</tr>
<tr class="ow_tr_delimiter"><td></td></tr>
{/if}
<tr class="ow_tr_delimiter"><td></td></tr>
<tr class=" ow_tr_last">
<td class="{$alt} ow_label">
{label name='termOfUse'}
</td>
<td class="{$alt} ow_value">
{input name='termOfUse'}
<div style="height:1px;"></div>
{error name='termOfUse'}
</td>
<td class="{$alt} ow_desc">
</td>
</tr>
{/if}
</table>
<div class="clearfix">
<div class="ow_center">
{submit name='joinSubmit'}
</div>
</div>
{/form}
{/if}
{/block_decorator}
I am not a developer. Sometimes i try myself and also look for new tricks on forums