I've seen that there's a getInfo() method which has the following parameters: productId, $storeView = null, $attributes = null, $identifierType = null
$sku = 'some-sku';
$productId = Mage::getModel('catalog/product')->getIdBySku($sku);
if($productId){
//sku exists
}
How I'd achieve this using this wrapper?
I've seen that there's a getInfo() method which has the following parameters:
productId, $storeView = null, $attributes = null, $identifierType = nullHow I'd achieve this using this wrapper?