} else if($meta['e_type']=="CHECKBOX") {
if(osc_field(osc_item_meta(), 's_value', '')==1) {
return '<img src="'.osc_current_web_theme_url('images/tick.png').'" alt="" title=""/>';
} else {
return '';
}
But this will eliminate only the cross image not the custom field name.
But no need for the above mod.
LIke Teseo said in that post,
in bender/item.php replace
<?php while ( osc_has_item_meta() ) { ?>
<?php if(osc_item_meta_value()!='') { ?>
with
<?php while ( osc_has_item_meta() ) {
$show_custom = (osc_item_meta_value() == '' || strpos(osc_item_meta_value(), 'cross.png') ? 0 : 1);
if ($show_custom) { ?>