Can I show config options in the welcome emails? Print

  • 3

You must put the following in the package for the Configurable options.

{% for option in service.options %}
{option.qty}x {option.option_label}: {option.option_value_name}
{% endfor %}

Shows: 5x Label_Name: Option_Value

{% for option in service.options %}
{option.option_label}: {option.option_value} @ {option.option_pricing_price | numberformat 2, ".", ","} {option.option_pricing_period}
{% endfor %}

Shows: Label_Name: Option Value @ 34.00 Month

34.00 is the total.

More information can be found here: http://docs.blesta.com/display/user/Modules Under: Configurable Options


Was this answer helpful?

« Back