Remove Button

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
nalzate
Posts: 22
Joined: 05 Dec 2023, 20:47
Location: Colombia

Remove Button

Post 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"
cas
Posts: 1622
Joined: 11 Mar 2006, 16:08
Contact:

Re: Remove Button

Post 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>
Post Reply