2015-01-08 47 views
1

有什麼方法可以在導航菜單中添加縮略圖嗎? Magento 1.9.1.0在Magento管理面板中刪除此功能。你有什麼建議嗎?Magento 1.9.1.0在類別菜單中沒有縮略圖

感謝,

+0

只是樣本數據和安裝然後截斷產品,類別,訂單和屬性表。通過此數據刪除和縮略圖字段保持可見。這是一種方法,如果你得到另一個請讓我們知道。我也有同樣的錯誤 – Shin

+0

嗨Shijin,你是什麼意思只是安裝一個示例數據?我是否需要使用產品填充我的網站?那麼類別中的縮略圖將顯示?讓我知道。謝謝, –

+0

我發佈了一個答案,我會嘗試,請檢查一下,但請注意attribute_id – Shin

回答

0

我通過我的phpMyAdmin的運行下面的查詢解決此問題,

1)

INSERT INTO `eav_attribute` (`attribute_id`, `entity_type_id`, `attribute_code`, 
`attribute_model`, `backend_model`, `backend_type`, `backend_table`, `frontend_model`, 
`frontend_input`, `frontend_label`, `frontend_class`, `source_model`, `is_required`, 
`is_user_defined`, `default_value`, `is_unique`, `note`) VALUES(140, 3, 'thumbnail', NULL, 
'catalog/category_attribute_backend_image', 'varchar', NULL, NULL, 'image', 'Thumbnail 
Image', NULL, NULL, 0, 0, NULL, 0, NULL); 

2)

INSERT INTO `catalog_eav_attribute` (`attribute_id`, `frontend_input_renderer`, 
`is_global`, `is_visible`, `is_searchable`, `is_filterable`, `is_comparable`, 
`is_visible_on_front`, `is_html_allowed_on_front`, `is_used_for_price_rules`, 
`is_filterable_in_search`, `used_in_product_listing`, `used_for_sort_by`, 
`is_configurable`, `apply_to`, `is_visible_in_advanced_search`, `position`, 
`is_wysiwyg_enabled`, `is_used_for_promo_rules`) VALUES 
(140, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL, 0, 0, 0, 0); 

3)

INSERT INTO `eav_entity_attribute` (`entity_attribute_id`, `entity_type_id`, 
`attribute_set_id`, `attribute_group_id`, `attribute_id`, `sort_order`) 
VALUES (337, 3, 3, 4, 140, 3); 

我在這裏使用attribute_id爲140,使用這這些查詢的ID通過獨特的價值

顯示在前端這張圖片,我們可以使用

<?php $thumbnail = $_category->getThumbnail(); ?> 
    <?php if($thumbnail): ?> 

    <img src ="<?php echo Mage::getBaseUrl('media').'catalog' . DS . 'category' . DS.$thumbnail; ?>" alt="<?php echo $this->escapeHtml($_category->getName()) ?>" class="img-responsive" />  

    <?php endif; ?> 
+0

即使在運行SQL之後,看起來我們不能再用'getThumbnail()'調用類別縮略圖了嗎? – zigojacko

+0

我解決了我的錯誤vaia使用此查詢 – Shin

+0

所有這些查詢做的是創建屬性,將其添加到數據庫,然後確保它們都鏈接起來。你如何在前端顯示類別縮略圖? – zigojacko

相關問題