gform_ppcp_discount_total

gform_ppcp_discount_total

DescriptionUsageParametersExamplesLog the parametersPlacementSinceSource Code

Description

The gform_ppcp_discount_total JavaScript filter is used to override the discount amount that will be sent to PayPal Checkout.

Usage

The filter which runs for all would be used like so:

123gform.addFilter( 'gform_ppcp_discount_total', function( discountTotal, formId, total ) {    //do something}, 10, 3 );

Parameters

discountTotal float
The calculated positive discount total value.

formId int
The ID of the current form.

discountTotal float
The form total value.

Examples

Log the parameters

This example would log the contents of the three parameters to the browser console.

1234gform.addFilter( 'gform_ppcp_discount_total', function( discountTotal, formId, total ) {    console.log( arguments );    return discountTotal;}, 10, 3 );

Placement

This code should be placed in a theme custom JS file or a custom JS functions plugin.

Since

This filter was added in Gravity Forms PayPal Checkout Add-On v2.1.

Source Code

This filter is located in GFPPCP.getDiscountTotal() in /js/frontend.js.

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註