Hi vgutierrez2012,
1/ Add the following file to the \templates\ja_purity_iv folder:
2/ Open the file types in the \templates\ja_purity_iv\html\mod_articles_category folder then add the following code to the
require_once(__DIR__.'/../../helper.php');
Before the following code:
$moduleclass_sfx = $params->get('moduleclass_sfx','');
3/ Look for the loop that outputs the articles. foreach loop.
Inside the loop, you can add the following code:
$customs = JATemplateHelper::getCustomFields2($item, 'article');
4/ Inside the loop, you can find the position which you want to display the custom fields, and add the following code:
<?php if(!empty($customs['company-name'])) :?>
<div class="ct-field field-company-name">
<?php echo $customs['company-name']->value ;?>
</div>
<?php endif ;?>
Make sure to replace 'company_name' with the actual name of your custom field.
NOTE:
This is an example that I custom in the \templates\ja_purity_iv\html\mod_articles_category folder: