Forum Replies Created
-
AuthorPosts
-
October 6, 2016 at 12:43 PM in reply to: What's the differences between this plugin (MB Include Exclude) with Meta Box Show/Hide? #4244
leminhthienloc
ParticipantNever mind, just got the link https://metabox.io/docs/difference-include-exclude-show-hide-conditional-logic-extensions/
Thanks.
LocOctober 3, 2016 at 10:11 AM in reply to: The WYSIWYG has white color in the content and missing the toolbar when repeating #4220leminhthienloc
ParticipantIt's version 1.1.2
Here is the header of the plugin MB Group
/**
* Plugin Name: MB Group
* Plugin URI: https://metabox.io/plugins/meta-box-group/
* Description: Add-on for meta box plugin, allows you to add field type 'group' which put child fields into 1 group which are displayed/accessed easier and can be cloneable.
* Version: 1.1.2
* Author: Rilwis
* Author URI: http://www.deluxeblogtips.com
* License: GPL2+
*/October 2, 2016 at 4:20 PM in reply to: The WYSIWYG has white color in the content and missing the toolbar when repeating #4212leminhthienloc
ParticipantActually, I have to used an older version of Meta Box, because the Meta Box plugin which I downloaded from the WordPress Plugins panel, generating the same Notices errors.
October 2, 2016 at 4:15 PM in reply to: The WYSIWYG has white color in the content and missing the toolbar when repeating #4211leminhthienloc
ParticipantThanks.
But after upgrade the meta-box plugin from GitHub, I saw a lot of Notice when generating the fields and then the fields on the Group defined before has turned to Read Only automatically.Please see the 2 screenshot for more details:
- Notice errors: http://ctrlv.in/857001
- Fields in group auto Read Only: https://ctrlv.in/857000So I guess that there something conflict between the Meta Box and MB Group plugins.
I have reverted to the version on the WordPress Plugins site and it's ok again.October 1, 2016 at 12:50 AM in reply to: The WYSIWYG has white color in the content and missing the toolbar when repeating #4202leminhthienloc
ParticipantDid you have any updates regarding to this issue?
September 29, 2016 at 1:32 AM in reply to: The WYSIWYG has white color in the content and missing the toolbar when repeating #4167leminhthienloc
ParticipantHere is the code. Yes, actually, I like to have a group of announcements inside of a company. Each announcement like a post with html including images and other shortcode support (such as embed video).
$meta_boxes[] = array( 'id' => 'company_announcements', 'title' => __( 'Company Announcements', 'imp' ), 'post_types' => array( 'company'), 'context' => 'normal', 'priority' => 'low', 'fields' => array( array( 'id' => $prefix.'company_announcement', 'name' => __( 'Announcement', 'imp' ), 'type' => 'group', 'clone' => true, 'size' => 100, 'fields' => array( array( 'id' => $prefix.'company_announcement_title', 'name' => __( 'Title', 'imp' ), 'type' => 'text', 'size' => 60 ), array( 'id' => $prefix.'company_announcement_date', 'name' => __( 'Date', 'imp' ), 'type' => 'date', 'js_options' => array('dateFormat'=>'dd/mm/yy'), 'size' => 60 ), array( 'id' => $prefix.'company_announcement_content', 'name' => __( 'Content', 'imp' ), 'type' => 'wysiwyg', 'size' => 60, 'options' => array( 'textarea_rows' => 3, ) ), ) ), ), 'validation' => array( 'rules' => array( ) ) ); -
AuthorPosts