Viewing 1 replies (of 1 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi, you can add an action to your website, like this. You can add this code to your own plugin or to functions,php of your theme.

    function my_gwolle_gb_save_entry_frontend( $entry ) {
    	// $entry is an object.
    
    	wp_redirect( 'https://domain.com/the-place-where-i-enjoy-the-sun' );
    	exit;
    }
    add_action( 'gwolle_gb_save_entry_frontend', 'my_gwolle_gb_save_entry_frontend' );

    Please be aware that the feedback messages like “Your entry was saved” will not be displayed on that new request.

Viewing 1 replies (of 1 total)
  • The topic ‘Redirect after successful entry’ is closed to new replies.