Hello,
Found an issue with the breadcrumbs meta in posts which gets set-up through vibe-customtypes/custom_meta_boxes.php
It's currently missing the required type setting;
$prefix.'breadcrumbs'=>array( // Single checkbox
'label' => __('Show Breadcrumbs','vibe-customtypes'), // <label>
'desc' => __('Show breadcrumbs.','vibe-customtypes'), // description
'id' => $prefix.'breadcrumbs', // field id and name
'options' => array(
array('value' => 'H',
'label' =>'Hide'),
array('value' => 'S',
'label' =>'Show'),
),
'std' => 'S'
),
<code></code>
Should have a type of showhide so it should look like;
$prefix.'breadcrumbs'=>array( // Single checkbox
'label' => __('Show Breadcrumbs','vibe-customtypes'), // <label>
'desc' => __('Show breadcrumbs.','vibe-customtypes'), // description
'id' => $prefix.'breadcrumbs', // field id and name
'type' => 'showhide', // type of field
'options' => array(
array('value' => 'H',
'label' =>'Hide'),
array('value' => 'S',
'label' =>'Show'),
),
'std' => 'S'
),
<code></code>
This causes the field not to load properly.
Cheers
Yes you are right, thanks for reporting this issue to us. It will be fixed in the next update of vibe customtypes.