gppr_price_range_min

  1. Description
  2. Usage
  3. Parameters
  4. Examples
    1. Modify the minimum price range based on a field value.
    2. Set a variable min/max range based on a field value.
  5. Since

Description

Filter the minimum price for a field.

Usage

Filter minimum price on all price fields on all forms.

add_filter( 'gppr_price_range_min', 'my_custom_function', 10, 1 );

Filter minimum price on all price fields on a specific form.

add_filter( 'gppr_price_range_min_FORMID', 'my_custom_function', 10, 1 );

Filter minimum price on a specific price field on a specific form.

add_filter( 'gppr_price_range_min_FORMID_FIELDID', 'my_custom_function', 10, 1 );

Parameters

  • min int

    The minimum price.

Examples

Modify the minimum price range based on a field value.

<?php
/**
 * Gravity Perks // GP Price Range // Modify The Minimum Price Range Based On A Field Value
 * https://gravitywiz.com/documentation/gravity-forms-price-range/
 */
// Update "123" to your form ID and "4" to your field ID.
add_filter( 'gppr_price_range_min_123_4', function( $min ) {

	// Update "5" to the field ID whose value should be used as the minimum price range.
	$source_field_id = 5;

	return $_POST[ 'input_' . $source_field_id ];
} );

Set a variable min/max range based on a field value.

Take a base value and calculate a range based on that value. For example, if the base value is 100 and your range is 50, the user could enter a price between $50 and $150.

This example also uses the gppr_price_range_max to handle setting the maximum price range.

<?php
/**
 * Gravity Perks // GP Price Range // Set a Variable Min/Max Range Based On A Field Value
 * https://gravitywiz.com/documentation/gravity-forms-price-range/
 *
 * Take a base value and calculate a minimum and maximum range based on that value.
 */
// Update "123" to your form ID and "4" to your field ID.
add_filter( 'gppr_price_range_min_123_4', 'gw_variable_price_range' );
add_filter( 'gppr_price_range_max_123_4', 'gw_variable_price_range' );
function gw_variable_price_range( $value ) {
	// Update "5" to the field ID whose value should be used as the minimum price range.
	$source_field_id = 5;
	$base_value      = (int) rgpost( 'input_' . $source_field_id );
	$is_min          = strpos( current_filter(), 'min' ) !== false;
	$range           = 50;

	if ( $is_min ) {
		$value = $base_value - $range;
	} else {
		$value = $base_value + $range;
	}

	return $value;
}

Since

This filter is available since Gravity Forms Price Range 1.2.1.