Add Zeno Report comments button to Woocommerce reviews

iothio

New member
XNullUser
Joined
Nov 13, 2022
Messages
2
Reaction score
0
Points
1
Location
greece
NullCash
4
//add this to your functions.php **zeno report comments** plugin required

PHP:
add_filter( 'woocommerce_product_review_list_args', 'report_reviews' );
function report_reviews(){
    return apply_filters( 'comment_reply_link', $args['before'] . $link . $args['after'], $args, $comment, $post );
}
add_filter( 'woocommerce_product_review_list_args', 'report_reviews_text' );
function report_reviews_text(){
    return apply_filters( 'get_comment_text', $comment_content, $comment, $args );
}
 
Top