Jump to content

Edit History

ps8modules

ps8modules

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:

obrazek.png.330094d4cf82988b69b41d877c7cdb10.png

ps8modules

ps8modules

{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:

obrazek.png.330094d4cf82988b69b41d877c7cdb10.png

×
×
  • Create New...