View Single Post
  #2  
Old 01-20-2020, 05:43 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: Displaying Membership of the User in Invoice

You need to create custom module for this, best option, and add new template file to the invoice. You can position it by using @ListChild in the doc block at the beginning of the file. Just see how other templates are done.

This is a quick dirty hack. Using customer/order/invoice/parts/note.twig (and you can do that too with the theme_tweaker) if I add at the end of it


Code:
{{ this.order.profile.membership.name }}


it will show the membership name. Keep in mind this is the membership at the time of order. Changing the membership of the customer later will not affect this order's profile.
If you want to grab the current profile membership regardless of order use


Code:
{{ this.order.origProfile.membership.name }}


Also neither one will show name if there is no membership assigned to the profile in question.
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote