This topic contains a post which is marked as Best Answer. Press here if you would like to see it.
*

Dennis Abba

  • *
  • 4 posts
Location position
« on: April 17, 2018, 12:08:13 AM »
Hi
  I use veronika theme
   Currently i added the location on view and i have attached the picture .. is there a way you could help .. place the location tag from the top and place it under price ..  i do think it will look more elegant .. thanks

*

Delgadonut

  • *
  • 2 posts
Re: Location position
« Reply #1 on: April 17, 2018, 05:51:07 AM »
I need help like you. I want to know what to do, can you tell me?

*

MB Themes

Re: Location position
« Reply #2 on: April 17, 2018, 07:45:56 AM »
You can find code in loop-single.php
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Marked as best answer by frosticek on May 02, 2018, 08:35:28 AM
*

surajthapa

  • **
  • 16 posts
Re: Location position
« Reply #3 on: May 01, 2018, 09:48:47 PM »
Quote
Hi
  I use veronika theme
   Currently i added the location on view and i have attached the picture .. is there a way you could help .. place the location tag from the top and place it under price ..  i do think it will look more elegant .. thanks


Find the code in loop-single.php,
Code: [Select]
<?php if( osc_price_enabled_at_items() ) { ?>
        <div class="price"><span><?php echo osc_item_formated_price(); ?></span></div>
      <?php ?>

and put this code below,

Code: [Select]

     
      <!--modified    location are insterted here -->
     
<div>

             <span class="locationg "><i class="fa fa-map-marker"></i> <?php if ( osc_item_region() && osc_item_city() != null ) { ?><?php echo osc_item_city(); } ?> 
              </span>
</div>