Can I change "Ebizio Fee ID" option label on my Fee Products?
No. If you change the Option Label for the generated Fee Products you will essentially break our ability to keep track of and ensure the integrity of Fees. You can however change the appearance of this label in various places throughout the BigCommerce platform.
How do I change the text "Ebizio Fee ID" on Invoice emails?
Within your BigCommerce back office navigate to Marketing -> Transactional Emails -> Order Email -> Code. Within there you'll want to replace this code:
{{join attribute_lines ', '}}
with the code below... replacing "YOUR LABEL" with what you'd like to display to customers:
{{#replace 'Ebizio Fee ID' (join attribute_lines ', ')}}YOUR LABEL{{else}}{{join attribute_lines ', '}}{{/replace}}
How do I change the text "Ebizio Fee ID" on my Cart page?
Within your Theme files, navigate to the templates -> components -> cart -> content.html file and replace this code:
<dt class="definitionList-key">{{name}}:</dt>
with the code below... replacing "YOUR LABEL" with what you'd like to display to customers:
<dt class="definitionList-key">
{{#if name '==' 'Ebizio Fee ID'}}
YOUR LABEL:
{{else}}
{{name}}:
{{/if}}
</dt>
More questions?
Please contact us to discuss your questions, we're happy to answer them!