您在這裡

修改Ubercart的Grid能顯示teaser項目

dionysian's 的頭像
dionysian 在 2008-06-30 (週一) 00:38 發表

在 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 .= '' . $product->teaser .'';
}

然後修改 uc_catalog.css 新增

.catalog_grid_teaser {
display: block;
text-align: left;
}

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

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