2011-12-09 22:44:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Description Tab
|
|
|
|
*/
|
|
|
|
|
|
|
|
global $woocommerce, $post;
|
|
|
|
?>
|
|
|
|
<div class="panel" id="tab-description">
|
|
|
|
|
2012-01-05 11:31:22 +00:00
|
|
|
<?php $heading = apply_filters('woocommerce_product_description_heading', __('Product Description', 'woocommerce')); ?>
|
2011-12-09 22:44:03 +00:00
|
|
|
|
|
|
|
<h2><?php echo $heading; ?></h2>
|
|
|
|
|
|
|
|
<?php the_content(); ?>
|
|
|
|
|
|
|
|
</div>
|