[WCDDL] Facebook Likes, Modification

Description:
Add's a "Like", and ability to post to facebook little logo thing for each download.

Example:


How to implement?
1. You must have a facebook app, refer here - http://developers.facebook.com/docs/.../plugins/like/
2. Open 'index.php' with notepad2/ide
3. Insert this first bit of code right below <body>

4. Find this line:
PHP Code: 
<tr><td>Type</td><td><strong>Title</strong></td><td>Views</td><td>Google Plus</td></tr
and modify to:
PHP Code: 
<tr><td>Type</td><td><strong>Title</strong></td><td>Views</td><td>Google Plus</td><td>Facebook</td></tr
5. Find this:
Code: 
		<tr>
			<td><?php echo $row->type; ?></td>
			<td><a href="download.php?id=<?php echo $row->id; ?>"><?php echo $row->showTitle(); ?></a></td>
			<td><?php echo $row->views; ?></td>
                        <td><g:plusone size="small" href="download.php?id=<?php echo $row->id; ?>"></g:plusone></td>
		</tr>
and replace/modify to:
Code: 
		<tr>
			<td><?php echo $row->type; ?></td>
			<td><a href="download.php?id=<?php echo $row->id; ?>"><?php echo $row->showTitle(); ?></a></td>
			<td><?php echo $row->views; ?></td>
                        <td><g:plusone size="small" href="download.php?id=<?php echo $row->id; ?>"></g:plusone></td>
                        <td><div class="fb-like" data-href="<?php echo WCDDL_PATH; ?>download.php?id=<?php echo $row->id; ?>" data-send="false" data-layout="button_count" data-width="40" data-show-faces="false"></div></div></td>
		</tr>
6. Trial and error, give it a go, modify etc, post to facebook and check if it's posted on facebook.
_Vick Reviewed by _Vick on . [WCDDL] Facebook Likes, Modification Facebook Likes, Modification Description: Add's a "Like", and ability to post to facebook little logo thing for each download. Example: http://screensnapr.com/e/HMHHY8.jpg How to implement? 1. You must have a facebook app, refer here - http://developers.facebook.com/docs/reference/plugins/like/ Rating: 5