I found this out …
in singlewpcproduct.php look for this code
if(is_single()){
$pname = '>>'.get_the_title();
}
just add the second line
if(is_single()){
$pname = '>>'.get_the_title();
$product_name = get_the_title();
}
after this look for
<h4>Product Details <?php if($product_price): ?><span class="product-price">Price: <span><?php echo $product_price; ?></span></span><?php endif; ?></h4>
<article class="post">
and change it to
<h4><?php echo $product_name; ?> <?php if($product_price): ?><span class="product-price">Price: <span><?php echo $product_price; ?></span></span><?php endif; ?></h4>
<article class="post">