Osclass forums
Support forums => Tips, tricks, and tutorials => Topic started by: johannesstromberg on December 16, 2014, 01:22:09 pm
-
hello
i want to add a specifik image in search page for a specifik city
Someone who know how to do it?
http://s29.postimg.org/7siooberr/image.jpg (http://s29.postimg.org/7siooberr/image.jpg)
(http://s29.postimg.org/7siooberr/image.jpg]http://s29.postimg.org/7siooberr/image.jpg)
-
Someone? :)
-
Hi,
Look in your Modern search.php for this block:
<div class="inner">
<h1>
<strong><?php echo search_title(); ?></strong>
</h1>
Insert below:
<?php if (Params::getParam('sCity') == 'Norbottens') { ?>
<div>
<img src="http://yourdomain.com/path-to-your-image" />
</div>
<?php } ?>
Replace that fake image URL with your actual one and you should get the basics.
Regards
-
Thank you so much! :)
Hi,
Look in your Modern search.php for this block:
<div class="inner">
<h1>
<strong><?php echo search_title(); ?></strong>
</h1>
Insert below:
<?php if (Params::getParam('sCity') == 'Norbottens') { ?>
<div>
<img src="http://yourdomain.com/path-to-your-image" />
</div>
<?php } ?>
Replace that fake image URL with your actual one and you should get the basics.
Regards
-
You're welcome. :)
Please add [SOLVED] to the title of this thread.
Regards