Plugin info

Total downloads: 1,442
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 12/24/2009 (5852 days ago)
Added to WordPress: 12/24/2009 (16 years old)
Minimum WordPress version: 2.9
Tested up to WordPress version: 2.9.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5852 days ago

20/100

Is Sentimeter abandoned?

Possibly abandoned (last update 5852 days ago).

Compatibility

Requires WordPress: 2.9
Tested up to: 2.9.2
Requires PHP: f

Languages

Similar & Alternatives

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

No similar plugins found yet.

Description

This plugin allows users to express sentiments (a la getsatisfaction.com, e.g. happy, neutral, outraged etc.) through the WordPress commenting system. Users can also associate their comment with a pre-defined ‘topic’. Overall sentiment, and comment topics, can be viewed as pie charts in the admin system, within a user-defined date range. Additionally, comments (along with their sentiment, and topic, if specified) can be exported as a CSV for further offline analysis.

Note that, in order to fully incorporate this plugin, you will need to modify your theme. This is so that theme developers have full control over the markup that is generated. The following Loop-inspired template tags are provided in order to render the defined sentiments and topics:

  • smtr_has_sentiments – determines whether their are any sentiments to display
  • smtr_the_sentiment – initializes the current sentiment for display
  • smtr_the_sentiment_name – echoes the current sentiment name (“Happy”, “Neutral”, “Outraged” etc.), first escaping any HTML
  • smtr_the_sentiment_value – echoes the current sentiment value (“happy”, “neutral”, “outraged” etc.), first escaping any HTML
  • smtr_has_topics – determines whether their are any topics to display
  • smtr_the_topic – initializes the current topic for display
  • smtr_the_topic_name – echoes the current topic name (“Help”, “Ideas”, “Suggestions” etc.), first escaping any HTML
  • smtr_the_topic_value – echoes the current topic value (“help”, “ideas”, “suggestions” etc.), first escaping any HTML
  • smtr_is_topic_selected – returns TRUE if the current topic should be selected (intended for use when rendering a select formm element with multiple topic options)

One suggested arrangement of these template tags is:

  • I'm feeling

Installation

  1. Upload the sentimeter folder to your /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Modify your existing comments form to include options for sentiment and/or topic using the installed template tags
  4. Monitor sentiment through the admin UI, by navigating to the Sentimeter page, located under the Tools menu

Frequently Asked Questions

How do I specify my own sentiments and/or topics?

Currently, there is no admin UI to override the default sentiments or topics, this is planned for a future release.

However, the default sentiments and topics are just options in the wp_option database table. The following PHP script, when placed in the root of your WordPress install, can be used to override the default sentiments and topics after the plugin has been installed:

<?php // Load up WordPress include 'wp-load.php';  // Define sentiments/topics (edit as required, but maintaining the data structure) $sentiments = array(     array(         'name' => 'Happy',        // name is show to the end user         'value' => 'happy'        // value is stored in the database     ),     array(         'name' => 'Neutral',         'value' => 'neutral'     ),     array(         'name' => 'Outraged',         'value' => 'outraged'     ) ); $topics = array(     array(         'name' => 'Help',         'value' => 'help'     ),     array(         'name' => 'Ideas',         'value' => 'ideas'     ),     array(         'name' => 'Improvements',         'value' => 'improvements'     ),     array(         'name' => 'Something else',         'value' => 'other',         'default' => 'true'       // this will cause Something else to be pre-selected in a drop-down     ) );  // Load sentiments/topics update_option('smtr_sentiments', $sentiments); update_option('smtr_topics', $topics); ?> 

How can I use my own emoticons/icons for the sentiments, a la getsatisfaction.com?

Excellent question. We’ve had success with Ryan Fait’s custom form elements script.

Where is that awesome pie-chart generator from?

We’re using the gRapha?l charting JavaScript library. Yes, it is awesome, isn’t it? 🙂

I have another question!

Get in touch with me.

Review feed

No reviews available

Screenshots

  1. This screen shot shows an example sentiment analysis, broken down both by sentiment and topic, within the WordPress admin UI.

    This screen shot shows an example sentiment analysis, broken down both by sentiment and topic, within the WordPress admin UI.

Changelog

1.0

  • First release.