sample:
{block name='product_info'} {include file='catalog/product-info.tpl'} {/block} .. .. .. {block name='product_info_copied'} <div id="copied-product-info"></div> <script type="text/javascript"> document.addEventListener("DOMContentLoaded", function() { setTimeout(myCopyContent('{$product.id}'), 500); }); function myCopyContent(product_id) { var content = document.getElementById('product-description-short-'+product_id).innerHTML; /* copy html content */ /* add content to your new div */ document.getElementById('copied-product-info').innerHTML = content; } </script> {/block}
result: