Advertise Here

Author Topic: [Code] Certain Image on a Certain Page  (Read 3619 times)

0 Members and 1 Guest are viewing this topic.

Offline Agent Moose

  • Moderator
  • *****
  • Posts: 836
  • Do not PM me for Code Support or Request
    • View Profile

  • Total Badges: 32
    Badges: (View All)
    Search Level 6 Tenth year Anniversary Nineth year Anniversary Eighth year Anniversary
[Code] Certain Image on a Certain Page
« on: May 30, 2009, 08:55:07 pm »
Headers:
Code: [Select]
<script type="text/javascript">
function CertainBanner(tab,img){ if(location.href.match(tab)) document.write("<center><img src='" + img + "' /></center>"); };
CertainBanner("SECTION","URL");
</script>
Original Request: http://www.smfsupport.com/support/code_requests/request_certain_banners_for_certain_pages-t27113.0.html

SECTION = The page you want the image to show
To get the SECTION part, click on one of the tabs and look in the URL for the red part:
Quote
http://FORUM_NAME.smfforfreeX.com/index.php?action=forum

That would be the part you need to put in the SECTION part of the code.

URL = The URL of the image.

Here is an example of how to edit the code:
Code: [Select]
CertainBanner("?action=admin","http://i56.photobucket.com/albums/g188/yort124/lick.gif");The SECTION part is "admin", which I got from "?action=admin", meaning that the image specified would only appear on the admin section of the forum.

If you would like it to only show on the portal homepage, just put in the whole URL of the homepage.

Enjoy :)
« Last Edit: June 02, 2009, 03:14:39 pm by Agent Moose »
Check out Revolution X's Brand new Code Index!

Offline -A-

  • SMF For Free Sponsors
  • *
  • Posts: 877
  • Don't be afraid.
    • View Profile

  • Total Badges: 22
    Badges: (View All)
    Search Apple User Mobile User Windows User Topic Starter
Re: [Code] Certain Image on a Certain Page
« Reply #1 on: May 30, 2009, 08:57:17 pm »
Ah thanks Mr. Moose. I saw someone looking for this today!

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Certain Image on a Certain Page
« Reply #2 on: June 01, 2009, 05:07:54 pm »
Thanks moose, you never let me down :)

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Certain Image on a Certain Page
« Reply #3 on: June 01, 2009, 05:26:31 pm »
Hey moose

How can we add a banner to the homepage since it has no action= part in the URL?

Offline Andrew

  • Helpers
  • *
  • Posts: 2060
  • Andrew at your service
    • View Profile
    • Alabama Weather Prediction

  • Total Badges: 32
    Badges: (View All)
    10 Poll Votes Level 6 Eighth year Anniversary Seventh year Anniversary Sixth year Anniversary
Re: [Code] Certain Image on a Certain Page
« Reply #4 on: June 01, 2009, 05:30:57 pm »
Hey moose

How can we add a banner to the homepage since it has no action= part in the URL?

Just use the index page, for you it would be:
http://mars.smfforfree.com/index.php


Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Certain Image on a Certain Page
« Reply #5 on: June 01, 2009, 05:33:22 pm »
Thanks

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Certain Image on a Certain Page
« Reply #6 on: June 01, 2009, 05:37:58 pm »
Hey moose

How can we add a banner to the homepage since it has no action= part in the URL?

Just use the index page, for you it would be:
http://mars.smfforfree.com/index.php



Hmmm it didn't work

Offline Games

  • SMF For Free Member
  • *
  • Posts: 43
    • View Profile
    • Games

  • Total Badges: 11
    Badges: (View All)
    Apple User Topic Starter Combination Level 2 Level 1
Re: [Code] Certain Image on a Certain Page
« Reply #7 on: June 01, 2009, 06:49:56 pm »
Forum Url: http://everygame.smfforfree.com
Nice job Agent Moose  :D

www.everygame.smfforfree.com
If you even remotely like games, join today!

Offline Agent Moose

  • Moderator
  • *****
  • Posts: 836
  • Do not PM me for Code Support or Request
    • View Profile

  • Total Badges: 32
    Badges: (View All)
    Search Level 6 Tenth year Anniversary Nineth year Anniversary Eighth year Anniversary
Re: [Code] Certain Image on a Certain Page
« Reply #8 on: June 02, 2009, 03:13:06 pm »
I edited the first code so you just need to put part of the URL in there.
If you wanted it to show on the search page, you would do this:
Code: [Select]
CertainBanner("?action=search","URL");If you want it to show in the help page, you would do this:
Code: [Select]
CertainBanner("?action=help","URL");
You can also just put the whole URL for which ever page you want it to show on, such as the homepage:
CertainBanner("http://FORUM_NAME.smfforfreeX.com/","URL");
Check out Revolution X's Brand new Code Index!

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Certain Image on a Certain Page
« Reply #9 on: June 02, 2009, 04:18:54 pm »
I edited the first code so you just need to put part of the URL in there.
If you wanted it to show on the search page, you would do this:
Code: [Select]
CertainBanner("?action=search","URL");If you want it to show in the help page, you would do this:
Code: [Select]
CertainBanner("?action=help","URL");
You can also just put the whole URL for which ever page you want it to show on, such as the homepage:
CertainBanner("http://FORUM_NAME.smfforfreeX.com/","URL");

Thank you moose

 

Related Topics

  Subject / Started by Replies Last post
11 Replies
2249 Views
Last post July 26, 2007, 02:49:37 am
by Songbird
11 Replies
5392 Views
Last post December 26, 2008, 02:59:42 am
by zammymage
1 Replies
817 Views
Last post June 02, 2008, 09:24:09 pm
by Jessie
2 Replies
2542 Views
Last post November 26, 2008, 03:38:15 pm
by - Lawrence -
5 Replies
2307 Views
Last post May 06, 2009, 05:03:06 pm
by Seldom Fail