1
A
回答
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; ?>
相關問題
- 1. Magento的類別縮略圖
- 2. 在帶有圖像縮略圖的Magento導航菜單中顯示子類別描述
- 3. Magento不會更改現有類別中的類別照片/縮略圖
- 4. Magento類別縮略圖字段未在管理員中顯示
- 5. Magento 1.7所有類別和各自的縮略圖
- 6. Magento導航菜單欄與縮略圖圖片
- 7. Randomise&limit在主頁上的類別縮略圖magento
- 8. 將菜單中的類別圖像製作爲縮略圖,OpenCart 2.0.x
- 9. 子類別下拉菜單在Magento
- 10. 與產品縮略圖導航菜單的Magento
- 11. Magento - 類別縮略圖 - 如何使用SVG?
- 12. Magento的同一類產品縮略圖
- 13. Magento類別下拉菜單 - 子菜單在2列
- 14. 取消在WooCommerce中設置所有產品類別縮略圖
- 15. Prestashop菜單沒有子類別
- 16. Magento - 在頂部類別菜單名稱旁邊放置圖像
- 17. 如何將類別圖像/縮略圖添加到Magento中導航> 1.7
- 18. Magento縮略圖問題getProductThumbnail()
- 19. 帶縮略圖的css下拉菜單
- 20. 目標C,滾動菜單縮略圖
- 21. Magento Admin中沒有顯示菜單
- 22. 僅列出來自magento中所有商店的活動根類別和類別縮略圖
- 23. 如何使用Magento中的getThumbnailUrl()從類別中顯示縮略圖
- 24. Magento - 列出所有子類別僅包括導航菜單有
- 25. Magento - 在銷售/訂單屏幕中顯示縮略圖
- 26. 檢查類別有子類別或沒有在Magento
- 27. 縮略圖類別的不同樣式
- 28. 後縮略圖WordPress的類別
- 29. 獲取Woocommerce類別縮略圖
- 30. opencart額外的縮略圖到類別
只是樣本數據和安裝然後截斷產品,類別,訂單和屬性表。通過此數據刪除和縮略圖字段保持可見。這是一種方法,如果你得到另一個請讓我們知道。我也有同樣的錯誤 – Shin
嗨Shijin,你是什麼意思只是安裝一個示例數據?我是否需要使用產品填充我的網站?那麼類別中的縮略圖將顯示?讓我知道。謝謝, –
我發佈了一個答案,我會嘗試,請檢查一下,但請注意attribute_id – Shin