Home › Forums › Front-end Issues › Front-end Form: Redirect after Save › Reply To: Front-end Form: Redirect after Save
@endcore or someone i need some help immediately.I can’t redirect after user submit the form
<?php
acf_form_head();
?>
<?php
$args = array(
‘post_id’ => ‘new_post’,
‘new_post’ => array(
‘post_type’ => ‘corona_data’,
‘post_status’ => ‘publish’
),
‘submit_value’ => __(‘Αποστολή’)
);
acf_form($args);
?>
and my function in functions.php
add_filter(‘acf/pre_save_post’ , ‘my_pre_save_post’ );
function my_pre_save_post( $post_id ) {
global $post;
if($post->post_name == ‘some-post’) {
$post = array(
‘post_status’ => ‘publish’ ,
‘post_title’ => ‘some-title’,
‘post_type’ => ‘some-post-type’,
);
// Create a new post
// insert the post
$post_id = wp_insert_post($post);
// update custom field
do_action(‘acf/save_post’, $post_id);
//do_action(‘acf/save_post’ , $post_id);
wp_redirect(‘https://coronavirus.crowdapps.net/stoixeia-forea/’, 301);
exit;
}
}
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!
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 Privacy Policy. If you continue to use this site, you consent to our use of cookies.