[ad_1]
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
- This topic was modified 2 hours, 7 minutes ago by .
- This topic was modified 2 hours, 7 minutes ago by .
- This topic was modified 2 hours, 4 minutes ago by .
