Embed Snippet on Your Site
MemberPress: Display Custom Field Value Instead of Customer Name in PDF Invoice
This code snippet enhances your MemberPress PDF invoices by automatically displaying a company name at the beginning of the "Bill To" section instead of the customer's personal name. If no company name is available, it falls back to displaying the customer's full name. This modification is particularly useful for businesses that primarily serve other companies rather than individuals, ensuring your invoices display the correct business entity for accounting purposes.
The company name has to be collected through a custom field on member registration or via member Account. Thus, this code snippet require a custom field created for storing company names. The custom field can be created at Dashboard > MemberPress > Settings > Fields tab.
The sample code is using the custom field with the mepr_company_name slug.
Replace mepr_company_name with the actual custom field slug, on the line 13 in the code:
$company = get_user_meta( $user->ID, 'mepr_company_name', true );
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
Comments