Création des Logiciels de gestion d'Entreprise, Création et référencement des sites web, Réseaux et Maintenance, Conception
Création des Logiciels de gestion d'Entreprise, Création et référencement des sites web, Réseaux et Maintenance, Conception
Yahoo Buzz is a community-based news article website, just like Digg, that combines the features of social bookmarking and syndication through a user interface that allows editorial control.
Yahoo Buzz has got many different sharing buttons.
Integrating this into blogger will require some template edits.
This post explains how to add Yahoo! Buzz buttons on your every Blogger post. It's really very simple!
To add this widget to your blog, follow these instructions:
Step 1:
Log in to Blogger, go to Design / Layout > Edit HTML and tick the "Expand Widget Templates" checkbox.
Step 2:
Now find (CTRL+F) this in the code:
<data:post.body/>
Square Button:
Case 1:
To place the yahoo buzz button with counter at the top right corner of your post paste this code before/above it :
<div style="float:right;padding:4px;">
<script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype="square"><data:post.url/></script>
</div>
NOTE: Don't forget to save the template.
NOTE: To change the button position from "Top-Right" to "Top-Left" just change the float position to left. i.e. float:right
changes to float:left
check it in Case 2 below.
Case 2:
To place the yahoo buzz button with counter at the top left corner of your post paste this code before/above it :
<div style="float:left;padding:4px;">
<script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype="square"><data:post.url/></script>
</div>
NOTE: Don't forget to save the template.
NOTE: Browse more buttons from here grab the code and replace ARTICLEURL with<data:post.url/>
.
NOTE: To place the yahoo buzz button at the end of your post paste this codeafter/below it.
NOTE: You can also include the first and last line of to place the button left or right.
i.e<div style="float:left;padding:4px;">
|
|
code here
|
|</div>
This will put a Yahoo Buzz Button to every post. But It won't let you choose which post you want to include or exclude a button.
2013, By: Seo Master
Orkut has recently released orkut Share API for its users. Orkut users can now share and promote interesting content from the Internet with their orkut friends easily with just few clicks. The shared content will appear in their activity updates.
Most of the bloggers and webmasters use Facebook share option to share and promote their content on Facebook. Its one of the best methods to promote their content. It seems Orkut is following Facebook in looks and in features too.
To add this button go to Layout > Edit HTML and click on Expand Widget templates, copy and paste the following code above </head>
<!--orkut share starts here-->Now search for the <data:post.body/> tag in your template and add the below code after this tag :
<script src='http://www.google.com/jsapi' type='text/javascript'/>
<script type='text/javascript'>
google.load('orkut.share', '1');
google.setOnLoadCallback(function() {
var params = {};
params[google.orkut.share.Field.TITLE] = '<data:blog.pageName/>';
params[google.orkut.share.Field.DESTINATION_URL] = '<data:blog.url/>';
var connection = new google.orkut.share.Connection(params);
document.getElementById('orkut-share').onclick =
function(e) { connection.send('orkut.com', {}); };
}, true);
</script>
<!--orkut share end-->
<b:if cond='data:blog.pageType == "item"'>If you dont find<data:post.body/> then search for <div class='post-header-line-1'> and paste the above code below this tag.
<span id="orkut-share" style="cursor:pointer; border:1px solid black">
<img src="http://code.google.com/apis/orkut/docs/images/share.gif"/>
</span>
</b:if>