Forum Replies Created
-
AuthorPosts
-
indatext.com
ParticipantI also have additional meta-definition for setting pics for terms in custom plugin as:
// Add custom meta for Types of Glass Taxonomy add_filter( 'rwmb_meta_boxes', 'prefix_register_taxonomy_meta_boxes' ); function prefix_register_taxonomy_meta_boxes( $meta_boxes ){ $meta_boxes[] = array( 'title' => 'Additional Meta for Doors', 'taxonomies' => array('type-of-glass','jamb'), // THIS: List of taxonomies. Array or string 'fields' => array( array( 'name' => 'Featured?', 'id' => 'featured_glass', 'type' => 'checkbox', ), array( 'name' => 'Preview Image', 'id' => 'glass_single_image', 'type' => 'single_image', ), ), ); return $meta_boxes; }Maybe that is causing the issue. What to use instead of
taxonomiesfor array of taxonomies here, if one of taxonomies is advanced taxonomy?indatext.com
ParticipantBut it does not display that on my side



[ 'name' => __( 'Type of Glass', 'your-text-domain' ), 'id' => $prefix . 'door_glass_type_selector', 'type' => 'taxonomy_advanced', 'label_description' => __( 'only select one type for this variant', 'your-text-domain' ), 'taxonomy' => ['type-of-glass'], 'field_type' => 'checkbox_tree', 'remove_default' => true, ],February 19, 2022 at 6:27 PM in reply to: ✅Is it possible to customize entry titles for clonable sub-group? #34007indatext.com
ParticipantThank you for pointing me there. If I have a group defined from UI, can I add filter for sub-group titles only using PHP function, or I have to delete group created from UI and then re-define the whole array programmatically?
February 18, 2022 at 11:28 PM in reply to: Are Metabox AIO and MB Views compatible with WPML 4.5? #33991indatext.com
ParticipantIt seems that content of Metabox Groups is not translated with WPML. I bumbed into necessity to add manually the content of sub-group entries.
indatext.com
ParticipantYup, '[rwmb_meta id="seo_text" render_shortcode="true" raw="true"]' renders TablePress shortcodes for example.
-
AuthorPosts