Support Forums - Classified Ads Script Osclass
Osclass theme support => Beta Osclass Theme => Topic started by: officela on March 08, 2020, 07:37:11 PM
-
How to make the location of a listing to be a link? just like the category for example.
-
@officela
<?php osc_search_url(array('page' => 'search', 'city' => osc_item_city())); ?>
.. etc to get link
-
Thanks!
This i have to place it on what file?
-
@officela
Check loop-single.php and loop-single-premium.php
-
<div class="location isGrid">
<?php echo (bet_item_location() <> '' ? bet_item_location() : __('Unknown location', 'beta')); ?>
<?php if(function_exists('fi_save_favorite')) { echo fi_save_favorite(); } ?>
</div>
Managed to see that this is the code responsible for this after your instructions.
How need be looking after? i tried replacling this :
<?php echo (bet_item_location() <> '' ? bet_item_location() : __('Unknown location', 'beta')); ?>
with this
<?php osc_search_url(array('page' => 'search', 'city' => osc_item_city())); ?>
yet nothing....
any hint???