I want to add a function that changes the Description (field label) sent in the PayPal post. I have a function that changes the price value depending on the type of post the user is paying for. So I would like the type of post to be sent in the description. Would I use:
<?php
add_filter("gform_product", "change_product", 10, 2);
function change_product($label, $form_id){
//find users post id
//use id to find post type
$post_type = //post_type;
return $post_type;
}
?>