Hi 1omegazip
You will need to customize the property article view:
/templates/ja_property/html/com_content/article/property.php
The part under slideshow / image of article is content of article, if you want to move it, you move this snippet of code:
<section class="article-content clearfix" itemprop="articleBody">
<?php echo $this->item->text; ?>
</section>
The part on the right side will be this:
<div class="article-sidebar col-md-4">
<div class="article-sidebar-box">
<?php if (!empty($latlong)): ?>
{jaosmap locations='{"location":{"0":"<?php echo $this->item->title; ?>"},"latitude":{"0":"<?php echo $latlong[0]; ?>"},"longitude":{"0":"<?php echo $latlong[1]; ?>"},"info":{"0":"<?php echo $this->item->title; ?>"},"icon":{"0":""}}' zoom='12' map_width='396' map_height='396'}{/jaosmap}
<?php endif; ?>
</div>
<div class="article-sidebar-box box-border">
<?php // Content is generated by content plugin event "onContentBeforeDisplay" ?>
<?php echo $this->item->event->beforeDisplayContent; ?>
<dl class="fields-container">
<dd class="field-entry r-location r-class">
<span class="field-label l-location"><?php echo Jtext::_('TPL_LOCATION'); ?></span>
<span class="field-value">
<?php if ($params->get('show_parent_category') && !empty($this->item->parent_slug)) : ?>
<?php echo JLayoutHelper::render('joomla.content.info_block.parent_category_property', array('item' => $this->item, 'params' => $params, 'filterID' => $filterID)); ?>
<?php endif; ?>
<?php if($params->get('show_category')) :?>
<?php echo JLayoutHelper::render('joomla.content.info_block.category_property', array('item' => $this->item, 'params' => $params, 'filterID' => $filterID)); ?>
<?php endif;?>
</span>
</dd>
</dl>
<?php if(!empty($customs['rent-or-sale'])) :?>
<span class="tag-label label-<?php echo $customs['rent-or-sale'] ;?>"><?php echo Jtext::_('TPL_FOR').' '.$customs['rent-or-sale'] ;?></span>
<?php endif ;?>
<?php if($this->item->featured): ?>
<span class="featured-label featured-label-yes">
<i class="icon ion-ios-heart"></i>
</span>
<?php else: ?>
<span class="featured-label featured-label-no">
<i class="icon ion-ios-heart"></i>
</span>
<?php endif ;?>
</div>
</div>
Regards