我正在尝试使用安装程序脚本来创建图像类型的产品属性。
我想使用图像类型属性,以便管理员可以上传图像,我们可以在前端获取它。
我使用下面的代码相同
$data9= array (
'attribute_set' => 'Product Bundler Package',
'group' => 'Bundled Package Data',
'label' => 'Preset1 thumbnail',
'visible' => true,
'type' => 'varchar',
'input' => 'file',
'system' => true,
'required' => false,
'user_defined' => 1, //defaults to false; if true, define a group
);
$installer->addAttribute('catalog_product','bundle_preset1_thumb',$data9);
图像属性已创建,但我无法使用此上传图像。谁能告诉我为什么我不能这样做我如何创建图像上传器产品属性。