Osclass forums

Support forums => Tips, tricks, and tutorials => Topic started by: johannesstromberg on December 16, 2014, 01:22:09 pm

Title: add specifik image in search page for a city
Post 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)

Title: Re: add specifik image in search page for a region
Post by: johannesstromberg on January 06, 2015, 10:46:17 pm
Someone? :)
Title: Re: add specifik image in search page for a city
Post by: teseo on January 06, 2015, 11:50:09 pm
Hi,

Look in your Modern search.php for this block:

Code: [Select]
                        <div class="inner">
                            <h1>
                                <strong><?php echo search_title(); ?></strong>
                            </h1>

Insert below:

Code: [Select]
<?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
Title: Re: add specifik image in search page for a city
Post by: johannesstromberg on January 07, 2015, 05:02:53 am
Thank you so much!  :)

Hi,

Look in your Modern search.php for this block:

Code: [Select]
                        <div class="inner">
                            <h1>
                                <strong><?php echo search_title(); ?></strong>
                            </h1>

Insert below:

Code: [Select]
<?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
Title: Re: add specifik image in search page for a city
Post by: teseo on January 07, 2015, 01:00:09 pm
You're welcome. :)

Please add [SOLVED] to the title of this thread.

Regards