trying to refresh page on successful form submission
-
I’m trying to use the hook
site-reviews/review/created
to add a simple page refresh upon review creation. what am I doing wrong?add_action('site-reviews/review/created', function ($review, $command) { ?> <script type="text/javascript"> console.log('fired'); location.reload(); </script> <?php }, 10, 2);
I keep getting this error in the console from
site-reviews.js
:
Uncaught TypeError: this.response is null
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘trying to refresh page on successful form submission’ is closed to new replies.