Hi donaldh078
Edit this file /templates/ja_cityguide/etc/extrafields/reviews.xml and add
<field name="email" type="text" label="TPL_EMAIL_LABEL" description="TPL_EMAIL_DESC"/>
above or below other extra-fields positions .

Then edit this file /templates/ja_cityguide/html/com_content/article/default.php and add
$mapEmail = $extrafields->get('email','');

Then around line 135 of same file add
<?php if($mapEmail) :?>
<div class="review-item website">
<span class="fa fa-envelope" aria-hidden="true"></span><a href="<?php echo $mapEmail ;?>" title="email"><?php echo $mapEmail ;?></a>
</div>
<?php endif; ?>

Then go to languages -> Override -> New and add text for string TPL_EMAIL_LABEL


Regards