How WordCamp Paris Streamlined Speaker Submissions with the Idea Stream Plugin

jenny-beaumontThis post was contributed by guest author Jenny Beaumont. Jenny Beaumont is co-organizer of WordCamp Paris & WordCamp Europe, a frequent speaker at WordCamps in France and abroad, and a contributor to a number of blogs. After 17 years building things in and around the web, she is taking a year-long sabbatical to get a new outlook on life.


If you’ve organized a WordCamp or similar event, then you know the work involved in managing a call for papers. With every submission comes lots of information, both about the candidate and the proposed talk. And with some candidates submitting multiple proposals, the total number of submissions can be 3-4 times the number of slots available.

The call for speakers for WordCamp Paris 2016 brought in upwards of 70 candidates and over 100 proposals!

In the past, most WordCamps have taken proposals through online forms and then organized them within spreadsheets for deliberation. But just as WordCamp Paris has grown in recent years, so has the organizing team, and the spreadsheet method became increasingly laborious and inefficient.

There’s a plugin for that

While preparing for WordCamp Paris 2015, the organizers decided to tackle this problem, and turned to WP Idea Stream, a plugin developed by Mathieu Viet (who has since joined the organizing team).

As the name suggests, WP Idea Stream is a collaborative tool built for the purpose of sharing and managing ideas between members of a WordPress site. A close look shows us that this simple concept contains a lot of intricate and useful features.

Advantages for users

Filling out a form one time is no trouble, but what if you want to submit multiple proposals? Or, what if you’re interrupted while filling out a form and have to start over?

WP Idea Stream solves this problem by giving talk candidates a simple one-time sign-up. With their own account they can:

  • Update their personal information at any time (name, biography, social media accounts, email address, phone number, etc)
  • Submit multiple proposals without needing to resubmit personal information
  • Edit each proposal for up to one hour after submission
  • Access and consult their submissions at any time

Advantages for organizers

Some team members wait until closing to sit and evaluate the proposals in one go, while others prefer to react over time as talks roll in. How do you keep track of those you’ve seen? How do you exchange thoughts and opinions with your teammates? How do you navigate through all of this information?

Vote

WP Idea Stream uses a five-star rating system to vote on ideas (or talks in our case). This makes it easy to see which are the most popular among a large group of organizers.

The plugin settings page includes an easy way to customize the wording for each level.

hover-captions

Comment and debate

To compliment this voting system, organizers can leave comments on each submission to further bolster their argument for or against a talk. They also have the opportunity to point out information that might be lacking, ask questions of the candidate, or make notes of recurring themes that emerge.

Track and filter

As an administrator, there are two ways to view talk proposals: the main “post” view, and a view from within your own profile.

The “post” view is much like the default blog home page on a standard WordPress site. Submissions are listed in chronological descending order by default, including pagination and a display of the total number of talks to date. Then, there is the possibility to:

  • Search by keyword
  • Filter by votes (highest ratings first)
  • Filter by most commented

The excerpt for each talk submission includes:

  • The avatar of the candidate (candidates are encouraged to use the email address associated with their Gravatar account at sign up)
  • The name of the talk
  • The number of comments with a quick link to that section of the talk
  • The current average rating, with a quick link to vote on that talk
  • An excerpt of the talk description
  • A list of all category and tag selections
  • The date of submission
  • A quick link to edit the proposal in the WordPress admin

excerpts

The “profile” view is intended for subscribed users to view their own submissions and to manage their personal information. As an admin, this front-end view also includes some very useful tabs to help keep track of your participation in the deliberation process.

profile-view

  • Published. Shows any and all submissions you might have made. Yes, WordCamp Paris organizers are also often speakers!
  • Commented. Shows all talk proposals that you’ve already commented on.
  • Evaluated. Shows all talk proposals that you’ve already voted on.
  • To be evaluated. Shows all talk proposals that are still awaiting your vote.

Organize

By default, WP Idea Stream comes with standard WordPress category and tag taxonomies, allowing submissions to be further classified and qualified. This year for WordCamp Paris, we used categories to represent three talk formats: 10, 20 and 30-minute preferences.

We use tags for what we call talk “zooms” (basically just thematic tags). The advantage here is that, just like standard WordPress tags, users can be prompted with “most used” keywords to describe their talk’s theme.

Categories and tags have quick links to filter the view by those terms.

