Drupal 7 Beta 1 was just released! So, what does that mean. If you have not tested it, now would be a great time to do so.
Quoted from Drupal.org....
The jump between alpha to beta means the following:
We think that we have resolved all critical data loss and security bugs in Drupal 7.
We think that our APIs are now frozen enough so that contributed module and theme authors can start (or pick up again) their #D7CX pledges.
We think that we have caught and fixed most of the problems with the upgrade path. We were able to successfully upgrade a copy of the Drupal.org database to Drupal 7.
I wanted to look at integrating the Facebook 'Like' button on individual nodes (including a list of nodes using views). I ran across a few resources and found a good starting point. My approach embeds the code within node-{content type}.tpl.php.
Find and open the node.tpl.php file in your theme folder. If you want to add the like button to each and every node, then edit this file. If you want to add it to certain content types, then you can open that specific node.tpl.php file or simply copy this file and rename to node-{insertContentTypeHere}.tpl.php (for a content type of Video, your file will be named node-video.tpl.php. If that was confusing to you, leave a comment and I'll try to explain further.
We will want to insert the code above between <div class="content"> and <?php print $content ?>
Save and upload your modified file to your server.
You can test it out on using the LIKE button on the top right of this post. Go ahead, give it a shot!
The Facebook like button has two color options. Light and Dark. You can switch by modifying the code above from colorscheme=light to colorscheme=dark.
I've spent a better part of a few hours looking into node_import + ubercard 2.x and have not had much luck importing correctly. I'm hoping to get it worked out and blog about how to accomplish the heirarchical category import for products.