• Resolved LostinWP

    (@lostinwp)


    Hi,

    Is there any way to register a user in the WP database as part of the process of submitting a review.

    Right now I have it set to verify a review via email after submitted. Is there any way to assign or ask for a password as part of the verification process?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    1. You can try using the site-reviews/review/created action hook to do this.

    2. To do something immediately after a review has been verified, use the site-reviews/review/verified action hook:

    /**
    * Runs after a review has been verified.
    * @param \GeminiLabs\SiteReviews\Review $review
    * @return void
    */
    add_action('site-reviews/review/verified', function ($review) {
    // do something here.
    });
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.