Eventbrite Attendees Shortcode

from 0$

Eventbrite Attendees Shortcode is a WP Plugin Package from the Open Source WP Plugins range A shortcode to output your Eventbrite attendee list.


For more information about a tailored WP Plugin Package like Eventbrite Attendees Shortcode please contact us directly.

A shortcode to pull in your Eventbrite attendees list.

Example shortcode useage:

[eventbrite-attendees id="384870157"]

More options: [eventbrite-attendees id="YOUR_EVENT_ID" sort="true|false" clickable="true|false" user_key="USER_KEY(IF_NOT_SET_IN_SETTINGS)"]

Shortcode args:

  1. id: with your Eventbrite event id.
  2. sort: Should the attendee list be sorted by puchase date?
  3. clickable: Should links be clickable?
  4. user_key: Your API user key if not saved in the settings.

Leave any comments about the Eventbrite Attendees Shortcode here.

Attendee output control. Eventbrite returns a lot of information in regards to each attendee. You can filter out what you do not want by creating a filter. Use the example code bellow in your theme or a functionallity plugin:

// See: http://developer.eventbrite.com/doc/events/event_list_attendees/ 'only_display' for allowed keys.
function frosty_eventbrite_attendee_data_to_remove( $data ) {
    // If you want to start fresh use the next line
    //$data = array( 'ticket_id', 'tax' ); // etc..

    // If you want to remove additional info from the default
    //$newdata = array( 'eventbrite_fee', 'created' ); // etc..
    //$data = array_unique( array_merge( $newdata, $data ) );
    return $data;
}
add_filter( 'eventbrite_attendees_only_display', 'frosty_eventbrite_attendee_only_display );

Removed is the old app_key and replaced with the user_key. If you want to use your own app key filter it like so:

function frosty_eventbrite_attendees_app_key( $key ) {
    return 'MY_NEW_KEY';
}
add_filter( 'eventbrite_attendees_app_key', 'frosty_eventbrite_attendees_app_key' );

Template $make_clickable example; here are two examples:

#1
$name = 'display_name'
function frosty_eventbrite_attendees_make_display_name_clickable() {
    return true; //default is false
}
add_filter( "eventbrite_attendees_{$name}_make_clickable", 'frosty_eventbrite_attendees_make_display_name_clickable' );

#2
$names = array( 'display_name', 'company' );
foreach ( $names as $name ) :
    add_filter( "eventbrite_attendees_{$name}_make_clickable", "frosty_eventbrite_attendees_make_clickable" );
endforeach;

function frosty_eventbrite_attendees_make_clickable() {
    return true; //default is false
}

Download & install the zip archive

The plugin package installer can be downloaded from the WP2E project tab called “code”.

1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.

2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.

3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.

Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.

Eventbrite Attendees Shortcode

typePlugin
versionlatest
descriptionA shortcode to output your Eventbrite attendee list.