修改Ubercart的Grid能顯示teaser項目

在 uc_catalog.module 檔案裡新增下列文字
在575行下新增

variable_get('uc_catalog_grid_display_teaser',true)?
        t('Every cell on the grid will display the Product teaser.'):
        t('Cells on the grid will not display Product teaser.'),

996行下新增
if (variable_get('uc_catalog_grid_display_teaser', TRUE)) {
       $product_table .= '<span class="catalog_grid_teaser">' . $product->teaser .'</span>';
    }

然後修改 uc_catalog.css 新增
.catalog_grid_teaser {
display: block;
  text-align: left;
}

此項修改可以讓產品格(Grid)裡選擇是否顯示teaser

附加檔案大小
1.png37.27 KB