我有一個新的商店視圖,我使用magento admin更新了所有產品:**Manage Products > Select all > Update Attributes**
,然後選擇新的商店。現在,我的所有產品都與我的新商店相關聯,所以我的所有圖片都有問題。在前端顯示所有佔位符。在管理面板上,當我點擊一個產品,然後圖像..它可能有圖像,但它沒有選擇使用基本圖像,小圖像或縮略圖。在我的新商店視圖中使用來自我的默認商店的所有圖像
有沒有辦法更新我的新商店視圖上的所有圖像以使用默認商店視圖主圖像?
require_once 'abstract.php';
class Attach_Default_Store_Images Extends Mage_Shell_Abstract {
public function run()
{
$products = Mage::getModel('catalog/product')->getCollection();
foreach ($products as $product) {
$productFrom = $product->setStoreId(1)->getImage();
$productTo = $product->setStoreId(13)
->setImage($productFrom)
->setSmallImage($productFrom)
->setThumbnail($productFrom);
echo "Images Updated\n";
$product->save();
}
Mage::getModel('catalog/product_image')->clearCache();
echo "Image Cache Cleared\n";
}
public function usageHelp()
{
return <<<USAGE
Usage: php -f cache.php -- [options]
php -f cache.php -- clean
clean Clean Old Cache
help This help
USAGE;
}
}
$shell = new Attach_Default_Store_Images();
$shell->run();
運行上面的shell腳本?
我寧可不使用magmi,但我熟悉這個選項。 – thismethod