Page 1 of 1

Solution to Add the Facebook Sharer On your HESK Articles

Posted: Fri May 21, 2010 4:43 pm
by hefin
/*************************************
Title: Adding the Facebook Sharer on your HESK Articles
Version: 1.0
Author:
Demo: http://hefin.in
Download:
Website:

Short description:
A Simple Addition in the Knowledgebase.php page to add the Facebook sharer to allow your Viewers to share your articles on Facebook

*************************************/
Open the knowledgebase.php file and paste the following lines anywhere you want to display the Facebook Share Icon

Code: Select all

echo '<a name="fb_share" type="button_count" share_url="http://[YOUR HESK URL]/knowledgebase.php?article='.$artid.'" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>';
DEMO here
http://hefin.in/knowledgebase.php?article=2
I added this code below the Vote Option
So I pasted the code above the Following line

Code: Select all

    if ($article['catid']==1)
Just felt like sharing this with all of phpjunkyard members
[/code]

Posted: Fri May 21, 2010 7:33 pm
by Klemen
Thanks for sharing!