Support

Home Forums Event Espresso Premium PayPal Invoice only shows first event

PayPal Invoice only shows first event

Posted: March 13, 2017 at 10:10 pm

Viewing 1 reply thread


mpaska

March 13, 2017 at 10:10 pm

My client receives invoices from PayPal, but only the first event is listed on the statement under “Description” i.e. “Event Registrations from [client name] for [course name]. How do I either include all events registered, or only list a generic “Event Registrations from [client name]”?


Josh

  • Support Staff

March 14, 2017 at 1:08 pm

Hi there,

You’re probably going to need to go with a generic order description instead of listing all of the events in that field. This can be done by adding a bit of PHP code to a site specific plugin:

add_filter( 'FHEE__EE_Gateway___order_description', 
  'my_custom_order_description', 10, 3 
);
function my_custom_order_description( $desc, $gateway, $payment ) {
  $desc = 'Event Registrations from ' . get_bloginfo('name');
  return $desc;
}

You can add the above to a functions plugin.

Viewing 1 reply thread

The support post ‘PayPal Invoice only shows first event’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso