Home › Forums › General Issues › Issues with multiples ACF Form
Hi, I want to create several multiples ACF Form to allow users to suggest content directly through the front-end.
To do that, I created multiples functions in my functions.php. Each one have a different ‘post_type’ value and named differently.
I have done the same in my templates, specifying differents “field_groups” value but when I test my forms, all the content are going in the post type “one”.
I checked my two pages and they both point to different templates.
Do you know how can I fix this problem ?
Thanking you in advance,
Willwoody.
Here’s my functions.php’s code :
/*
* Pre save post "One"
*/
function my_pre_save_post_one( $post_id ) {
// check if this is to be a new post
if( $post_id != 'new' )
{
return $post_id;
}
// Create a new post
$post = array(
'post_status' => 'pending',
// 'post_title' => $_POST['acf']['field_5c4efddbb8d24'].' '.$_POST['acf']['field_5c4efdd6b8d23'].' - '.$_POST['acf']['field_5c4efdfeb8d27'],
'post_type' => 'cpt_one',
);
// insert the post
$post_id = wp_insert_post( $post );
// return the new ID
return $post_id;
}
add_filter('acf/pre_save_post' , 'my_pre_save_post_cpt_one' );
/*
* Pre save post "Two"
*/
function my_pre_save_post_satc( $post_id ) {
// check if this is to be a new post
if( $post_id != 'new' )
{
return $post_id;
}
// Create a new post
$post = array(
'post_status' => 'pending',
'post_title' => $_POST['acf']['field_5c5ab409c12de'].' '.$_POST['acf']['field_5c5ab409c12ba'].' - '.$_POST['acf']['field_5c5ab409c133d'],
'post_type' => 'cpt_two',
'submit_value' => 'Submit',
);
// insert the post
$post_id = wp_insert_post( $post );
// return the new ID
return $post_id;
}
add_filter('acf/pre_save_post' , 'my_pre_save_post_cpt_two' );
You need to use a different value for post ID in one of your forms
if( $post_id != 'new' )
{
return $post_id;
}
This is the same in both functions, only one of your filters will ever run.
Use unique “post_id” values, like “new_cpt_one” and “new_cpt_two”
You must be logged in to reply to this topic.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
ποΈ Just one more day until the next session of ACF Chat Fridays! Make sure to register for the latest updates on whatβs coming in ACF 6.1!
— Advanced Custom Fields (@wp_acf) March 30, 2023
π Friday 31st March 3pm UTC
π Register here - https://t.co/3UtvQbDwNm pic.twitter.com/7xtEJakeQN
© 2023 Advanced Custom Fields.
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.