You are here

commerce-checkout-help.tpl.php in Commerce Core 7

Default implementation of the checkout help text template.

Available variables:

  • $help: the help text that will be displayed at the top of a checkout page.

File

modules/checkout/theme/commerce-checkout-help.tpl.php
View source
<?php

/**
 * @file
 * Default implementation of the checkout help text template.
 *
 * Available variables:
 * - $help: the help text that will be displayed at the top of a checkout page.
 *
 * @see template_preprocess()
 * @see template_process()
 */
?>
<div class="checkout-help">
  <?php

print $help;
?>
</div>