Hi - i am trying to gnerate a custom field on submission of a front end form to create custom post with field group webfunnelsetupdetails2:
add_action( 'rwmb_webfunnelsetupdetails2_after_save_post', function( $object_id ) {
if ( isset( $_POST['funnel2funneltitle'] ) && isset( $_POST['funnel2admin_email'] ) && isset( $_POST['funnel2domain'] )) {
$value = $_POST['funnel2funneltitle'] . $_POST['funnel2admin_email']. $_POST['funnel2domain'];
update_post_meta( $object_id, 'modifiedpostid', $value );
}
} );
But the new custom field is not being generated.
My metabox definition is in pastebin
https://pastebin.com/8SRGSfRR
Password: YkYfdubTuX