Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created May 10, 2022 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pebblo/cdb01b3fafc604f0640a04b5df9fc98d to your computer and use it in GitHub Desktop.
Save Pebblo/cdb01b3fafc604f0640a04b5df9fc98d to your computer and use it in GitHub Desktop.
Example of how to filter the 'No Attendees Yet' string used by the [ESPRESSO_EVENT_ATTENDEES] shortcode.
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_filter('FHEE__loop-espresso_attendees-shortcode__template__no_attendees_message', 'tw_ee_filter_no_attendees_message');
function tw_ee_filter_no_attendees_message() {
return 'No Registrations Yet';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment