Hi,
In show_default, you have this code by default:
<span id="hikashop_product_code_main" class="hikashop_product_code_main"><?php
echo $this->element->product_code;
?></span>
So I suppose you want to replace it with:
<span id="hikashop_product_code_main" class="hikashop_product_code_main">
<div class="button_cont" align="center">
<a class="butdemo" href=" mywebiste.com/ <?php echo $this->element->product_code; ?>" target="_blank" rel="nofollow"><span>See demo on-line</span></a>
</div>
</span>
In the product / show.php view file you can see this code:
<div id="hikashop_product_code_<?php echo $variant_name; ?>" style="display:none;"><?php
echo $variant->product_code;
?></div>
So I suppose you want to replace it with:
<div id="hikashop_product_code_<?php echo $variant_name; ?>" style="display:none;">
<div class="button_cont" align="center">
<a class="butdemo" href=" mywebiste.com/ <?php echo $variant->product_code; ?>" target="_blank" rel="nofollow"><span>See demo on-line</span></a>
</div></div>