Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Last active February 13, 2017 13:50
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 lorenzocaum/36ceb38b5ca6864de649 to your computer and use it in GitHub Desktop.
Save lorenzocaum/36ceb38b5ca6864de649 to your computer and use it in GitHub Desktop.
How to add a short message above the promotion code field on the registration checkout page for Event Espresso 4

Add the sample code below to your child theme's functions.php file or in a site specific plugin.

<?php
//* Do NOT include the opening php tag

//* Add a label for the promotion code field
add_filter( 'FHEE__EED_Promotions___add_promotions_form_inputs__ee_promotion_code_input__html_label_text', 'ee_registration_checkout_promotions_heading' );
function ee_registration_checkout_promotions_heading() {

 return 'Enter your Discount Code';
}