Wooccommerce产品评级仅为星级



我正试图让wooccommerce的产品评级只有星星。因此,我需要删除当前所需的字段名称、电子邮件和评论。

我已经完成删除评论与此代码

<?php
function rei_preprocess_comment($comment_data) {
if ($comment_data['comment_content'] == '%dummy-text%') {
$comment_data['comment_content'] = ''; // replace dummy text.
}
return $comment_data;
}
add_filter('preprocess_comment', 'rei_preprocess_comment');
function rei_wp_footer() {
?>
<script>
jQuery(function($){
var comment = $('textarea#comment');
comment.removeAttr('required'); // remove required attribute of textarea.
$('#commentform').on('submit',function(){
if (comment.val() == '') {
comment.css('text-indent','-999px').val('%dummy-text%'); // change to dummy text.
}
});
});
</script>
<?php
}
add_action( 'wp_footer', 'rei_wp_footer' );
?>

然而,我无法删除所需的名称和电子邮件字段,以便未注册的用户可以输入星级产品评级。

请帮助

这是Wordpress中的一个选项。请转到"设置">"讨论"并查找所需的电子邮件和名称设置。删除选中标记并保存设置页面。

相关内容

  • 没有找到相关文章

最新更新