breadcrumbs meta in Post Settings is missing type

Home Forums Legacy Support Support queries Other issues breadcrumbs meta in Post Settings is missing type

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #44201
    eclipsedev
    Spectator
    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'=&gt;array( // Single checkbox 'label' =&gt; __('Show Breadcrumbs','vibe-customtypes'), // &lt;label&gt; 'desc' =&gt; __('Show breadcrumbs.','vibe-customtypes'), // description 'id' =&gt; $prefix.'breadcrumbs', // field id and name 'options' =&gt; array( array('value' =&gt; 'H', 'label' =&gt;'Hide'), array('value' =&gt; 'S', 'label' =&gt;'Show'), ), 'std' =&gt; 'S' ), <code></code> Should have a type of showhide so it should look like; $prefix.'breadcrumbs'=&gt;array( // Single checkbox 'label' =&gt; __('Show Breadcrumbs','vibe-customtypes'), // &lt;label&gt; 'desc' =&gt; __('Show breadcrumbs.','vibe-customtypes'), // description 'id' =&gt; $prefix.'breadcrumbs', // field id and name 'type' =&gt; 'showhide', // type of field 'options' =&gt; array( array('value' =&gt; 'H', 'label' =&gt;'Hide'), array('value' =&gt; 'S', 'label' =&gt;'Show'), ), 'std' =&gt; 'S' ), <code></code> This causes the field not to load properly. Cheers
    #44245
    H.K. Latiyan
    Participant
    Yes you are right, thanks for reporting this issue to us. It will be fixed in the next update of vibe customtypes.
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘breadcrumbs meta in Post Settings is missing type’ is closed to new replies.