Osclass forums
Support forums => Themes => Modern => Topic started by: adv2sell on April 14, 2014, 01:25:01 pm
-
Hi
I could not find any solution for this... :-\ I would appreciate it if experts can assist on this....
I use modern theme 3.0.3 osclass version 3.2.2
thanks
-
By Cartanega
the search bar in modern theme is called in file main.php
you can comment the line
<div class="form_publish">
<?php osc_current_web_theme_path('inc.search.php'); ?>
</div>
in main.php and add the same code in header.php at the end of the file
this will show the search bar in every page of your site
comment mean add <?php /* CODE YOU WANT TO COMMENT */ ?>
so, find this code in main.php
<div class="form_publish">
<?php osc_current_web_theme_path('inc.search.php'); ?>
</div>
and change it with
<?php /* <div class="form_publish">
<?php osc_current_web_theme_path('inc.search.php'); ?>
</div> */ ?>
Thank you
-
Cartanega Thanks for your help! :)