[Rose CP 1.5 Tutorial] How to add a voting link.

Status
Not open for further replies.
Junior Spellweaver
Joined
Jan 18, 2006
Messages
196
Reaction score
0
This one is quite simple,

Just open functions.php and find:
Code:
global $votelink1, $votelink2, $votelink3;

And change it to this:
Code:
global $votelink1, $votelink2, $votelink3, $votelink4;

Then find
Code:
	'.$votelink1.'<br />
	'.$votelink2.'<br />
	'.$votelink3.'<br />
and just add
Code:
	'.$votelink4.'<br />



Now go to the config.php file and add
Code:
$votelink4 = '
<a href="VOTING LINK" target="_blank"><img border="0" src="IMAGE LINK" alt="" /></a>';

Thank you for reading.
 
Status
Not open for further replies.
Back