在我的购物网站中,我有 100 种产品。我从中选择了一种产品。如何获取该产品的用户 ID?
我仍然需要对此做更多的事情,这在卖家页面中。
我试过这段代码,但没有用。
<?php
$product_id = $this->getProduct()->getId();
echo $product_id; // It's displaying Product ID
$productowner=Mage::getModel('marketplacepartner/marketplacepartner')->isCustomerProducttemp($product_id['entity_id']);
if($productowner['productid']!=""){
$rowsocial=Mage::getModel('marketplaceprofile/marketplaceprofile')->getPartnerProfileById($productowner['userid']);
}
?>
我正在使用 Magento CE 1.7.0.2
我必须获取此产品的所有者 ID
有任何想法吗 ?