Action hook usp_submit_success not working
-
I tried adding a hook (see below) when I submit a new post. The post is submitted and I get the “Success” message in the webpage, but my hook action does not seem to be activated (no redirect and no console log). Any suggestions?
function usp_submit_success_email($redirect_url) { // my_url is a real url, replaced here wp_redirect('my_url' ); echo "<script>console.log('usp_submit_success_email function was executed.');</script>"; //error_log('my_custom_hook was executed!'); } add_action( 'usp_submit_success', 'usp_submit_success_email', 10, 1);
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Action hook usp_submit_success not working’ is closed to new replies.