Is it possible to ad a Follow us on Facebook type button on the left of the Search bar.

Any idea of the best way to do this ?

Thank you in advance.

Comments

danpros’s picture

Status: Active » Fixed

Hi,

Simply adding the link into it in page.tpl.php (example):

<div id="authorize">
	<ul>
		<?php global $user; 
			if ($user->uid != 0) {
				print '<li class="first">' .t('Logged in as '). '<a href="' .url('user/'.$user->uid). '">' .$user->name. '</a></li>';
				print '<li class="last"><a href="' .url('user/logout'). '">' .t('Logout'). '</a></li>'; } 
			else {
				print '<li class="first"><a href="' .url('user'). '">' .t('Login'). '</a></li>';
				print '<li class="last"><a href="' .url('user/register'). '">' .t('Register'). '</a></li>'; }
				?>
		<li><a title="Dan on Facebook" href="http://www.facebook.com/danpros">Facebook</a></li> <!-- I add this -->
	</ul>
</div> <!-- end authorize -->

Dan

thesaffer’s picture

Thank you very much!!

Would buy you a beer if I could.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.