Configuration

Create a product-review.php file under your /config directory with the following options available to you.

<?php

return [
    'orderStatusToReview' => 'received',
    'maxDaysToReview' => 30,
];
?>

Options

  • reviewOnOrderStatus - Set the order status to identify the purchased products that can be reviewed once the order reaches the following status.

  • maxDaysToReview - Set the maximum days the customer can review the product after the order can be reviewed.

Control Panel

You can also manage configuration settings through the Control Panel by visiting Settings → Product Review.

Order status for the product to review (reviewOnOrderStatus) must be set to ensure the flow works properly.

Last updated