Magentoでデフォルトの商品サムネイルを取得して、商品以外のものに適用したいので、$productにアクセスできません。それは可能でしょうか?
ありがとう、Krt_Malta
Magentoでデフォルトの商品サムネイルを取得して、商品以外のものに適用したいので、$productにアクセスできません。それは可能でしょうか?
ありがとう、Krt_Malta
テストされていませんが、これは機能するはずです:
/**
* Get the resource model
*/
$resource = Mage::getSingleton('core/resource');
/**
* Retrieve the read connection
*/
$readConnection = $resource->getConnection('core_read');
$query = 'SELECT thumbnail FROM ' . $resource->getTableName('catalog/product_flat') . ' WHERE sku = "(insert your product SKU here)"'; // Insert SKU here
/**
* Execute the query and store the results in $results
*/
$results = $readConnection->fetchAll($query);
/**
* Print out the results
*/
echo sprintf('<pre>%s</pre>' print_r($results, true));