Quick Login   
 
Register AdminFusion Tutorials Post Fusion Forum Matrix
 
Go Back AdminFusion » Software & Tech » Software » SMF » How do i add affiliate buttons on my smf forum?
Reply
 
LinkBack
Old 06-13-2007, 07:46 AM   #1
Apprentice
 
FaNtEcH's Avatar
 
Join Date: Jun 2007
Location: India
Posts: 162
FaNtEcH is on a distinguished road
Send a message via Yahoo to FaNtEcH Send a message via Skype™ to FaNtEcH
How do i add affiliate buttons on my smf forum?

Well, how do i do it?
Like on the bottom of the main page, i want to add buttons of my affiliates.
How can i do that?
__________________
Some videos that you might be interested in:
1.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

(Many more coming in soon!)
FaNtEcH is offline   Reply With Quote
Old 06-16-2007, 03:39 PM   #2
Forum Guru
 
Ryan's Avatar
 
Join Date: Sep 2005
Location: Athens, GA
Posts: 10,256
Ryan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond reputeRyan has a reputation beyond repute
I don't know SMF all that well...but generally, what you need to do is modify the footer template and place the links wherever you'd like in there. You'll need to know just a little bit of HTML to do this.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
- Professional vBulletin Skins
Ryan is offline   Reply With Quote
Old 06-17-2007, 02:03 PM   #3
Member
 
AwwLilMaggie's Avatar
 
Join Date: Oct 2006
Location: The Jazz Hole
Posts: 73
AwwLilMaggie is on a distinguished road
Send a message via ICQ to AwwLilMaggie Send a message via AIM to AwwLilMaggie Send a message via MSN to AwwLilMaggie Send a message via Yahoo to AwwLilMaggie Send a message via Skype™ to AwwLilMaggie
If you only want to add them to the index page (in the info center) then in BoardIndex.template.php find:

Code:
// If they are logged in, but SP1 style information is off... show a personal message bar.
	if ($context['user']['is_logged'] && !$settings['show_sp1_info'])
	{
		echo '
	<tr>
		<td class="catbg" colspan="2">', $txt[159], '</td>
	</tr><tr>
		<td class="windowbg" width="20" valign="middle" align="center">
			', $context['allow_pm'] ? '<a href="' . $scripturl . '?action=pm">' : '', '<img src="', $settings['images_url'], '/message_sm.gif" alt="', $txt[159], '" border="0" />', $context['allow_pm'] ? '</a>' : '', '
		</td>
		<td class="windowbg2" valign="top">
			<b><a href="', $scripturl, '?action=pm">', $txt[159], '</a></b>

			<span class="smalltext">
				', $txt[660], ' ', $context['user']['messages'], ' ', $context['user']['messages'] == 1 ? $txt[471] : $txt[153], '.... ', $txt[661], $context['allow_pm'] ? ' <a href="' . $scripturl . '?action=pm">' . $txt[662] . '</a>' : '', ' ', $txt[663], '
			</span>
		</td>
	</tr>';
	}
and add after it:

Code:
// Affiliates?
	echo'
<tr>
		<td class="catbg" colspan="2">Affiliates</td>
	</tr>
	<tr>
		<td class="windowbg" width="20" valign="middle" align="center">
			<img src="', $settings['images_url'], '/icons/members.gif" border="0" width="20" alt="Affiliates" />';
		echo' </td>
		<td class="windowbg2" width="100%">
			<b><a href="http://www.babysimpson.co.uk"> <img src="http://www.babysimpson.co.uk/images/button1.gif" alt="The Cutest Baby" border=0 width="88" height="31"> </a> <a href="http://lisa.babysimpson.co.uk"><img src="http://lisa.babysimpson.co.uk/images/button2.gif" alt="Lisa the Beauty Queen" border=0 width="88" height="31"></a>

		</td>
	</tr>';
Of course you can replace the links with your own.

If you want them on every page, then edit index.template.php.

-ALM
__________________
Gary M. Gadsdon
SMF Customiser


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
AwwLilMaggie is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

 
Posting Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
Unwritten Rules of Forums Ryan Handling Problem Members 3 08-17-2008 02:17 AM
Generic Forum Policy Template gprime Handling Problem Members 8 01-19-2007 01:27 AM
Forum Directories, Web Rings & Topsite Lists shellspeare Creating Interest 11 05-31-2006 05:09 PM

AdminFusion

All times are GMT +1. The time now is 04:20 AM. Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0

© 2009 AdminFusion | Advertising Opportunities | Legal | A member of the Crowdgather Forum Community
 
From:
Title:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77