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.
1 theme call to commerce-checkout-help.tpl.php
- commerce_checkout_form in modules/
checkout/ includes/ commerce_checkout.pages.inc - Builds the checkout form for the given order on the specified checkout page.
File
modules/checkout/theme/commerce-checkout-help.tpl.phpView 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>