Home › Forums › ACF PRO › ACF Form + JS After Post Submission › Reply To: ACF Form + JS After Post Submission
Hi James,
Sorry for the super-delayed response; got a bit caught up with stuff 🙂
I think maybe it might be useful to explain the scenario.
What I would like to accomplish on a high level: Trigger JavaScript only when an acf_form() (front-end) is sent without error.
A specific scenario:
Below is a boilerplate example of a script that I’d normally run using WP AJAX:
function do_stuff_after_acf_form_submit_success() {
var ajax_url = 'ajax_my_params.ajax_url';
$.ajax({
type: 'POST',
url: ajax_url,
data: {
action: 'my_action',
},
beforeSend: function (){
// Stuff
},
success: function(data){
// This is the part that I want to access, i.e. if a front-end acf_form() sends with success, do stuff
ga('send', 'event', 'Videos', 'play', 'Fall Campaign'); // Example GA Event
},
error: function(){
// Error
}
});
};
For marking events/conversions in analytics, older-school methods would entail sending a user to something like a thank you page, for example (using acf_form):
$_POST['return'] = get_home_url() . 'thanks/';
However, I want to trigger a GA event (or whatever JS function) via the ACF Form send success…ie via JS/AJAX.
I hope this makes sense and I’d be happy to clarify further if needed.
Best,
Ryan
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!
📣 “ACF Chat Fridays”
— Advanced Custom Fields (@wp_acf) January 31, 2023
The ACF team holds their first open office hours this Friday! Come and talk ACF, and ask questions about building sites with the plugin.
We’d love to see you there!
📆 Friday 3rd Feb - 3pm UTC
👉 Register here - https://t.co/3UtvQbE4CU pic.twitter.com/oTwW9K1XQ0
© 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.