Plugin info

Total downloads: 7,555
Active installs: 20
Total reviews: 3
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 7/8/2011 (5290 days ago)
Added to WordPress: 5/28/2011 (14 years old)
Minimum WordPress version: 3.0
Tested up to WordPress version: 3.1.4
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5290 days ago • 3 reviews

22/100

Is UpDownUpDown abandoned?

Possibly abandoned (last update 5290 days ago).

Compatibility

Requires WordPress: 3.0
Tested up to: 3.1.4
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Upvote / Downvote – Vote with a Tweet
Rating 5.0/5 (2 reviews)Active installs 10
Rating-Widget: Star Review System
Rating 4.6/5 (895 reviews)Active installs 3,000
Thumbs Rating
Rating 4.8/5 (53 reviews)Active installs 1,000
Torro Forms
Rating 5.0/5 (17 reviews)Active installs 1,000
Simple Rating
Rating 4.3/5 (15 reviews)Active installs 500
GamiPress – wpDiscuz integration
Rating 0.0/5 (0 reviews)Active installs 90

Description

UpDownUpDown provides two template tags for adding up/down voting for any post or comment. Anonymous guest visitors can either be allowed to vote (tracked by ip address) or be denied voting and shown a view-only vote count badge. Votes are registered on the server without refreshing the page.

Fork the Github repo: https://github.com/davekonopka/updownupdown

This plugin was initially developed as a project of Wharton Research Data Services.

Installation

  1. Upload the folder containing the plugin to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Place the following function calls in your templates, somewhere inside the post or comment loop:
    1. <?php if(function_exists('up_down_post_votes')) { up_down_post_votes( get_the_ID() ); } ?>
    2. <?php if(function_exists('up_down_comment_votes')) { up_down_comment_votes( get_comment_ID() ); } ?>
  4. Display vote badge display only with no voting by setting the second parameter to false:
    1. <?php if(function_exists('up_down_post_votes')) { up_down_post_votes( get_the_ID(), false ); } ?>
    2. <?php if(function_exists('up_down_comment_votes')) { up_down_comment_votes( get_comment_ID(), false ); } ?>
  5. Visit the plugin settings page to customize it.

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

  1. This shows a badge in a post with no votes yet.

    This shows a badge in a post with no votes yet.

  2. This shows a badge in a post with a vote set.

    This shows a badge in a post with a vote set.

  3. This shows a view-only badge if voting is disabled via theme function flag or guest voting is disabled in the admin settings.

    This shows a view-only badge if voting is disabled via theme function flag or guest voting is disabled in the admin settings.

  4. This shows a badge using the alternate simple style.

    This shows a badge using the alternate simple style.

  5. Admin settings page for the plugin.

    Admin settings page for the plugin.

Changelog

1.1

  • Release includes major contributions by Martin Scharm
  • Added admin page
  • Added option to allow guest-votes
  • Added option to select from multiple styles, added simple styling
  • Choose between up/down counts or a total count
  • Fixed some XHTML errors

1.0.1

  • Replaced JavaScript JSON.parse reference with jQuery.parseJSON to accommodate browsers without native JSON support. In IE7 votes were registering on the server but not updating in the browser without a refresh. Now it’s fixed in IE7.

1.0

  • Initial release.