MeawtuzA, on 15 May 2010 - 06:56 AM, said:
i wouldn't use addthis button in a oscommerce shop, since it's a third party application and some information can be collected by them.
i think the best is to use like they have these forums.
Posted 03 June 2010 - 08:36 AM
Posted 06 June 2010 - 05:54 PM
Posted 14 June 2010 - 01:17 PM
supplementler, on 06 June 2010 - 05:54 PM, said:
Posted 20 July 2010 - 02:28 PM
Posted 21 July 2010 - 12:25 PM
Posted 17 August 2010 - 03:53 PM
piou, on 20 July 2010 - 02:28 PM, said:
href="<?php echo HTTP_SERVER . $_SERVER['REQUEST_URI']; ?>"to exclude the session id in some way?
Posted 17 August 2010 - 06:45 PM
Quote
Posted 17 August 2010 - 07:44 PM
piou, on 17 August 2010 - 06:45 PM, said:
Posted 20 August 2010 - 06:34 PM
Posted 20 August 2010 - 08:02 PM
Posted 31 August 2010 - 11:49 AM
Francys, on 03 May 2010 - 12:20 PM, said:
Posted 23 September 2010 - 11:14 PM
Aarto, on 20 August 2010 - 06:34 PM, said:
Posted 24 September 2010 - 11:12 PM
knifeman, on 23 September 2010 - 11:14 PM, said:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Site name</title>
</head>
<body>
<h1>Site name</h1>
<p><fb:login-button autologoutlink="true"></fb:login-button></p>
<p><fb:like></fb:like></p>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'MY APP ID NUMBER', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
</body>
</html>
http://developers.facebook.com/docs/reference/plugins/likeThere are places to alter the behavior, but I do not see these features in the code I used. I changed status to false and saw no difference. I changed xfbml to false and all but the site name went away. To be honest, I do not even know why it works when all the posts go on about 2 different pieces of code need to be added.
Posted 28 September 2010 - 07:35 PM
knifeman, on 23 September 2010 - 11:14 PM, said:
Posted 04 October 2010 - 07:19 AM
<html <?php echo HTML_PARAMS; ?>>
<html <?php echo HTML_PARAMS; ?> xmlns:fb="http://www.facebook.com/2008/fbml">
<fb:like
href="<?php echo HTTP_SERVER . $_SERVER['REQUEST_URI']; ?>"
layout="standard"
show_faces="false"
width="300"
action="like"
font="trebuchet ms"
colorscheme="light"></fb:like>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({appId: 'App ID Number', status: true, cookie: true, xfbml: true});
FB.Event.subscribe('auth.sessionchange', function(response) {
if (response.session) {
// A user has logged in, and a new cookie has been saved
} else {
// The user has logged out, and the cookie has been cleared
}
});
</script>
Posted 18 October 2010 - 10:38 AM
Posted 18 October 2010 - 10:40 AM
Edited by jack_frost, 18 October 2010 - 10:40 AM.
Posted 18 October 2010 - 12:14 PM