Gform product unitprice

Description

This filter is executed when displaying the order information grid on the entry detail page and notification emails. Use this filter to modify the "Unit Price" heading

Usage

<?php
add_filter("gform_product_unitprice", "change_unitprice", 10, 2);
?>

Parameters

$label

(string) The label to be filtered.


$form_id

(int) The current form's id.

Examples

This example changes the default Unit Price label;


<?php
add_filter("gform_product_unitprice", "change_unitprice", 10, 2);
function change_unitprice($label, $form_id){
    return "Sub Total";
}
?>

Placement

This code should be placed in the functions.php file of your active theme.

Source Code

This filter is located in common.php and entry_detail.php

Search the Documentation