Klarna.UpdateShippingInfo

Version: - string  

Summary

Returns current state of Update shipping info check-box in the payment gateway settings.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Klarna.UpdateShippingInfo")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Klarna.UpdateShippingInfo"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Klarna.UpdateShippingInfo"); }

Outputting the template tag

<!--@Klarna.UpdateShippingInfo-->

Check if string has a value

<!--@If Defined(@Klarna.UpdateShippingInfo)--> Let's output this tag here: <strong><!--@Klarna.UpdateShippingInfo--></strong> <!--@EndIf(@Klarna.UpdateShippingInfo)-->