[Plugin: Types – Custom Fields and Custom Post Types Management] Can't display checkboxes on we
-
Hello.
I have a problem showing checkboxes on my website.
echo types_render_field("program-zile");
doesn’t echo anything.
print_r(types_render_field("program-zile", array('raw' => 'true')));
prints Array on my html.
$zileLista = types_render_field("program-zile", array('raw' => 'true')); foreach ($zileLista as $i => $value) { echo $zileLista[$i]; }
doesn’t echo anything.
$zileLista = types_render_field("program-zile"); foreach ($zileLista as $i => $value) { echo $zileLista[$i]; }
doesn’t echo anything.
What am i doing wrong ?
(i verified slug, and i have the boxes checked on my custom posts)
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘[Plugin: Types – Custom Fields and Custom Post Types Management] Can't display checkboxes on we’ is closed to new replies.