woocommerce/templates/single-product/tabs/reviews.php

18 lines
279 B
PHP
Raw Normal View History

2011-12-09 22:44:03 +00:00
<?php
/**
2012-08-14 18:05:45 +00:00
* Reviews tab
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
2011-12-09 22:44:03 +00:00
*/
2012-08-14 18:05:45 +00:00
2011-12-09 22:44:03 +00:00
global $woocommerce, $post;
2012-04-03 09:34:02 +00:00
if ( comments_open() ) : ?>
<div class="panel entry-content" id="tab-reviews">
2012-08-14 18:05:45 +00:00
2012-04-03 09:34:02 +00:00
<?php comments_template(); ?>
2012-08-14 18:05:45 +00:00
2012-04-03 09:34:02 +00:00
</div>
<?php endif; ?>