After implementing a MyCashflow theme checkout (either single-page or multi-page), you need to deploy it in your theme.

You can deploy a checkout by adding information about the available types of checkout to the properties in the theme configuration file. Checkout types are deployed by adding, depending on the type, the element SinglePage or MultiPage as a child element of the /Theme/Features/Checkout element.

Below you can see a sample configuration file that deploys both types of checkout:

<Theme>
    ...
    <Features>
        <Checkout>
             <SinglePage supported="true" />
            <MultiPage supported="true" default="default" />
        </Checkout>
    </Features>
    ...
</Theme>

Note that in the sample file the multi-page checkout is set as default. In such case, the MultiPage element has the attribute default='default'.

Finally, the type of checkout in use can be selected in the admin panel, version settings, in the Checkout type field.

If the single-page checkout template is missing in a theme and theme settings are <SinglePage supported="true" />, the MyCashflow default theme's single-page checkout will be used instead.