Mike, the plugin affects only the storefront "offering" and acceptance of reviews by guests; it doesn't have any admin-level component. That address-change can be performed in the admin, through a kind of convoluted process, though.
Log into the admin, go to Catalog->Reviews and view the review whose date should be updated. You'll see a link similar to the following:
That rID value identifies the reviews_id associated with that review.Code:http://localhost/site/admin/reviews.php?page=1&rID=16&action=edit
Armed with that information, go to Tools->Install SQL Patches and enter the following to change that review's date-added to a specific date:
Alternatively, you could set the date_added to today's date:Code:UPDATE reviews SET date_added = '2019-09-18 00:00:00' WHERE reviews_id = 16 LIMIT 1;
Code:UPDATE reviews SET date_added = now() WHERE reviews_id = 16 LIMIT 1;



Reply With Quote
... it's on my list, but paying clients come first.

