You are here

function theme_commerce_views_display_fields in Commerce Views Display 7

The field elements.

1 theme call to theme_commerce_views_display_fields()
template_preprocess_commerce_views_display_view_add_to_cart_form in theme/commerce_views_display.theme.inc
Preprocessor for Add to Cart style plugin

File

theme/commerce_views_display.theme.inc, line 76

Code

function theme_commerce_views_display_fields($vars) {
  if (empty($vars['field_elements'])) {
    return '';
  }
  return drupal_render($vars['field_elements']);
}