Changeset 744707
- Timestamp:
- 07/23/2013 01:03:30 AM (13 years ago)
- Location:
- gplus-comments
- Files:
-
- 4 edited
- 14 copied
-
tags/1.5.6 (copied) (copied from gplus-comments/trunk)
-
tags/1.5.6/assets/styles/plugin.css (copied) (copied from gplus-comments/trunk/assets/styles/plugin.css)
-
tags/1.5.6/comments-evolved.php (copied) (copied from gplus-comments/trunk/comments-evolved.php) (1 diff)
-
tags/1.5.6/includes/lib/frontend.php (copied) (copied from gplus-comments/trunk/includes/lib/frontend.php) (1 diff)
-
tags/1.5.6/includes/lib/plugin.php (copied) (copied from gplus-comments/trunk/includes/lib/plugin.php)
-
tags/1.5.6/includes/templates/container.php (copied) (copied from gplus-comments/trunk/includes/templates/container.php) (3 diffs)
-
tags/1.5.6/includes/templates/partials/disqus.php (copied) (copied from gplus-comments/trunk/includes/templates/partials/disqus.php)
-
tags/1.5.6/includes/templates/partials/facebook.php (copied) (copied from gplus-comments/trunk/includes/templates/partials/facebook.php)
-
tags/1.5.6/includes/templates/partials/gplus.php (copied) (copied from gplus-comments/trunk/includes/templates/partials/gplus.php)
-
tags/1.5.6/includes/templates/partials/livefyre.php (copied) (copied from gplus-comments/trunk/includes/templates/partials/livefyre.php)
-
tags/1.5.6/includes/templates/partials/trackback.php (copied) (copied from gplus-comments/trunk/includes/templates/partials/trackback.php)
-
tags/1.5.6/includes/templates/partials/tweetback.php (copied) (copied from gplus-comments/trunk/includes/templates/partials/tweetback.php)
-
tags/1.5.6/includes/templates/partials/wordpress.php (copied) (copied from gplus-comments/trunk/includes/templates/partials/wordpress.php)
-
tags/1.5.6/readme.txt (copied) (copied from gplus-comments/trunk/readme.txt) (2 diffs)
-
trunk/comments-evolved.php (modified) (1 diff)
-
trunk/includes/lib/frontend.php (modified) (1 diff)
-
trunk/includes/templates/container.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gplus-comments/tags/1.5.6/comments-evolved.php
r744243 r744707 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 10 Donate link: http://www.wepay.com/donations/brandonholtsclaw 11 Version: 1.5. 511 Version: 1.5.6 12 12 */ 13 13 -
gplus-comments/tags/1.5.6/includes/lib/frontend.php
r744243 r744707 30 30 return $total_count; 31 31 } 32 add_filter('get_comments_number', 'comments_evolved_get_total_count', 4269);32 //add_filter('get_comments_number', 'comments_evolved_get_total_count', 4269); 33 33 34 34 function comments_evolved_get_wordpress_count() { -
gplus-comments/tags/1.5.6/includes/templates/container.php
r744243 r744707 44 44 } 45 45 $active = ' class="active"'; 46 46 /* 47 47 $wordpress_count = comments_evolved_get_wordpress_count(); 48 48 $gplus_count = comments_evolved_get_gplus_count(); … … 50 50 $facebook_count = comments_evolved_get_facebook_count(); 51 51 $disqus_count = comments_evolved_get_disqus_count(); 52 52 */ 53 53 foreach ($tab_order as &$tab) { 54 54 $tab = trim($tab); … … 61 61 } 62 62 echo "<span id='" . $tab . "-label'>" . $options[${tab} . '_label'] . "</span>"; 63 echo "<span id='" . $tab . "-count'> (${$tab . '_count'})</span>";63 //echo "<span id='" . $tab . "-count'> (${$tab . '_count'})</span>"; 64 64 echo "</a></li>" . PHP_EOL; 65 65 $active = ''; -
gplus-comments/tags/1.5.6/readme.txt
r744243 r744707 7 7 Requires at least: 3.5 8 8 Tested up to: 3.6 9 Stable Tag: 1.5. 59 Stable Tag: 1.5.6 10 10 11 11 Comments Evolved ( formerly Google+ Comments for WordPress ) makes the comment section tabbed seamlessly adding tabs for Comments & More … … 103 103 104 104 == Change Log == 105 = 1.5.6 = 106 * reverted comment counting code for now until preformace issues can be resolved in a future update 107 105 108 = 1.5.5 = 106 109 * udates to the disqus comment count -
gplus-comments/trunk/comments-evolved.php
r744243 r744707 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 10 Donate link: http://www.wepay.com/donations/brandonholtsclaw 11 Version: 1.5. 511 Version: 1.5.6 12 12 */ 13 13 -
gplus-comments/trunk/includes/lib/frontend.php
r744243 r744707 30 30 return $total_count; 31 31 } 32 add_filter('get_comments_number', 'comments_evolved_get_total_count', 4269);32 //add_filter('get_comments_number', 'comments_evolved_get_total_count', 4269); 33 33 34 34 function comments_evolved_get_wordpress_count() { -
gplus-comments/trunk/includes/templates/container.php
r744243 r744707 44 44 } 45 45 $active = ' class="active"'; 46 46 /* 47 47 $wordpress_count = comments_evolved_get_wordpress_count(); 48 48 $gplus_count = comments_evolved_get_gplus_count(); … … 50 50 $facebook_count = comments_evolved_get_facebook_count(); 51 51 $disqus_count = comments_evolved_get_disqus_count(); 52 52 */ 53 53 foreach ($tab_order as &$tab) { 54 54 $tab = trim($tab); … … 61 61 } 62 62 echo "<span id='" . $tab . "-label'>" . $options[${tab} . '_label'] . "</span>"; 63 echo "<span id='" . $tab . "-count'> (${$tab . '_count'})</span>";63 //echo "<span id='" . $tab . "-count'> (${$tab . '_count'})</span>"; 64 64 echo "</a></li>" . PHP_EOL; 65 65 $active = ''; -
gplus-comments/trunk/readme.txt
r744243 r744707 7 7 Requires at least: 3.5 8 8 Tested up to: 3.6 9 Stable Tag: 1.5. 59 Stable Tag: 1.5.6 10 10 11 11 Comments Evolved ( formerly Google+ Comments for WordPress ) makes the comment section tabbed seamlessly adding tabs for Comments & More … … 103 103 104 104 == Change Log == 105 = 1.5.6 = 106 * reverted comment counting code for now until preformace issues can be resolved in a future update 107 105 108 = 1.5.5 = 106 109 * udates to the disqus comment count
Note: See TracChangeset
for help on using the changeset viewer.