I have a problem on a woocommerce template. I don’t know “Why submit button is hidden?”.
in single-product-reviews.php, My codes is:
<?php
/*
@version 2.3.2
*/
if(!defined('ABSPATH')) {
exit;
}
global $product;
if (!comments_open()) {
return;
}
?>
<div id="reviews" class="item-reviews">
<div class="element-title">
<h1><?php _e('Reviews', 'makery'); ?></h1>
</div>
<div id="comments" class="comments-wrap">
<?php if(have_comments()) { ?>
<ul>
<?php wp_list_comments(apply_filters('woocommerce_product_review_list_args', array('callback' => 'woocommerce_comments'))); ?>
</ul>
<?php if(get_comment_pages_count() > 1 && get_option('page_comments')) { ?>
<nav class="pagination">
<?php
paginate_comments_links(apply_filters('woocommerce_comment_pagination_args', array(
'prev_text' => '',
'next_text' => '',
'type' => 'plain',
)));
?>
</nav>
<?php } ?>
<?php } else { ?>
<p class="woocommerce-noreviews secondary"><?php _e('There are no reviews yet.', 'woocommerce'); ?></p>
<?php } ?>
</div>
<?php if(get_option('woocommerce_review_rating_verification_required')=== 'no' || wc_customer_bought_product('', get_current_user_id(), $product->id)){ ?>
<div class="reviews-form">
<a href="#review_form" class="element-button element-colorbox"><?php _e('Add Review', 'makery'); ?></a>
</div>
<div class="site-popups hidden">
<div id="review_form">
<div class="site-popup large">
<div class="site-form">
<?php
$commenter=wp_get_current_commenter();
$comment_form=array(
'label_submit'=>__('Add Review', 'woocommerce'),
'title_reply' => '',
'title_reply_to' => '',
'comment_notes_before' => '',
'comment_notes_after' => '',
'fields' => array(
'author' => '<div class="column fourcol static"><label for="author">'.__('Name', 'woocommerce').'</label></div><div class="eightcol column static last"><div class="field-wrap"><input id="author" name="author" type="text" value="'.esc_attr($commenter['comment_author']).'" size="30" aria-required="true" /></div></div>',
'email' => '<div class="column fourcol static"><label for="email">'.__('Email', 'woocommerce').'</label></div><div class="eightcol column static last"><div class="field-wrap"><input id="email" name="email" type="text" value="'.esc_attr($commenter['comment_author_email']).'" size="30" aria-required="true" /></div></div>',
),
'logged_in_as' => '',
'comment_field' => '',
);
if(get_option('woocommerce_enable_review_rating')=== 'yes'){
$comment_form['comment_field']='<div class="column fourcol static"><label for="rating">'.__('Rating', 'woocommerce').'</label></div>
<div class="column eightcol static last"><div class="element-select"><span></span>
<select name="rating" id="rating">
<option value="">–</option>
<option value="5">'.__('Perfect', 'woocommerce').'</option>
<option value="4">'.__('Good', 'woocommerce').'</option>
<option value="3">'.__('Average', 'woocommerce').'</option>
<option value="2">'.__('Not that bad', 'woocommerce').'</option>
<option value="1">'.__('Very Poor', 'woocommerce').'</option>
</select></div></div><div class="clear"></div>';
}
$comment_form['comment_field'].= '<textarea id="comment" name="comment" cols="45" rows="6" aria-required="true" placeholder="'.__('Review', 'makery').'"></textarea>';
comment_form(apply_filters('woocommerce_product_review_comment_form_args', $comment_form));
?>
</div>
</div>
</div>
</div>
<!-- /popups -->
<?php } else { ?>
<p class="woocommerce-verification-required secondary"><?php _e('Only logged in customers who have purchased this product may leave a review.', 'woocommerce'); ?></p>
<?php } ?>
<div class="clear"></div>
</div>
I replace this codes istead of codes, but….!!!
You can see my problem in this page.
please help me.
You have to add line: ‘label_submit’ => __( ‘Post Comment’ ), to your code here:
So new $comment_form will be:
This should make the magic.