如何在 Gravity 表单的列表字段后添加逗号

How to add a comma after the list field in Gravity form

我想在重力形式的字段后添加一个逗号。我正在使用列表字段,在提交表单后每个名称后应该有一个逗号。

现场形式:- https://docs.ajsrp.com/t1

见附图 https://i.ibb.co/HNVzZsS/Web-capture-26-3-2022-13560-docs-ajsrp-com.jpg

我想在重力形式的字段后添加一个逗号。我正在使用列表字段,在提交表单后每个名称后应该有一个逗号。

如果您正在尝试获取以逗号分隔的姓名数组,您可能只想向您的表单添加一个新的隐藏字段,该字段可以在提交后由姓名列表更新。尝试将此代码添加到您的 functions.php

add_action( 'gform_after_submission_1', 'array_name_list', 10, 2 );//1 in this case is your form id
function array_name_list($entry, $form ){
    $list=unserialize( rgar( $entry, '4' ) );//4 in this case is the listfield 
    $entry['20'] = implode(",",$list);//replace 20 with new hidden field id
    return GFAPI::update_entry( $entry );
}