Forum Replies Created
-
AuthorPosts
-
July 26, 2018 at 12:45 AM in reply to: Get all field values into a public array and filter with page id in front end #10719
uththamag
ParticipantHi,
Thanx Anh,
$meta_boxes = rwmb_get_registry( 'meta_box' )->get( 'all' );
$meta_boxes returning boolean false,
- Can you explain this - "->get( 'all' );"
-
Also how can i get meta values using page_id in specific pages
Thanx
UGuththamag
ParticipantThanx
uththamag
ParticipantHi,
If you know a solution to do that? Pls Help
January 26, 2018 at 4:41 PM in reply to: ✅How to add a custom id to the "rwmb-meta-box" wrapper #8353uththamag
ParticipantHi,
1.I want to write some CSS to fix the layout issues. Is it possible to do that?
2. Yes. Below is my code
$meta_boxes[] = array( 'id' => 'service_tax', 'title' => null, 'taxonomies' => 'categories', // List of taxonomies. Array or string 'fields' => array( array( 'name' => esc_html__( 'Featured Image', 'codice' ), 'id' => "{$prefix}tax_thumb", 'type' => 'image_advanced', 'max_file_uploads' => 1, 'max_status' => false, ), ), );Post a screenshot to where?
3. It should append before the
<div class=”edit-tag-actions”>.uththamag
ParticipantHi,
I think I found the issue. No Js errors Truong. The issue is:
MB Term Meta Data not saving existing taxonomy category. But if I adding a new item(taxonomy category), and upload a featured image it will work. Also, I can edit the feature image of this item.
Thanks
uththamag
ParticipantI'm using below versions.
Meta Box 4.12.2
MB Term Meta 1.2
MB Conditional Logic 1.4.1
MB Group 1.2.8
MB Columns 1.0.2
MB Include Exclude 1.0.9Ninja Forms 3.1.6
Slider Revolution 5.4.5.1
SVG Support 2.3.10
Yoast SEO 5.0.2
Duplicate Post 3.2
Black Studio TinyMCE Widget 2.3.2uththamag
ParticipantHi, Truong.
I'm Using the latest - MB Term Meta 1.2
Pls help. Need to fix this asap.
Thank you
uththamag
ParticipantHi, Anh
Yes, the fix is working thank you very much. But I want 6, 6 Columns not 6, 5 Columns. Is there any option for add a class to the visible Columns? then I can give a width to the visible Columns.
Ex: If I change the layout to:
layout 1 add class to "layout1" Column
layout 2 add class to "layout2" Columns
layout 3 add class to layout3 ColumnsThank you.
uththamag
ParticipantHi,
I mean like this.
array( 'name' => false, 'id' => "{$prefix}sect_editor", 'type' => 'wysiwyg', 'columns' => 6, 'raw' => true, 'options' => array( 'textarea_rows' => 15, 'wpautop' => false, ), ), array( 'name' => false, 'id' => "{$prefix}sect_editor2", 'visible' => ['uk_sect_layout', 'layout2'], 'type' => 'wysiwyg', 'columns' => 6, 'raw' => true, 'options' => array( 'textarea_rows' => 15, 'wpautop' => false, ), ), // Image Columns array( 'name' => esc_html__( 'Section Images', 'codice' ), 'id' => "{$prefix}sect_image", 'visible' => ['uk_sect_layout', 'layout1'], 'type' => 'image_advanced', 'columns' => 6, 'force_delete' => false, 'max_file_uploads' => 2, 'max_status' => false, ), // Layout options array( 'name' => esc_html__( 'Layout', 'codice' ), 'id' => "{$prefix}sect_layout", 'columns' => 3, 'type' => 'select', 'options' => array( 'layout1' => esc_html__( 'Image', 'codice' ), 'layout2' => esc_html__( '2 Columns', 'codice' ), ), ),It working but if i use 3 6columns fields the last field wrap with another row.
I want all 3 6columns fields in a same row.Thank you.
-
AuthorPosts