Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-smart-filters   php

Repository URL to install this package:

Version: 2.2.1 

/ common / remove-filters.php

<?php
/**
 * Remove filters button
 */

$extra_classes = '';

if ( !$edit_mode ) {
	$extra_classes = 'hide';
}

?>
<div class="jet-remove-all-filters <?php echo $extra_classes; ?>">
	<button
		type="button"
		class="jet-remove-all-filters__button"
		data-content-provider="<?php echo $provider; ?>"
		data-additional-providers="<?php echo $additional_providers; ?>"
		data-apply-type="<?php echo $settings['apply_type']; ?>"
		data-query-id="<?php echo $query_id; ?>"
	>
		<?php echo $settings['remove_filters_text']; ?>
	</button>
</div>