*

Fabio Massaro

  • *****
  • 306 posts
Thema veronika mobile
« on: February 09, 2018, 12:02:20 AM »
I wanted to ask if on the mobile theme veronika
Also enter the city see image example http://prntscr.com/ic46s4

*

surajthapa

  • **
  • 16 posts
Re: Thema veronika mobile
« Reply #1 on: March 24, 2018, 07:34:15 PM »
Yes you can, modify these two files

1-   in loop-single.php

Add this code
Quote
<div>
       <span class="locationcity "><i class="fa fa-map-marker"></i> <?php if ( osc_item_region() && osc_item_city() != null ) { ?><?php echo osc_item_city(); } ?></span>
                  </div>
Under the line
Quote
<?php if( osc_price_enabled_at_items() ) { ?>
        <div class="price"><span><?php echo osc_item_formated_price(); ?></span></div>
      <?php } ?>
2- in style.css

Add this style
Quote
.locationcity {
    background: #fff;
    color: #444;
    padding: 5px;
    font-weight: 500;
    float: left;
    width: 100%;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

and you are done ;)

*

asifcu

  • ***
  • 42 posts
Re: Thema veronika mobile
« Reply #2 on: October 15, 2018, 12:50:40 PM »
Thanks. I also add this feature