Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: product review email cannot be disabled without also disabling Contact Vendor email #2207

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/Emails/VendorProductReview.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class VendorProductReview extends WC_Email {
* @since 3.9.2
*/
public function __construct() {
$this->id = 'dokan_contact_seller';
$this->id = 'dokan_product_review';
$this->title = __( 'Dokan Vendor Product Review', 'dokan-lite' );
$this->description = __( 'After a product has been reviewed, an email is sent to the vendor containing information about the review. The email may include details such as the reviewer’s name, the product’s name and description, the review rating, and the review text. The email may also contain a link to the review page where the vendor can view the review and respond to it if necessary.', 'dokan-lite' );
$this->template_html = 'emails/vendor-product-review.php';
Expand Down
Loading