Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wpscanteam
GitHub Repository: wpscanteam/wpscan
Path: blob/master/spec/fixtures/finders/plugin_version/readme/changelog_version.txt
486 views
1
=== Like This ===
2
Contributors: RosemarieP
3
Tags: karma, likes, post
4
Requires at least: 3.0
5
Tested up to: 3.1
6
Stable tag: trunk
7
8
A simple 'I like this' plugin inspired by the facebook 'like' functionality.
9
10
== Description ==
11
A simple 'I like this' plugin inspired by the facebook 'like' functionality. For visitors who don't want to bother with commenting.
12
http://lifeasrose.ca/2011/03/wordpress-plugin-i-like-this
13
has a blog entry all about it :)
14
15
A 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.
16
17
== Installation ==
18
19
1. Upload the files into a folder named `roses-like-this` to the `/wp-content/plugins/` directory
20
2. Activate the plugin through the 'Plugins' menu in WordPress
21
3. Place `<?php printLikes(get_the_ID()); ?>` in 'the loop' of your posts wherever you want the 'like this' link to appear.
22
23
24
IMPORTANT!!!!
25
PLEASE MAKE SURE THAT YOUR THEME HAS THE FOLLOWING LINE IN ITS HEADER FILE:
26
`<?php wp_print_scripts(); ?>`
27
28
...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>`
29
30
== Frequently Asked Questions ==
31
32
= How can I make the 'like this' link look prettier? =
33
34
With CSS :) Here is the code that I use:
35
`a.done {
36
background:url("http://yoururl.com/wordpress/plugins/roses-like-this/action_check.png") bottom right no-repeat;
37
padding-right:18px;
38
color:#8bcb46;
39
}`
40
41
= The javascript is not working! =
42
43
IMPORTANT!!!!
44
PLEASE MAKE SURE THAT YOUR THEME HAS THE FOLLOWING LINE IN ITS HEADER FILE:
45
`<?php wp_print_scripts(); ?>`
46
47
= The javascript is STILL not working!!! =
48
Do you call get_header() in your theme? This is also needed, although almost certainly there anyway.
49
50
= The javascript is STILL not working AGAIN!!! =
51
The 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!
52
53
To 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/
54
55
== Changelog ==
56
57
= .0b =
58
59
= 1.0 =
60
* The very first version of this plugin :)
61
62
= 1.01 =
63
* 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!
64
65
= 1.1 =
66
* Major bug fix! :) Anyone having an issue where the likeThis link clicking wasn't saving in the database should find it fixed.
67
68
= 1.2 =
69
* Bug Fix for those having issues with cookies not being saved correctly.
70
71
= 1.3 =
72
* Added sidebar widget for displaying most liked posts
73
74