回答
這樣的東西應該可以工作,雖然我沒有一起測試過。這是假設您的批發GROUPID = 2,要展示的產品屬性 'productvideos'
app/design/frontend/default//template/catalog/product/view.phtml
if($_isLoggedIn === true){
$_myGroupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
if($_myGroupId == 2){
print $_helper->productAttribute($_product, $_product->getProductvideos(), 'productvideos');
}
}
信用: http://www.magentocommerce.com/boards/viewthread/22597/#t74992
好吧,這裏的解決方案。
在模板/目錄/產品/視圖> attributes.phtml使用下面的:
<?php
$_isLoggedIn = $this->helper('customer')->isLoggedIn();
if($_isLoggedIn == true){
$_myGroupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
if($_myGroupId == 2){
echo '<td class="label">Attribute Name/Label</td>';
echo '<td class="label">';
if ($_product->getResource()->getAttribute('attribute_id')->getFrontend()->getValue($_product)):
echo $_product->getResource()->getAttribute('attribute_id')->getFrontend()->getValue($_product);
endif;
echo '</td>';
}
}
?>
由於@nvoyageur用於在正確的方向的初始指針!
很高興能爲您提供服務......感謝您發佈真正有效的最終解決方案。 – 2010-02-11 22:05:23
我有相同的使用案例,我用GroupsCatalog擴展,這是免費的,併爲我完美的作品。
鏈接重定向到Magento Commerce主頁。 – NotJay 2015-09-01 20:14:19
我明白了!無論是擴展已被停用或其[本](http://www.magentocommerce.com/magento-connect/paymentfilter-for-products-and-customer-groups.html)之一。 – 2015-09-02 05:08:25
- 1. Magento自定義產品屬性
- 2. 我的自定義屬性不顯示在產品集合Magento
- 3. magento - 在可配置產品上顯示自定義屬性
- 4. Magento自定義頁面上的顯示產品按屬性
- 5. Magento - 自定義產品屬性不會在產品視圖中顯示
- 6. 區分magento產品屬性和自定義創建的產品屬性
- 7. 在list.phtml中顯示產品屬性 - Magento
- 8. 根據自定義屬性對magento產品集合進行排序
- 9. 如何顯示magento中目錄產品網格中的自定義屬性值?
- 10. 在Magento中如何在產品網格中顯示自定義屬性..?
- 11. 自定義的產品屬性不管理目錄部分Magento的顯示2.1
- 12. Magento:如何在產品列表中顯示自定義日期屬性?
- 13. 如何在Magento的自定義產品網格中顯示是/否屬性?
- 14. Magento:如何僅顯示具有自定義二進制屬性的產品
- 15. 自定義屬性將不顯示在產品列表視圖Magento
- 16. 如何修改Magento訂單單顯示自定義產品屬性?
- 17. Magento MAGMI:導入中未顯示產品屬性(自定義選項)
- 18. Magento自定義產品屬性的可見性
- 19. Magento如何在產品頁面中顯示產品屬性?
- 20. Magento產品樹自定義
- 21. 在產品頁面顯示自定義屬性?
- 22. 顯示客戶屬性到前端magento
- 23. 的Prestashop:根據用戶羣和產品
- 24. Magento後端>產品屬性應顯示較少的屬性
- 25. 顯示屬性的屬性id不在magento的產品頁面
- 26. 是否可以在前端的分組產品下顯示相關產品的自定義屬性? (Magento)
- 27. Magento自定義字段定義產品
- 28. Magento的產品具有自定義屬性電網濾波器
- 29. 從自定義唯一屬性magento獲取產品ID
- 30. Magento過濾產品的自定義屬性
要檢查這一點,但它看起來是正確的。 – f8xmulder 2010-02-10 07:57:20
不幸的是,這似乎並不奏效。這裏是我得到的最新代碼: <?php \t \t $ _isLoggedIn = $ this-> helper('customer') - > isLoggedIn(); if($ _ isLoggedIn == true){____GroupId = Mage :: getSingleton('customer/session') - > getCustomerGroupId(); if($ _ myGroupId == 2){echo $ _helper-> productAttribute($ _ product,$ this-> htmlEscape($ _ product-> getNumPerBox()),'number_per_box'); } } ?> 我還編輯了Mage> Catalog> Model> Product.php來包含一個函數,但它返回一個錯誤。 – f8xmulder 2010-02-10 16:00:29