/home/arranoyd/www/wp-content/themes/jevelin/woocommerce/single-product/short-description.php
<?php
/**
 * Single product short description
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     1.6.4
 */

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

global $post;
?>

<div class="woo-seperator-line"></div>

<?php

if ( ! $post->post_excerpt ) {
	return;
}

?>
<div class="woo-short-description" itemprop="description">
	<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?>
</div>