You are here

commerce-product-title.tpl.php in Commerce Kickstart 7.2

Default theme implementation to present the title on a product page.

Available variables:

  • $title: The title to render.

Helper variables:

  • $product: The fully loaded product object the title belongs to.

File

modules/commerce_kickstart/commerce_kickstart_product_ui/theme/commerce-product-title.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to present the title on a product page.
 *
 * Available variables:
 * - $title: The title to render.
 *
 * Helper variables:
 * - $product: The fully loaded product object the title belongs to.
 */
if ($title) {
  ?>
<div class="commerce-product-title">
  <?php

  print $title;
  ?>
</div>
<?php

}