[ad_1]
I am trying to send my users to a specific url after they submit a review. In a perfect world, this would be only if you submit a 5 star review.
However, I am experiencing issues with this.
This is the hook I am referring to:
add_action(‘site-reviews/review/created’, function ($review, $command) {
}, 10, 2);
I cannot even get it to open a new tab using the following code:
add_action(‘site-reviews/review/created’, function ($review, $command) {
window.open(‘https://google.com’);
}, 10, 2);
Can you suggest anything? Does this function work?
Thanks
