/home/arranoyd/gazehome/wp-content/themes/uncode/woocommerce/single-product/tabs/description.php
<?php
/**
 * Description tab
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

global $post;

$heading = esc_html( apply_filters( 'woocommerce_product_description_heading', esc_html__( 'Description', 'woocommerce' ) ) );

?>

<div class="product-tab">
<?php if ( $heading ): ?>
  <h5 class="product-tab-title"><?php echo esc_html($heading); ?></h5>
<?php endif; ?>

<?php the_content(); ?>
</div>