By Fidel Carrera on Sunday, 18 November 2018
Posted in Technical Issues
Likes 0
Views 322
Votes 0
I was wondering how I can disable advanced search from the search page and from docker.

Thanks
Hey there,

Currently, there is no setting to do that. But you can hide it by adding the following CSS code into Backend > EasySocial > Themes > Custom CSS:


body #es .es-search-advance {
display: none;
}


Do clear all of your cache before you see the changes.

Can you have a try and see how it goes?
·
Monday, 19 November 2018 12:22
·
0 Likes
·
0 Votes
·
0 Comments
·
Awesome! Will that remove it from the docker popdown and on the search page?
·
Monday, 19 November 2018 16:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

Awesome! Will that remove it from the docker popdown and on the search page?


Yes. But for docker popdown, can you provide us with some screenshots so that we can have a better understanding of it and can confirm it for you.
·
Monday, 19 November 2018 16:48
·
0 Likes
·
0 Votes
·
0 Comments
·
That trick worked for the search page but not for docker. I can create an override if you help me find the file
·
Monday, 19 November 2018 19:46
·
0 Likes
·
0 Votes
·
0 Comments
·
That file is located at JoomlaFolder/components/com_easysocial/themes/wireframe/search/mini/default.php , open this file and remove this following code then override this file into your current template.

JoomlaFolder/templates/YourCurrentTemplate/html/com_easysocial/search/mini/default.php


<?php if ($showadvancedlink) { ?>
<li>
<a href="<?php echo ESR::search(array('layout' => 'advanced'));?>"><?php echo JText::_('COM_EASYSOCIAL_ADVANCED_SEARCH_LINK'); ?></a>
</li>
<?php } ?>
·
Tuesday, 20 November 2018 11:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Amazing!
·
Tuesday, 20 November 2018 12:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding.
·
Tuesday, 20 November 2018 12:56
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post