To add options to downloadable products

Copy /administrator/components/comj2store/views/product/tmpl/formdownloadable.php To */administrator/templates/YOUR-DEFAULT-TEMPLATE/html/comj2store/product/formdownloadable.php

Find the below line

<li>
<a href="#imagesTab" data-toggle="tab"><i class="fa fa-file-image-o"></i>
<?php echo JText::_('J2STORE_PRODUCT_TAB_IMAGES'); ?>
</a>
</li>

Change with

<li>
<a href="#imagesTab" data-toggle="tab"><i class="fa fa-file-image-o"></i> <?php echo JText::_('J2STORE_PRODUCT_TAB_IMAGES'); ?>
</a>
</li>
<li>
<a href="#optionsTab" data-toggle="tab"><i class="fa fa-sitemap"></i> 
<?php echo JText::_('J2STORE_PRODUCT_TAB_OPTIONS'); ?>
</a>
</li>

Find below line

Change with

Save.

Copy /components/comj2store/templates/YOUR-SUB-LAYOUT/viewdownloadable.php

to /templates/YOUR-TEMPLATE/html/comj2store/templates/YOUR-SUB-LAYOUT/viewdownloadable.php

Edit the file and find below line

Change with

Save. Now the downloadable products should have options tab at the back end and the options should be visible on the front end.

Last updated

Was this helpful?