Hi Fillip,
There are several places on my website where I need to append the title of a specific product pricing tier; for instance here (see text in red):

I checked the default template syntax for the field and found the expression
with
did not work.
How do I achieve this, what am I missing?
There are several places on my website where I need to append the title of a specific product pricing tier; for instance here (see text in red):

I checked the default template syntax for the field and found the expression
$cost.title
to match it in several templates; however, all my experimentation in dbtech_ecommerce_license_list_macros was to no avail. For instance, replacing this:
HTML:
<xf:if is="{{ $license.isLifetime() }}">
{{ phrase('never') }}
HTML:
<xf:if is="{{ $license.isLifetime() }}">
{{ phrase('never') }} · {{ phrase('dbtech_ecommerce_product_pricing_tier:', {'title': $cost.title}) }}
How do I achieve this, what am I missing?