Get Product details Using Product sku in Magento

Get Product details Using Product sku in Magento

This post show how to get all Product details Using Product sku in Magento. In this code we conver sku to product id using getIdBySku and get product id and use it to get Product details.

This code will show you all detail of product product added in Magento admin(by Magento admin panel Catalog > Manage Categories). Hear we show some detail like name, short description, Long Description, Regular Price, special Price etc but if you remove comment of print_r($_products), it will show you all detail of product.

// add your sku hear
$_products_sku = "your-sku"; 

// get products id form sku using function getIdBySku
$product_id = Mage::getModel("catalog/product")->getIdBySku( $_products_sku );

// Enter your Product Id convert form "sku"
$_products = $product_obj->load($product_id); 

// show all detail of Product's
echo "<pre>";
print_r($_products); // all Product's detail
echo "</pre>";

// get Product's name
echo $_products->getName();

// get product's short description
echo $_products->getShortDescription();

// get Product's Long Description
echo $_products->getDescription();

// get Product's Regular Price
echo $_products->getPrice();

// get Product's special Price
echo $_product->getSpecialPrice();

// get Product's Url
echo $_products->getProductUrl();

// get Product's image Url
echo $_products->getImageUrl(); 

// get Product's small image url
echo $_products->getSmallImageUrl(); 

// get Product's thumbnail image url   
echo $_products->getThumbnailUrl();

Leave a Comment

Your email address will not be published. Required fields are marked *

89  +    =  93

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US