Quote:
Originally Posted by Forum Lover
Tagged. How can I do the same for my vb blog? Thanks in advance. 
|

----------------------------------------------------------------------------------------------
This will Place the Facebook Icon after you Blog Title
Steps:
1- AdminCP
2- Styles & Templates
3- Search in Templates
4- Look For blog_show_entry
5- In there look for the code
6-Add the following code BFEFORE it
<if condition="$post[postcount] == 1">
Code:
<script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)
+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script><a href="http://www.facebook.com/share.php?u=
<http://www.YOURSITE.com>" onclick="return fbs_click()" target="_blank">
<img src="http://www.YOURSITE.com/FaceBookIMAGEPATH" alt="Share on facebook" style="border-style: none"/>
</a>
The
GREEN Font Needs to be changed
----------------------------------------------------------------------------------------------
If you wana place it beside the icon which emails the blog entry
In the same template blog_show_entry
Look for:
Code:
<if condition="$show['emailentry']">
<a href="blog.php?$session[sessionurl]do=sendtofriend&b=$bloginfo[blogid]">
<img src="$stylevar[imgdir_misc]/blog/email_go.gif" border="0" class="inlineimg" alt="$vbphrase[email_blog_entry]" />
</a>
</if>
After That add:
Code:
<script>function fbs_click() {u=location.href;t=document.title;window.open
('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)
+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436
');return false;}</script><a href="http://www.facebook.com/share.php?u=<
http://www.YOURSITE.com>" onclick="return fbs_click()"
target="_blank"><img src="
http://www.YOURSITE.com/FaceBookIMAGEPATH" border="0" class="inlineimg"
alt="Share on facebook" style="border-style: none"/></a>
The
GREEN Font Needs to be changed
----------------------------------------------------------------------------------------------
Take Note that there is a slight difference between the code added beside the title and the one added beside the email entry.
Cheers