嗨,我想隐藏一个字段,但我不能。我搜索了是否值代码,但我找不到。我不是 php 编码器。我只需要这段代码。
<?php
foreach ($fields as $field) {
$type = $field['s_type'];
$label = $field['s_label'];
$value = Attributes::newInstance()->getValue($item_id, $field['pk_i_id']);
if ($type == 'checkbox') {
if ($value == 'checked') $value = '<img src="http://www.tirnakicinde.com/oc-content/plugins/realestate_attributes/img/tick.png">';
**else $value = '<img src="http://i.imm.io/RLMH.png">';**
}
?>
<tr>
<td style='width: 150px;'><?php _e($label, PLUGIN_NAME); ?></td>
<td style='width: 150px;'><?php _e($value, PLUGIN_NAME); ?></td>
</tr>
<?php } ?>
<img src="http://i.imm.io/RLMH.png">
是我的“不”勾。我想在选择 NO * 时隐藏(这是我的 no 刻度值<img src="http://i.imm.io/RLMH.png">
刻度然后它不显示。我使用图像代码来表示没有刻度。
我该如何隐藏?