gspc_entry_details_payment_amount_suffix
Description
Filter the suffix for the payment amount in the entry details. By default it adds “(Order Total)” to the end. This is useful to point out that the payment amount is the total amount of the order, not the amount of the current entry.
Usage
Applied globally
add_filter( 'gspc_entry_details_payment_amount_suffix', 'my_custom_function' );
Applied to specific form
add_filter( 'gspc_entry_details_payment_amount_suffix_FORMID', 'my_custom_function' );
Parameters
$payment_amount_suffix
string
The suffix for the payment amount in the entry details.
$form
GFForm
Current form.
$entry
GFEntry
Current entry.
Since
1.0-beta-1
Hook added.