This topic contains 18 replies, has 3 voices, and was last updated by Ninja Lead 10 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
<em>@mattsh 445777 wrote:</em><blockquote>Thanks!
But I need the solution for T3 (the latest version), I have this solution already for T3 v2.</blockquote>
Could you describe problem you face with T3 in more details so that I can help?
I dont want show a search field for mobile devices, but in all others. But the search button should be visible for all devices.
If you want to show a search form in mobile devices you can use this way
Open templates/ja_university_t3/tpls/blocks/header.php file
Find and change
<?php if ($this->countModules('head-search')) : ?>
<!-- HEAD SEARCH -->
<div class="head-search <?php $this->_c('head-search') ?>">
<jdoc:include type="modules" name="<?php $this->_p('head-search') ?>" style="raw" />
</div>
<!-- //HEAD SEARCH -->
<?php endif ?>
to
<?php if ($this->countModules('head-search')) : ?>
<!-- HEAD SEARCH -->
<div class="head-search <?php $this->_c('head-search') ?> hidden-xs hidden-sm visible-md visible-lg">
<jdoc:include type="modules" name="<?php $this->_p('head-search') ?>" style="raw" />
</div>
<!-- //HEAD SEARCH -->
<?php endif ?>
1 user says Thank You to Ninja Lead for this useful post
This topic contains 18 replies, has 3 voices, and was last updated by Ninja Lead 10 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum