Здравствуйте,
делаю магазин на Drupal Commerce. настроил commerce_feeds ( процессор - Commerce Product processor)
в csv url на картинки со сторонних сайтов.
есть ли возможность автоматического скачивания картинки и присвоения его товару (не ноде)
нашёл https://drupal.org/project/feeds_imagegrabber, но он не особо хочет работать с "Commerce Product processor"
Комментарии
А что Commerce Product processor разучился работать с полем image ?
без feeds_imagegrabber он просто скачивает картинки на сервер, но не присваивает их товарам (либо я что-то делаю неправильно)
$feeds_importer = new stdClass();
$feeds_importer->disabled = FALSE;
$feeds_importer->api_version = 1;
$feeds_importer->id = 'velosipedy_products';
$feeds_importer->config = array(
'name' => 'Velosipedy - products',
'description' => '',
'fetcher' => array(
'plugin_key' => 'FeedsFileFetcher',
'config' => array(
'allowed_extensions' => 'txt csv tsv xml opml',
'direct' => 0,
'directory' => 'public://feeds',
'allowed_schemes' => array(
'public' => 'public',
),
),
),
'parser' => array(
'plugin_key' => 'FeedsCSVParser',
'config' => array(
'delimiter' => ',',
'no_headers' => 0,
),
),
'processor' => array(
'plugin_key' => 'FeedsCommerceProductProcessor',
'config' => array(
'product_type' => 'velosipedy',
'author' => '1',
'tax_rate' => '',
'mappings' => array(
0 => array(
'source' => 'SKU',
'target' => 'sku',
'unique' => 1,
),
1 => array(
'source' => 'Наименование',
'target' => 'title',
'unique' => FALSE,
),
2 => array(
'source' => 'Цена',
'target' => 'commerce_price:amount',
'unique' => FALSE,
),
3 => array(
'source' => 'Размер рамы',
'target' => 'field_velosipedy_razmer_ramy',
'term_search' => '0',
'autocreate' => 1,
),
4 => array(
'source' => 'Изображения товара',
'target' => 'field_product_images',
'unique' => FALSE,
),
),
'update_existing' => '2',
'input_format' => 'full_html',
'skip_hash_check' => 0,
'bundle' => 'velosipedy',
),
),
'content_type' => '',
'update' => 0,
'import_period' => '-1',
'expire_period' => 3600,
'import_on_create' => 1,
'process_in_background' => 0,
);
ещё на странице /admin/reports/status сообщение:
SimplePie library is required for Feeds SimplePie Parser. Download the compiled version of the library from SimplePie download page.
может оно как-то влиять? и надо ли подключать доп. библиотеку?
А разве вас в гугле забанили? https://drupal.org/project/commerce_feeds
я написал в топике, что использую commerce_feeds
но при импорте у меня скачиваются картинки на сервер, но не прикрепляются к товару.