Page 1 of 1

Remove Button

Posted: 18 Dec 2023, 22:07
by nalzate
Wich is the code to remove this button?

This is the image = https://ibb.co/Sswmq77

It is located in " view_all_bug_page"

Re: Remove Button

Posted: 19 Dec 2023, 08:20
by cas
if you want to diable filtering in total, you can addthe following line to core/config-inc.php:

Code: Select all

$g_filter_position = FILTER_POSITION_NONE;
Removing the X (which is used to reset the filter in collapsed mode) can only be done via adjusting the code which is not advised.
it is defined in filter_api around line 1314 with this code:

Code: Select all

					<a class="btn btn-primary btn-white btn-round btn-xs"
					   title="<?php echo lang_get( 'reset_query' ) ?>"
					   href="<?php echo $t_url_reset_filter ?>">
						<?php print_icon( 'fa-times', 'ace-icon' ); ?>
					</a>