Hi Shaun,
You can try with my workaround here:
– Go to file: templatesja_decorhtmlmod_articles_categorytriangle.php
– Look for this line of code:
[PHP]<a class=”btn btn-primary btn-icon” href=”<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($jacategory->id));?>”><?php echo JText::_(‘VIEW_ALL’); ?> <i class=”fa fa fa-long-arrow-right”></i></a>[/PHP]
change it to:
[PHP]<a class=”btn btn-primary btn-icon” href=”<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($jacategory->id));?>”><?php echo JText::_(‘VIEW_LEARN_MORE’); ?> <i class=”fa fa fa-long-arrow-right”></i></a>[/PHP]
– Then you open the language file that you made change and add this new text field:
VIEW_LEARN_MORE = “Learn more”
Hope this helps.