Lets Try to move "City" to right sidebar:
to the right sidebar:
1. Login to the /wp-admin/
2. Hide City in the default location:
4. Save
5. Check the slug of the field (here "city") - we will need it later
6. Find /wp-content/themes/myhome/templates/single-estate-partials/sidebar.php file
7. Backup the file
8. Add there code (sample CSS):
<?php $terms = get_the_terms( $post->ID, 'city' ); foreach($terms as $term) { echo '<div style="background:orange; color:#fff; padding:24px; font-size:24px; text-align:center; margin-bottom:24px;">'; echo $term->name; echo '</div>'; } ?>
9. It should look like this: