Подскажите, пожалуйста, как добавить в выгрузку товаров в модуле YML:
<pickup-options>
<option days="0"/>
</pickup-options>
На все товары должен выгружаться параметр 0.
Пытаюсь добавить в catalog/controller/feed/yandex_yml.php
1. $data['pickup-options'] = '<option days="0"/>';
2. $data['param'] = array();
$attributes = $this->model_export_yandex_yml->getProductAttributes($product['product_id']);
$attr_text = array();
if (count($attributes) > 0) {
foreach ($attributes as $attr) {
if ($attr['attribute_id'] == $this->config->get('yandex_yml_adult')) {
$data['adult'] = 'true';
}
elseif ($attr['attribute_id'] == $this->config->get('yandex_yml_manufacturer_warranty')) {
$data['manufacturer_warranty'] = 'true';
}
elseif ($attr['attribute_id'] == $this->config->get('yandex_yml_pickup-options')) {
$data['pickup-options'] = '<option days="0"/>';
}
elseif ($attr['attribute_id'] == $this->config->get('yandex_yml_country_of_origin')) {
$data['country_of_origin'] = $attr['text'];
}
elseif (isset($all_attributes[$attr['attribute_id']])) {
$data['param'][] = $this->detectUnits(array(
'name' => $all_attributes[$attr['attribute_id']],
'value' => $attr['text']));
}
$attr_text[] = $attr['name'].': '.$attr['text'];
}
}
3. $allowed_tags = array_merge($allowed_tags, array('aliases'=>0, 'additional'=>0, 'description'=>0, 'sales_notes'=>0, 'promo'=>0, 'manufacturer_warranty'=>0, 'pickup-options'=>0, 'country_of_origin'=>0, 'downloadable'=>0, 'adult'=>0, 'barcode'=>0));
Но он так не хочет, выводит пустой <pickup-options></pickup-options>