A. Adding Twitter and Facebook Like buttons to your Drupal site:
<div class="social-buttons">
<iframe src="http://www.facebook.com/plugins/like.php?href=<?php $curr_url = check_plain("http://" .$_SERVER['HTTP_HOST'] .$node_url); echo $curr_url; ?>&layout=button_count&show_faces=false&width=200&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:200px; height:21px;" allowTransparency="true"></iframe>
<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url="<?php $curr_url = check_plain("http://" .$_SERVER['HTTP_HOST'] .$node_url); echo $curr_url; ?>" data-text="<?php echo $title; ?>" data-via="hunglxh">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
</div>.
- Tìm và mở tập tin node.tpl.php trong thư mục sites/all/themes của bạn. Nếu bạn muốn thêm các nút cho mỗi nút, sau đó chỉnh sửa tập tin này.
- Sau đó sẽ chèn đoạn mã trên giữa <div class="content"> và <?php print $content ?>
- Thay thế "hunglxh" từ các mã trên và chèn tên đăng nhập riêng của bạn trên Twitter.
- Lưu và tải lên tập tin đã thay đổi lên máy chủ của bạn.
.social-buttons{ width: 125px;
float: right;
padding: 10px 10px 6px;
border: 1px solid #EFEFEF;
margin-left: 15px;
}
Bạn có thể thay đổi các thuộc tính CSS theo ý thích của mình
0 nhận xét:
Post a Comment