gpcp_after_update_pricing

  1. Description
  2. Usage
  3. Parameters
  4. Examples
    1. Show the original price crossed out next to the adjusted price.
  5. Since

Description

Do something after product prices have been updated.

Usage

gform.addAction( 'gpcp_after_update_pricing', function( triggerFieldId, GWConditionalPricing ) {
    // do something crazy!
} );

Parameters

  • triggerFieldId int

    The ID of the field that has triggered the pricing update.

  • GWConditionalPricing object

    Current GWConditionalPricing object.

Examples

Show the original price crossed out next to the adjusted price.

/**
 * Gravity Perks // GP Conditional Pricing // Show the original price crossed out next to the adjusted price
 * https://gravitywiz.com/documentation/gravity-forms-conditional-pricing/
 *
 * Instructions:
 *     1. Install our free Custom Javascript for Gravity Forms plugin.
 *        Download the plugin here: https://gravitywiz.com/gravity-forms-code-chest/
 *     2. Copy and paste the snippet into the editor of the Custom Javascript for Gravity Forms plugin.
 */
 gform.addAction( 'gpcp_after_update_pricing', function( productId, GWConditionalPricing ) {

	var basePrice = GWConditionalPricing.getBasePrice( productId );
	if ( ! basePrice ) {
		return;
	}

	var $input = $( '#input_{0}_{1}'.gformFormat( GWConditionalPricing._formId, productId ) );
	if ( ! $input.length ) {
		return;
	}

	var $basePrice = $( '#base_price_{0}_{1}'.gformFormat( GWConditionalPricing._formId, productId ) );

	// Remove base price if there is no discounted price.
	if ( $input.text() === basePrice ) {
		$basePrice.remove();
	}
	// Otherwise, add base price if it has not been added.
	else if ( ! $basePrice.length ) {
		$basePrice = '<span id="base_price_{0}_{1}" style="text-decoration:line-through;margin-right:0.3rem">{2}</span>'.gformFormat( GWConditionalPricing._formId, productId, basePrice );
		$input.before( $basePrice );
	}

} );

Since

This filter is available since GP Conditional Pricing 1.2.13