Making WordPress.org

Changeset 1697


Ignore:
Timestamp:
07/02/2015 11:24:54 PM (9 years ago)
Author:
iandunn
Message:

WordCamp Organizer Nags: Add dashboard widget for Removing Pain Points.

This replaces the follow-up survey widget, since that has expired.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-organizer-nags/wordcamp-organizer-nags.php

    r1659 r1697  
    4747        }
    4848
    49         // The survey expires 2015-06-21 at 11:45pm UTC
    50         if ( time() < 1434930300 ) {
    51             wp_add_dashboard_widget(
    52                 'improving_tools_survey',
    53                 'WordCamp Organizer Follow-Up Survey',
    54                 array( $this, 'render_tools_survey' )
    55             );
    56         }
     49        wp_add_dashboard_widget(
     50            'removing_pain_points',
     51            'Removing WordCamp.org Pain Points',
     52            array( $this, 'render_removing_pain_points' )
     53        );
    5754
    5855        $this->prioritize_wordcamp_widgets();
     
    207204
    208205    /**
    209      * Render the content for the WordCamp Organizer Survey dashboard widget
    210      */
    211     public function render_tools_survey() {
     206     * Render the content for the Removing WordCamp.org Pain Points dashboard widget
     207     */
     208    public function render_removing_pain_points() {
    212209        ?>
    213210
    214         <p>Please <a href="http://wordcampcentral.polldaddy.com/s/improving-wordcamp-org-tools-clarification">take this 1-question survey</a> to help clarify the results of the previous survey.
     211        <p>There are several projects underway to eliminate the worst pain points that WordCamp organizers have reported. Check them out if you'd like to get involved!</p>
     212
     213        <ul class="ul-disc">
     214            <li><a href="https://make.wordpress.org/community/2015/06/10/wordcamp-org-tools-survey-results/">Quickly clone another WordCamp site</a> instead of building yours from scratch.</li>
     215            <li><a href="https://make.wordpress.org/community/2015/06/16/editing-wordcamp-css-locally-with-git/">Edit CSS in your local environment</a> and manage it in a Git(Hub) repository.</li>
     216            <li><a href="https://make.wordpress.org/community/2015/07/02/results-from-the-wordcamp-org-tools-follow-up-survey/">Build a new theme</a> for WordCamp sites.</li>
     217            <li><a href="https://make.wordpress.org/community/2015/06/10/wordcamp-org-tools-survey-results/">Improve documentation</a>.</li>
     218        </ul>
    215219
    216220        <?php
Note: See TracChangeset for help on using the changeset viewer.