Skip to content

Frequently Asked Questions

How do I add a new comment type?
  1. Go to WPify → WPify Woo → Comment Types
  2. In the Comment types section, click the add button
  3. Enter the type name (e.g., “Verified Purchase”)
  4. Save changes
Where are the types displayed?

Types are displayed on product reviews on the product page. The type appears as text below the review author’s name.

Types are not displayed on regular comments on posts or pages.

Can I have multiple types at once?

Each review can have only one type assigned. If you need multiple categories, consider combining them into one type (e.g., “Verified Purchase - Expert”).

How do I assign a type to an existing review?
  1. Go to Comments in the WordPress administration
  2. Find the product review
  3. Click Edit
  4. In the WPify Woo Details metabox, select the type
  5. Click Update
Can I automatically assign a type?

Not directly in the module, but you can use custom code:

add_action( 'comment_post', function( $comment_id, $comment_approved, $commentdata ) {
// Automatic type assignment for verified purchases
$comment = get_comment( $comment_id );
if ( $comment->comment_type !== 'review' ) {
return;
}
// Logic to determine the type
$type_id = 'uuid-verified-purchase';
$details = [ 'type' => $type_id ];
update_comment_meta( $comment_id, '_wpify_woo_details', $details );
}, 10, 3 );
How do I change the type appearance?

Use CSS to customize the appearance:

.woocommerce-review__type {
background: #4CAF50;
color: white;
padding: 2px 10px;
border-radius: 4px;
font-size: 11px;
text-transform: uppercase;
}
Can I delete a type?

Yes, in the module settings you can remove a type from the list. Reviews that had this type assigned will have the type as “unspecified” and it will not be displayed.

Does the module work with other review plugins?

The module uses the standard WooCommerce hook woocommerce_review_meta. If another plugin or theme supports this hook, the module should work.

Plugins that completely replace the review system may not be compatible.