This has proven extremely useful for spotting recurring subjects and trends, comparing similar proposals, and even for figuring out subjects that haven’t been covered that we might want to find speakers for.

Export

When it comes down to it, you can’t get around the good old-fashioned spreadsheet for finalizing the job.

Once the team has finished rating all of the talks, the submissions can be easily exported to a spreadsheet, and sorted by vote, theme, and talk duration. From here, the program is built up and finalized, and the bulk of the work is already done.

Requirements

Using WP Idea Stream does requires us to have and maintain a WordPress installation separate from our official WordCamp site, but this is also proving to have a number of advantages including:

  • A dedicated domain for emails
  • A permanent site that can act as a long-term archive, essentially regrouping information and links to each year’s dedicated site

Customization

WP Idea Stream doesn’t work like this out-of-the-box. Many of these features were built specifically for our purposes. Because the plugin is developed to be highly extensible, adapting it for your own needs is relatively easy.

Templates

WP Idea Stream is built with a templating system, allowing you to easily override any of the front-end views from your own theme.

templates

Custom functions

Placing a file named wp-idea-stream-custom.php in wp-content/plugins/ extends the plugin, allowing you to build on the default functionality.

Here are some of the features we’ve added to adapt the plugin to our needs:

  • Publish the content (talks) in private mode
  • Extended user fields, including language preference (the site then displays by default in the preferred language)
  • Time limit for editing talk submissions
  • Front-end admin tabs for viewing submissions by those rated and those still needing to be rated
  • Back-end modifications so that the plugin name and icon are changed in the admin menu.
  • Added a metabox with additional checkboxes to further classify talks by targeted audience
  • Added user role of “speaker,” essentially with the same permissions as the standard “subscriber”.

We also added a fun little function in case any candidates try to sneak a peek by hacking the site’s comment RSS feed:

[php light=”true”]
/**
* Redirect the speaker trying to cheat by adding the feed argument to the talk url :)
*/
function wc_talk_neutralize_feeds_step_two() {
if ( is_feed() && wp_idea_stream_is_ideastream() ) {
wp_idea_stream_add_message( array(
‘type’ => ‘info’,
‘content’ => __( ‘Ah! caught trying to spy!’, ‘wc-talk’ ),
) );
wp_safe_redirect( wp_idea_stream_get_redirect_url() );
exit();
}
}
[/php]

We have used this system for two consecutive years now, improving the functionality as we learn what features are needed to make the process as smooth and efficient as possible. Overall, we might actually spend more time on the process, but it’s qualitative time. These tools humanize the process, allowing us to easily navigate the information and further invest ourselves in both the candidates and their ideas.

As a collaborative tool, it adds an element of fun that you can’t get out of a spreadsheet! This brings an added dynamic to the group, allowing us all to participate in the process and have a voice (except for those organizers who propose talks, of course! ;) ).

Like the idea? You should give it a try!

10

10 responses to “How WordCamp Paris Streamlined Speaker Submissions with the Idea Stream Plugin”

  1. We have been using Trello to manage and track various tasks for our WordCamp in Mumbai, so we create a Card (Allows us to vote/comment/add attachments) for each application on a list for speaker applications as they come in and track them, if rejected the card gets archived, if approved they move to lists where we plan the schedule.

    But this seems like a good Idea to try as well.

    Is this a plugin made available on the WordCamp Websites, if not you should recommend that it’s added…

    • I love Trello for lots of things, but personally have found it difficult to use when managing talk submissions with so much information to sift through. It’s just not easy to look at. With the Idea Stream plugin, it’s just super fast and easy to navigate through and read and click to user bio’s, etc.

      Not available on WordCamp sites…yet? Would be awesome! :)

      • Yes this seems like a better way because on trello, we end up leaving a comment while we are discussing on email, further it becomes one more place to login and check.

        It would be really great if something like this could be added to WordCamp.org. You should suggest it on #Outreach or #Events Channel on Slack and see if this could be included on WordCamp.org

  2. @Alexander
    I think that if you can use a WordPress solution instead, that the best. And in IdeaStream, you have so many usefull tools to rate, classify, export….

    It will be awesome to have it in the WordCamp Websites. No need to switch between websites and we can use all the informations already in place for rendering the speaker’s list at the end.

Newsletter

Subscribe Via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.