By Danny on Sunday, 05 January 2014
Posted in General Issues
Replies 5
Likes 0
Views 882
Votes 0
Hi,

I would like to remove the searchbar on a few specific pages, but can't seem to locate the file that I need to modify for this.
I would like to remove the searchbar from the page were a user posts his question. (Actually the same as you have it, you also don't have a searchbar here).
Can you direct me towards the correct file?

Thanks.
Hello Danny,

Please replace this PHP code:

<?php
if( JRequest::getVar( 'view' ) != 'ask' )
{
echo $this->loadTemplate( 'searchbar.php');
}
?>

with:

<?php echo $this->loadTemplate( 'searchbar.php'); ?>

in your /components/com_easydiscuss/themes/simplistic/toolbar.php. Hope this helps.
·
Monday, 06 January 2014 09:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Danny,

Sorry not too sure which product are you referring to as you seem to have submitted this in EasySocial. If you are referring to EasyDiscuss, you can actually modify the file in /components/com_easydiscuss/themes/simplistic/toolbar.php and remove the codes below:


<?php echo $this->loadTemplate( 'searchbar.php'); ?>
·
Monday, 06 January 2014 02:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark,

Yes, I was referring to EasyDiscuss, my mistake...

When I remove this code it actually removes the searchbar on all pages and not only on the "Ask a question" page.
Isn't the Toolbar.php file being used in a file that creates the äsk a question page" layout. If yes, which file is this?

Thanks in advance.
·
Monday, 06 January 2014 05:09
·
0 Likes
·
0 Votes
·
0 Comments
·
It worked perfectly, thanks!
·
Wednesday, 08 January 2014 03:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Danny,

You're welcome.
·
Wednesday, 08 January 2014 08:56
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post