0

Magentoでデフォルトの商品サムネイルを取得して、商品以外のものに適用したいので、$productにアクセスできません。それは可能でしょうか?

ありがとう、Krt_Malta

4

1 に答える 1

0

テストされていませんが、これは機能するはずです:

/**
 * 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));
于 2012-05-21T22:02:54.883 に答える