$custom = Mage::getModel('catalog/product')->load($_item->getProductId());
echo $custom->getShortDescription();
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />
<title>test</title>
</head>
<html>
<body>
<?php
require_once('app/Mage.php');
Mage::app('default');
$host='magento.nazwa.pl';
$client=new SoapClient('http://'.$host.'/index.php/api/soap/?wsdl');
$apiuser="ala";
$apikey="xxxxxx";
try
{
$sess_id=$client->login($apiuser,$apikey);
$result=$client->call($sess_id,'category.tree',array());
}
catch(Exception $e)
{
echo "Error<->:".$e->getMessage();
exit();
}
$custom = Mage::getModel('catalog/product')->load($_item->getProductId());
echo $custom->getShortDescription();
header("Location: index.php");
?>
</body>
</html>
<?php
require_once('app/Mage.php');
Mage::app('default');
$host='magento.adeli.pl';
$client=new SoapClient('http://'.$host.'/index.php/api/soap/?wsdl');
$apiuser="ala";
$apikey="xxxxxx";
try
{
$sess_id=$client->login($apiuser,$apikey);
$result=$client->call($sess_id,'category.tree',array());
}
catch(Exception $e)
{
echo "Error<->:".$e->getMessage();
exit();
}
$product = Mage::getModel('catalog/product');
echo $product->getName();
//$product2 = Mage::getModel('catalog/product')->load($product->getId());
// echo $product2->getShortDescription();
//header("Location: index.php");
?>