Chronoforms in Virtuemart tabs / default.php - Joomla! Forum - community, help and support
hi!!
i want put chronoforms inside virtuemart tabs. can see tabs in:
http://dabur.cl/productos/tipo-de-produ ... etail.html.
as can see, second tab empty. that's form should go.
first tab: product description
third tab: disqus
the contents of tabs in default.php file, don't know right syntax call form.
can me pleaseeee!
i want put chronoforms inside virtuemart tabs. can see tabs in:
http://dabur.cl/productos/tipo-de-produ ... etail.html.
as can see, second tab empty. that's form should go.
first tab: product description
third tab: disqus
the contents of tabs in default.php file, don't know right syntax call form.
code: select all
<div id="mytabcontent" class="tab-content">
<?php if (!empty($this->product->product_desc)) { ?>
<div class="tab-pane desc fade active in" id="desc" >
<div class="product-description">
<?php /** @todo test if content plugins modify product description */ ?>
<?php echo $this->product->product_desc; ?>
</div>
</div>
<?php } // product description end ?>
<div class="tab-pane review fade" id="form" >
here chronoform should be!!!
</div>
<div id="comentarios" class="tab-pane comentarios fade">
<div id='disqus_thread'></div>
<script type='text/javascript'>
var disqus_shortname = 'dabur-cl'; // required: replace example forum shortname
(function() {
var dsq = document.createelement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getelementsbytagname('head')[0] || document.getelementsbytagname('body')[0]).appendchild(dsq);
})();
</script>
</div><!-- //tab3 -->
</div>
</div> <!--/. products-desc-tab-->
can me pleaseeee!
Comments
Post a Comment