Support Forum » User Profile

Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • uththamaguththamag
    Participant

    Hi,

    Thanx Anh,

    $meta_boxes = rwmb_get_registry( 'meta_box' )->get( 'all' );

    $meta_boxes returning boolean false,

    1. Can you explain this - "->get( 'all' );"
    2. Also how can i get meta values using page_id in specific pages

    Thanx
    UG

    in reply to: Adding custom fields to menu item #8682
    uththamaguththamag
    Participant

    Thanx

    in reply to: Adding custom fields to menu item #8677
    uththamaguththamag
    Participant

    Hi,

    If you know a solution to do that? Pls Help

    in reply to: How to add a custom id to the "rwmb-meta-box" wrapper #8353
    uththamaguththamag
    Participant

    Hi,

    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”>.

    in reply to: MB Term Meta Data not saving #6404
    uththamaguththamag
    Participant

    Hi,

    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

    in reply to: MB Term Meta Data not saving #6394
    uththamaguththamag
    Participant

    I'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.9

    Ninja 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.2

    in reply to: MB Term Meta Data not saving #6392
    uththamaguththamag
    Participant

    Hi, Truong.

    I'm Using the latest - MB Term Meta 1.2

    Pls help. Need to fix this asap.

    Thank you

    in reply to: Core Extensions Bundle refund. #6354
    uththamaguththamag
    Participant

    Hi, 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 Columns

    Thank you.

    in reply to: Core Extensions Bundle refund. #6348
    uththamaguththamag
    Participant

    Hi,

    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.

Viewing 9 posts - 1 through 9 (of 9 total)