stulaine Hi
1 - You're right, it's a bug of module, pls change that line 77 to:
<?php if($helper->get('link-appstore', $i)) :?>
2 - Yes, you can open the file:
ROOT/templates/ja_gamex/acm/features-intro/tmpl/style-4.xml
and add a new field tag like this:
<field name="link-other" type="text" default="" label="FEATURES_LINK_OTHER_LABEL" description="FEATURES_LINK_OTHER_DESC" />
then open the PHP file: ROOT/templates/ja_gamex/acm/features-intro/tmpl/style-4.php
Look for this code:
<?php if($helper->get('link-ch', $i) || $helper->get('link-appstore', $i)) : ?>
<div class="link-store">
<?php if($helper->get('link-ch', $i)) :?>
<a href="<?php echo $helper->get('link-ch', $i) ?>" title="">
<img src="<?php echo $path.'images/ch-play.svg' ;?>" alt=""/>
</a>
<?php endif ;?>
<?php if($helper->get('link-ch', $i)) :?>
<a href="<?php echo $helper->get('link-appstore', $i) ?>" title="">
<img src="<?php echo $path.'images/appstore.svg' ;?>" alt=""/>
</a>
<?php endif ;?>
</div>
<?php endif ; ?>
change to:
<?php if($helper->get('link-ch', $i) || $helper->get('link-appstore', $i) || $helper->get('link-appstore', $i)) : ?>
<div class="link-store">
<?php if($helper->get('link-ch', $i)) :?>
<a href="<?php echo $helper->get('link-ch', $i) ?>" title="">
<img src="<?php echo $path.'images/ch-play.svg' ;?>" alt=""/>
</a>
<?php endif ;?>
<?php if($helper->get('link-appstore', $i)) :?>
<a href="<?php echo $helper->get('link-appstore', $i) ?>" title="">
<img src="<?php echo $path.'images/appstore.svg' ;?>" alt=""/>
</a>
<?php endif ;?>
<?php if($helper->get('link-other', $i)) :?>
<a href="<?php echo $helper->get('link-other', $i) ?>" title="">
<img src="<?php echo $path.'images/your_icon_here.svg' ;?>" alt=""/>
</a>
<?php endif ;?>
</div>
<?php endif ; ?>