2011-12-12 11:35:54 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* Review Comments Template
|
2011-12-12 11:35:54 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* Closing li is left out on purpose!.
|
2012-08-14 18:05:45 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/review.php.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2016-02-12 11:28:41 +00:00
|
|
|
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
|
|
|
* (the theme developer) will need to copy the new files to your theme to
|
|
|
|
* maintain compatibility. We try to do this as little as possible, but it does
|
|
|
|
* happen. When this occurs the version of the template file will be bumped and
|
|
|
|
* the readme will list any important changes.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2016-07-19 10:30:31 +00:00
|
|
|
* @see https://docs.woocommerce.com/document/template-structure/
|
2020-08-05 16:36:24 +00:00
|
|
|
* @package WooCommerce\Templates
|
2016-04-21 16:23:47 +00:00
|
|
|
* @version 2.6.0
|
2011-12-12 11:35:54 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2011-12-12 11:35:54 +00:00
|
|
|
?>
|
2018-11-22 10:37:14 +00:00
|
|
|
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
2013-07-31 08:44:22 +00:00
|
|
|
|
2011-12-12 11:35:54 +00:00
|
|
|
<div id="comment-<?php comment_ID(); ?>" class="comment_container">
|
|
|
|
|
2016-03-07 15:33:44 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The woocommerce_review_before hook
|
|
|
|
*
|
|
|
|
* @hooked woocommerce_review_display_gravatar - 10
|
|
|
|
*/
|
|
|
|
do_action( 'woocommerce_review_before', $comment );
|
|
|
|
?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2011-12-12 11:35:54 +00:00
|
|
|
<div class="comment-text">
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2016-03-07 15:33:44 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The woocommerce_review_before_comment_meta hook.
|
|
|
|
*
|
|
|
|
* @hooked woocommerce_review_display_rating - 10
|
|
|
|
*/
|
|
|
|
do_action( 'woocommerce_review_before_comment_meta', $comment );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The woocommerce_review_meta hook.
|
|
|
|
*
|
|
|
|
* @hooked woocommerce_review_display_meta - 10
|
|
|
|
*/
|
|
|
|
do_action( 'woocommerce_review_meta', $comment );
|
|
|
|
|
|
|
|
do_action( 'woocommerce_review_before_comment_text', $comment );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The woocommerce_review_comment_text hook
|
|
|
|
*
|
|
|
|
* @hooked woocommerce_review_display_comment_text - 10
|
|
|
|
*/
|
|
|
|
do_action( 'woocommerce_review_comment_text', $comment );
|
|
|
|
|
2019-12-20 17:55:38 +00:00
|
|
|
do_action( 'woocommerce_review_after_comment_text', $comment );
|
|
|
|
?>
|
2015-10-26 15:36:02 +00:00
|
|
|
|
2013-07-31 08:44:22 +00:00
|
|
|
</div>
|
2013-04-06 02:56:36 +00:00
|
|
|
</div>
|