We just upgraded our Click and Pledge version to 3.700.008 and noticed that when trying to add a merge tag for the Transaction ID to a Gravity Forms notification it instead adds the merge tag for order number. After digging into the issue a little more we found that in version 3.700.007 on line 757 of the class.GFCnpPlugin.php the merge tag for transaction ID has been replaced with the merge tag for order number.
The line of code previously was
and is now
Additionally, all lines referencing transaction ID in the gformReplaceMergeTags function have been commented out.
Is the transaction ID merge tag being phased out? I wasn't able to find anything referencing such a major breaking change in the release notes or in the Click & Pledge/Gravity Forms documentation, which still actually references being able to use the transaction ID merge tags, and it would be very helpful to know if this is a mistake or if it is a planned change as our organization uses the transaction ID on quite a number of form notifications and confirmations.
Thank you.
The line of code previously was
Code:
$merge_tags[] = array('label' => 'Transaction ID', 'tag' => '{transaction_id}');
Code:
$merge_tags[] [B]=[/B] [B]array[/B]('label' [B]=>[/B] 'Transaction ID', 'tag' [B]=>[/B] '{order_number}');
Is the transaction ID merge tag being phased out? I wasn't able to find anything referencing such a major breaking change in the release notes or in the Click & Pledge/Gravity Forms documentation, which still actually references being able to use the transaction ID merge tags, and it would be very helpful to know if this is a mistake or if it is a planned change as our organization uses the transaction ID on quite a number of form notifications and confirmations.
Thank you.
Comment