http://www.photouploads.com/images/customfiel.jpg
我已将分类配置为内容类型的字段,但我想将复选框标签(与 iphone 一起使用)替换为作为该分类的图像字段的图像(参见照片)。
现在我只知道通过添加代码来更改第 290 行的 node.pages.inc:
$form['product_label'] = array(
'#type' => 'checkboxes',
'#title' => 'Checkboxes Title',
'#title_display' => 'before',
'#default_value' => array(0,2),
'#options' => array(
0 => 'option one',
1 => 'option two',
2 => 'option three',
),
'#theme' => 'testmodule_checkboxes',
);
product_label 是复选框名称,上面的代码是覆盖当前复选框字段。但我认为这不是最好的方法.. 任何人都可以为我提供指导吗?什么模块或编码可以做到这一点?