HI cplanetdoo,
You can open up this file: templates/ja_lens/index.php (ja_lens here is your default template’s name)
Replace:
[PHP]<?php if (!jaTpl_check (‘islayoutview’) && $this->countModules(‘search’) ) { ?>
<!– SEARCH –>
<div id=”search”>
<div class=”btn-toggle search-toggle”>
<span>Search</span>
</div>
<div class=”inner search-inner clearfix”>
<jdoc:include type=”modules” name=”search” />
</div>
</div>
<!– //SEARCH –>
<?php } ?>[/PHP]
With:
[PHP]<?php if ($this->countModules(‘search’) ) { ?>
<!– SEARCH –>
<div id=”search”>
<div class=”btn-toggle search-toggle”>
<span>Search</span>
</div>
<div class=”inner search-inner clearfix”>
<jdoc:include type=”modules” name=”search” />
</div>
</div>
<!– //SEARCH –>
<?php } ?>[/PHP]
and make sure that you assign this module to homepage in menu assignment section in backend settings of this module.
Hope this helps.