Hide product review comment form
-
Hi, i write this code to hide comment box on product review
function sv_wc_hide_comment_review( $comment_form ) {
global $product;
unset( $comment_form[‘comment_field’] );
}
add_filter( ‘woocommerce_product_review_comment_form’, ‘sv_wc_hide_comment_review’ );but the comment box still show in product review,, anyone could help?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Hide product review comment form’ is closed to new replies.