You can add it here
or you can use this PHP code (16721 is ID of default demo location field)
<?php
$locationField = \Vehica\Model\Post\Field\Field::getById(16721);
if ($locationField) {
/* @var \Vehica\Model\Post\Field\LocationField $locationField */
$value = $locationField->getSimpleTextValues($vehicaCurrentCar)->implode(', ');
} else {
$value = '';
}
?>
<div style="color:var(--primary); margin-bottom:10px;">
<?php echo esc_html($value); ?>
</div>
and add it e.g. \wp-content\themes\vehica\templates\card\car\card_v1.php
below Listing Name
Please make sure you store your customizations in Child Theme. You can learn more about it here: