Path: blob/master/spec/fixtures/finders/plugin_version/readme/changelog_version.txt
486 views
=== Like This ===1Contributors: RosemarieP2Tags: karma, likes, post3Requires at least: 3.04Tested up to: 3.15Stable tag: trunk67A simple 'I like this' plugin inspired by the facebook 'like' functionality.89== Description ==10A simple 'I like this' plugin inspired by the facebook 'like' functionality. For visitors who don't want to bother with commenting.11http://lifeasrose.ca/2011/03/wordpress-plugin-i-like-this12has a blog entry all about it :)1314A big thanks to Dong ([email protected]) for finding a syntactical error that was causing problems for some people. And thanks to Raphael ([email protected]) for noticing this error and working hard to figure out what it was.1516== Installation ==17181. Upload the files into a folder named `roses-like-this` to the `/wp-content/plugins/` directory192. Activate the plugin through the 'Plugins' menu in WordPress203. Place `<?php printLikes(get_the_ID()); ?>` in 'the loop' of your posts wherever you want the 'like this' link to appear.212223IMPORTANT!!!!24PLEASE MAKE SURE THAT YOUR THEME HAS THE FOLLOWING LINE IN ITS HEADER FILE:25`<?php wp_print_scripts(); ?>`2627...Most high quality themes should have this already but if you're writing your own theme or using a custom theme that doesn't include this line, please make sure you include it in header.php, somewhere between `<head>` and `</head>`2829== Frequently Asked Questions ==3031= How can I make the 'like this' link look prettier? =3233With CSS :) Here is the code that I use:34`a.done {35background:url("http://yoururl.com/wordpress/plugins/roses-like-this/action_check.png") bottom right no-repeat;36padding-right:18px;37color:#8bcb46;38}`3940= The javascript is not working! =4142IMPORTANT!!!!43PLEASE MAKE SURE THAT YOUR THEME HAS THE FOLLOWING LINE IN ITS HEADER FILE:44`<?php wp_print_scripts(); ?>`4546= The javascript is STILL not working!!! =47Do you call get_header() in your theme? This is also needed, although almost certainly there anyway.4849= The javascript is STILL not working AGAIN!!! =50The plugin expects to find the javascript file in a folder called `roses-like-this` under /plugins. So if you have named the folder something else, you're probably getting a 404 error!5152To fix, you can either rename your folder `roses-like-this` OR you can edit the `likethis.php` file and edit line `112` roses-like-this/ to yourfoldername/5354== Changelog ==5556= .0b =5758= 1.0 =59* The very first version of this plugin :)6061= 1.01 =62* Made a small change for those of you installing directly from wordpress.org. This changes the default directory from `likeThis` to `roses-like-this` in order to coincide with what wordpress will install. Should lead to less confusion!6364= 1.1 =65* Major bug fix! :) Anyone having an issue where the likeThis link clicking wasn't saving in the database should find it fixed.6667= 1.2 =68* Bug Fix for those having issues with cookies not being saved correctly.6970= 1.3 =71* Added sidebar widget for displaying most liked posts727374