Hi
You can follow these steps to show a new field in this module:
-- Go to Backend >> Articles >> Fields >> add new field type of text for 'price' as you wish. I name it as 'price' field, for instance
-- Go to file: ROOT/templates/ja_findus/html/mod_articles_category/list-locations.php
find the code which renders the price level field and add the same code for the price, it looks like this:
<?php if(!empty($customs['price-level'])): ?>
<div class="price-level">
<?php echo implode(",", $customs['price-level']) ;?>
</div>
<?php endif ;?>
<?php if(!empty($customs['price'])): ?>
<div class="price">
<?php echo implode(",", $customs['price']) ;?>
</div>
<?php endif ;?>
When you input the price for an item, it will show in module. Of course, you will have to add custom style for it.
Regards