Type Video URL box disappeared (1.1.1)
-
Hello Alx ?? !
Since the last udpate, the video box disappeared from the administration (when you’re doing a new post). I think this code is incrimined :
/* Format: audio /* ------------------------------------ */ $meta_boxes[] = array( 'id' => 'format-audio', 'title' => esc_html__( 'Format: Audio', 'typecore' ), 'post_types' => array( 'post' ), 'context' => 'advanced', 'priority' => 'high', 'autosave' => false, 'fields' => array( array( 'id' => $prefix . 'audio_url', 'type' => 'text', 'name' => esc_html__( 'Audio URL', 'typecore' ), ), ), ); /* Format: video /* ------------------------------------ */ $meta_boxes[] = array( 'id' => 'format-video', 'title' => esc_html__( 'Format: Video', 'typecore' ), 'post_types' => array( 'post' ), 'context' => 'advanced', 'priority' => 'high', 'autosave' => false, 'fields' => array( array( 'id' => $prefix . 'video_url', 'type' => 'text', 'name' => esc_html__( 'Video URL', 'typecore' ), ), ), ); return $meta_boxes; } add_filter( 'rwmb_meta_boxes', 'typecore_get_meta_box' );
I will try de refresh, but I really think the Metaboxes are not appearing because of that (or my child theme interfer somewhere) ^^ !
Have a nice day & thank you for the update !
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Type Video URL box disappeared (1.1.1)’ is closed to new replies.