我正在尝试使用安装程序脚本来创建图像类型的产品属性。</ p>
我想使用图片类型属性,以便管理员可以加载图像,我们可以在前端获取它。
我将以下代码用于相同的
$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);
已创建图像属性,但我无法使用此图像上传图像。 任何人都可以告诉我为什么我无法这样做我如何创建图像上传器产品属性。</ p>