Version Description
- updated : compatibility
- updated : no longer encoding to UTF8
Download this release
Release Info
Developer | commentluv |
Plugin | CommentLuv |
Version | 2.94.7 |
Comparing to | |
See all releases |
Code changes from version 2.94.5 to 2.94.7
- Thumbs.db +0 -0
- commentluv.php +15 -41
- images/logo-reveal-twitter-image.jpg +0 -0
- images/twitch-avatar-new-andy-cartoon.png +0 -0
- readme.txt +7 -3
Thumbs.db
DELETED
Binary file
|
commentluv.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/
|
4 |
Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
5 |
-
Version: 2.94.
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
@@ -28,7 +28,7 @@ if (! class_exists ( 'commentluv' )) {
|
|
28 |
var $plugin_url;
|
29 |
var $plugin_dir;
|
30 |
var $db_option = 'commentluv_options';
|
31 |
-
var $version = "2.94.
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
@@ -1365,7 +1365,7 @@ if (! class_exists ( 'commentluv' )) {
|
|
1365 |
if(isset($options['utf8']) && $options['utf8'] == 'on'){
|
1366 |
// do nothing if set to disable utf8 encoding
|
1367 |
} else {
|
1368 |
-
$feed = utf8_encode($feed);
|
1369 |
}
|
1370 |
header("Content-Type: application/atom+xml; charset=".get_bloginfo('charset'));
|
1371 |
echo $feed;
|
@@ -1788,19 +1788,15 @@ if (! class_exists ( 'commentluv' )) {
|
|
1788 |
<td>
|
1789 |
<?php
|
1790 |
//debugbreak();
|
1791 |
-
|
1792 |
-
$rss = fetch_feed('http://comluv.com/category/ads/feed/');
|
1793 |
-
if(!is_wp_error($rss)) {
|
1794 |
-
$maxitems = $rss->get_item_quantity(2);
|
1795 |
-
$rssitems = $rss->get_items(0,$maxitems);
|
1796 |
-
}
|
1797 |
-
if(isset($rssitems) && is_array($rssitems)){
|
1798 |
-
foreach($rssitems as $item){
|
1799 |
-
echo '<div><a href="'.esc_url( $item->get_permalink() ).'">'.esc_html($item->get_title()).'</a>';
|
1800 |
-
echo '<p>'.$item->get_content().'</p></div>';
|
1801 |
-
}
|
1802 |
-
}
|
1803 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1804 |
</td>
|
1805 |
</tr>
|
1806 |
</table>
|
@@ -1834,32 +1830,10 @@ if (! class_exists ( 'commentluv' )) {
|
|
1834 |
<tr><td colspan="2"><iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FCommentLuv%2F156438857738200&width=210&colorscheme=light&show_faces=true&stream=false&header=false&height=450" scrolling="no" frameborder="1" style="border:none; overflow:auto; width:210px; height:400px;" allowTransparency="true"></iframe></td></tr>
|
1835 |
<tr class="alt"><td colspan="2"><?php _e('News',$this->plugin_domain);?>:</td></tr>
|
1836 |
<tr><td colspan="2">
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
$uri = 'http://comluv.com/category/newsletter/feed/';
|
1842 |
-
$feed = fetch_feed($uri);
|
1843 |
-
if(!is_wp_error($feed)){
|
1844 |
-
$rss_items = $feed->get_items(0,3);
|
1845 |
-
if($rss_items){
|
1846 |
-
foreach($rss_items as $item){
|
1847 |
-
?>
|
1848 |
-
<ul>
|
1849 |
-
<li>
|
1850 |
-
<a href='<?php echo esc_url( $item->get_permalink() ); ?>'
|
1851 |
-
title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
|
1852 |
-
<?php echo esc_html( $item->get_title() ); ?></a>
|
1853 |
-
</li>
|
1854 |
-
</ul>
|
1855 |
-
<?php
|
1856 |
-
}
|
1857 |
-
}
|
1858 |
-
}
|
1859 |
-
}
|
1860 |
-
|
1861 |
-
?>
|
1862 |
-
</td></tr>
|
1863 |
<tr class="alt"><td colspan="2"><?php _e('Thanks to the following for translations',$this->plugin_domain);?>:</td></tr>
|
1864 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/it.png"/> <?php _e('Italian',$this->plugin_domain);?></td><td><a target="_blank" href="http://gidibao.net/">Gianni Diuno</a></td></tr>
|
1865 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/nl.png"/> <?php _e('Dutch',$this->plugin_domain);?></td><td><a target="_blank" href="http://wpwebshop.com/">Rene</a></td></tr>
|
2 |
Plugin Name: CommentLuv
|
3 |
Plugin URI: http://comluv.com/
|
4 |
Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
5 |
+
Version: 2.94.7
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.commentluv.com
|
8 |
Copyright (C) <2011> <Andy Bailey>
|
28 |
var $plugin_url;
|
29 |
var $plugin_dir;
|
30 |
var $db_option = 'commentluv_options';
|
31 |
+
var $version = "2.94.7";
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
1365 |
if(isset($options['utf8']) && $options['utf8'] == 'on'){
|
1366 |
// do nothing if set to disable utf8 encoding
|
1367 |
} else {
|
1368 |
+
// $feed = utf8_encode($feed); // removing this for now (2.94.7+)
|
1369 |
}
|
1370 |
header("Content-Type: application/atom+xml; charset=".get_bloginfo('charset'));
|
1371 |
echo $feed;
|
1788 |
<td>
|
1789 |
<?php
|
1790 |
//debugbreak();
|
1791 |
+
// twitch ad?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
?>
|
1793 |
+
<img src="<?php echo $this->plugin_url;?>images/logo-reveal-twitter-image.jpg"/>
|
1794 |
+
</td>
|
1795 |
+
<td>
|
1796 |
+
<h2>My Alter-ego</h2>
|
1797 |
+
<p>My new alter-ego is LoonyGeekFun on twitch. Since I was diagnosed with MS I have had to step away from making plugins and software apps so now, I make logos, banners and intro videos for my twitch followers.</p>
|
1798 |
+
<p>Please <a href="http://twitch.tv/LoonyGeekFun" title="click to visit my twitch channel">Visit My Channel (http://www.twitch.tv/LoonyGeekFun)</a> and get a video or intro done. (Perhaps even a promotional video for your blog, a video for your capture page or even pay to get a sales video!)</p>
|
1799 |
+
<p>I would love it if you could come along and say hi and that you use commentluv! </p>
|
1800 |
</td>
|
1801 |
</tr>
|
1802 |
</table>
|
1830 |
<tr><td colspan="2"><iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FCommentLuv%2F156438857738200&width=210&colorscheme=light&show_faces=true&stream=false&header=false&height=450" scrolling="no" frameborder="1" style="border:none; overflow:auto; width:210px; height:400px;" allowTransparency="true"></iframe></td></tr>
|
1831 |
<tr class="alt"><td colspan="2"><?php _e('News',$this->plugin_domain);?>:</td></tr>
|
1832 |
<tr><td colspan="2">
|
1833 |
+
<h3>I Started a twitch channel!</h3>
|
1834 |
+
<?php // enter twitch details here? ?>
|
1835 |
+
<a href="http://twitch.tv/loonygeekfun" target="_blank" title="visit my twitch channel!"><img width="200" src="<?php echo $this->plugin_url;?>images/twitch-avatar-new-andy-cartoon.png" alt="http://twitch.tv/loonygeekfun"/></a>
|
1836 |
+
</td></tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1837 |
<tr class="alt"><td colspan="2"><?php _e('Thanks to the following for translations',$this->plugin_domain);?>:</td></tr>
|
1838 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/it.png"/> <?php _e('Italian',$this->plugin_domain);?></td><td><a target="_blank" href="http://gidibao.net/">Gianni Diuno</a></td></tr>
|
1839 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/nl.png"/> <?php _e('Dutch',$this->plugin_domain);?></td><td><a target="_blank" href="http://wpwebshop.com/">Rene</a></td></tr>
|
images/logo-reveal-twitter-image.jpg
ADDED
Binary file
|
images/twitch-avatar-new-andy-cartoon.png
ADDED
Binary file
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== CommentLuv ===
|
2 |
-
Contributors: commentluv,
|
3 |
Donate link:http://comluv.com/about/donate
|
4 |
Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
|
5 |
Requires at least: 3.6
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.94.
|
8 |
|
9 |
Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
10 |
|
@@ -115,6 +115,10 @@ Please tick the box marked "disable UTF8 encoding" in the technical settings are
|
|
115 |
|
116 |
== ChangeLog ==
|
117 |
|
|
|
|
|
|
|
|
|
118 |
= 2.94.5 =
|
119 |
*updat4ed : compatibility
|
120 |
|
1 |
=== CommentLuv ===
|
2 |
+
Contributors: commentluv,bompus
|
3 |
Donate link:http://comluv.com/about/donate
|
4 |
Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
|
5 |
Requires at least: 3.6
|
6 |
+
Tested up to: 4.5.1
|
7 |
+
Stable tag: 2.94.7
|
8 |
|
9 |
Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
|
10 |
|
115 |
|
116 |
== ChangeLog ==
|
117 |
|
118 |
+
= 2.94.7 =
|
119 |
+
* updated : compatibility
|
120 |
+
* updated : no longer encoding to UTF8
|
121 |
+
|
122 |
= 2.94.5 =
|
123 |
*updat4ed : compatibility
|
124 |
|