1

我需要帮助在以重力形式发送给管理员的通知电子邮件中插入交易 ID,

4

1 回答 1

2

您需要将其添加到主题的 functions.php 文件中:

add_filter( 'gform_replace_merge_tags', 'replace_transaction_id', 10, 7 );
function replace_transaction_id( $text, $form, $entry, $url_encode, $esc_html, $nl2br, $format ) {
    $transaction_id = empty( $transaction_id ) ? rgar( $entry, 'transaction_id' ) : $transaction_id;
    $text = str_replace( '{transaction_id}', $transaction_id, $text );
    return $text;
}

然后,您可以将以下合并标签添加到您的重力形式通知区域:

{transaction_id}

希望这会有所帮助,尽管距离您的问题已经很长时间了,但我一直在谷歌上搜索这个答案并来到这个页面,然后最终找到了答案,所以我在这里分享它。

于 2015-03-18T21:24:31.573 回答