Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created January 14, 2019 22:59
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/739a6c0721d5b15e66d012546513d794 to your computer and use it in GitHub Desktop.
Save Pebblo/739a6c0721d5b15e66d012546513d794 to your computer and use it in GitHub Desktop.
Example plugin
<?php
/*
Plugin Name: Site plugin for myexamplesite.com
Description: Site specific code for myexamplesite.com
*/
/* Begin Adding Functions Below This Line; Do not include an opening PHP tag as this sample code already includes one! */
function tw_ee_custom_qty_text() {
return 'Select Ticket';
}
add_filter( 'FHEE__ticket_selector_chart_template__table_header_qty', 'tw_ee_custom_qty_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment