HEX
Server: LiteSpeed
System: Linux s12873.lon1.stableserver.net 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: jairicem (1242)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/jairicem/tkidsfoundation.org/wp-content/themes/donat/woocommerce/loop/price-filter.php
<?php
/**
 * Price filter widget
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/loop/price-filter.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see      https://docs.woocommerce.com/document/template-structure/
 * @package  WooCommerce/Templates
 * @version  5.5.2
 */

defined( 'ABSPATH' ) || exit;

if ( ! isset( $min_price ) ) {
	$min_price = apply_filters( 'woocommerce_price_filter_widget_min_amount', $min_price );
}

if ( ! isset( $max_price ) ) {
	$max_price = apply_filters( 'woocommerce_price_filter_widget_max_amount', $max_price );
}

if ( ! isset( $step ) ) {
	$step = apply_filters( 'woocommerce_price_filter_widget_step', 10 );
}

global $wp;

$form_action = remove_query_arg( 'paged', add_query_arg( $wp->query_string, '', home_url( $wp->request ) ) );
?>