Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • AXEL PARATREAXEL PARATRE
    Participant

    Hello MetaBox Support Team,

    Thank you for your response.

    Regarding the issue with taxonomy select fields not saving data correctly when multiple fields are associated with the same taxonomy within the same meta box, we understand this is noted in the documentation.

    Could you please let us know if there is any workaround for this issue? Perhaps a custom hook that handles this during the save_post action?

    Thank you for your assistance.

    Best regards,

    Nathaniel

    in reply to: Issue with WYSIWYG within a tab bloc #29067
    AXEL PARATREAXEL PARATRE
    Participant

    Hi,

    I still have the issue despite the upgrades of AIO.
    Do you know approximatively when the fix will be posted.

    Regards
    Adrien

    in reply to: Issue with WYSIWYG within a tab bloc #28461
    AXEL PARATREAXEL PARATRE
    Participant

    Hi,
    Thanks for your answer.
    Do you know when the fix will be released ?

    Regards
    Adrien

    in reply to: Issue with WYSIWYG within a tab bloc #28304
    AXEL PARATREAXEL PARATRE
    Participant

    Thanks for you answer.

    This option (media button) works, but textarea_rows doen't.

    Actually, in your exemple, you can notice that the 1st WYSIWYG (1st tab) has the default height and those in the 2nd tab have a really small height (exactly 100px set on the iframe with css style inlane --> screenshot bellow). However all WYSIWYG have no height option set.

    To resume the textarea_rows isn't applied on the the other tabs. Only the 1st works.

    in reply to: Issue with WYSIWYG within a tab bloc #28290
    AXEL PARATREAXEL PARATRE
    Participant

    Hi Longh,

    We did it with the custom field editor (metabox AIO)

    I think i'm in wrong forum - my issue should be in the Metabox Builder forum sorry.

    <?php
    add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' );
    
    function your_prefix_function_name( $meta_boxes ) {
        $prefix = '';
    
        $meta_boxes[] = [
            'title'  => __( 'Test', 'your-text-domain' ),
            'id'     => 'test',
            'tabs'   => [
                'tab_lyqm3d49c4i' => [
                    'label' => 'Tab',
                    'icon'  => '',
                ],
                'tab_er9wju7n55b' => [
                    'label' => 'Tab (Copy)',
                    'icon'  => '',
                ],
            ],
            'fields' => [
                [
                    'name' => __( 'Wysiwyg', 'your-text-domain' ),
                    'id'   => $prefix . 'wysiwyg_dbx2z2vqr55',
                    'type' => 'wysiwyg',
                    'tab'  => 'tab_lyqm3d49c4i',
                ],
                [
                    'name'    => __( 'Wysiwyg (Copy)', 'your-text-domain' ),
                    'id'      => $prefix . 'wysiwyg_n7brzfaq6fr',
                    'type'    => 'wysiwyg',
                    'columns' => 6,
                    'tab'     => 'tab_er9wju7n55b',
                ],
                [
                    'name'    => __( 'Wysiwyg (Copy) (Copy)', 'your-text-domain' ),
                    'id'      => $prefix . 'wysiwyg_zpyvkx3ygag',
                    'type'    => 'wysiwyg',
                    'columns' => 6,
                    'tab'     => 'tab_er9wju7n55b',
                ],
            ],
        ];
    
        return $meta_boxes;
    }
    in reply to: Callbacks in block doesn't refresh #28065
    AXEL PARATREAXEL PARATRE
    Participant

    Hi,
    The callback is included in the block builder (cf screenshot).
    If add a other product (in the good term) i dont see it in the selector

    1620632247-capture-12.png - envoi d'image avec NoelShack

    function nxt_get_accessories_list() {
        $posts = get_posts([
            "post_type"   => "product",
            "tax_query"   => [
                [
                    "taxonomy"    => "product_cat",
                    "field"       => "slug",
                    "terms"       => "accessoires"
                ]
            ]
        ]);
        $posts = array_map(
            function($post) {
                return [
                    $post->ID,
                    $post->post_title
                ];
            },
            $posts
        );
        return array_column(
            $posts,
            1,
            0
        );
    }
    AXEL PARATREAXEL PARATRE
    Participant

    hi,

    It happends on fresh install.

    PHP Fatal error: Uncaught Error: Call to undefined function rwmb_csv_to_array() in /app/cover-recrutement/wp-content/plugins/meta-box-aio/vendor/meta-box/meta-box-template/inc/class-mb-template-register.php:54
    Stack trace:
    #0 /app/cover-recrutement/wp-content/plugins/meta-box-aio/vendor/meta-box/meta-box-template/inc/class-mb-template-register.php(30): MB_Template_Register->parse_files()
    #1 /app/cover-recrutement/wp-includes/class-wp-hook.php(287): MB_Template_Register->register_meta_boxes(Array)
    #2 /app/cover-recrutement/wp-includes/plugin.php(206): WP_Hook->apply_filters(Array, Array)
    #3 /app/cover-recrutement/wp-content/plugins/meta-box/inc/core.php(50): apply_filters('rwmb_meta_boxes', Array)
    #4 /app/cover-recrutement/wp-includes/class-wp-hook.php(287): RWMB_Core->register_meta_boxes('')
    #5 /app/cover-recrutement/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array)
    #6 /app/cover-recrutement/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
    #7 /app/cover-recrutement/wp-settings.php(540): do_action(' in /app/cover-recrutement/wp-content/plugins/meta-box-aio/vendor/meta-box/meta-box-template/inc/class-mb-template-register.php on line 54
    Fatal error: Uncaught Error: Call to undefined function rwmb_csv_to_array() in /app/cover-recrutement/wp-content/plugins/meta-box-aio/vendor/meta-box/meta-box-template/inc/class-mb-template-register.php:54

    I can't find in Metabox or Metabox AIO the function rwmb_csv_to_array.

    in reply to: Taxonomy for users #15315
    AXEL PARATREAXEL PARATRE
    Participant

    Thanks Ahn

    Adrien

    in reply to: Php Warning when using image upload #15314
    AXEL PARATREAXEL PARATRE
    Participant

    I add more explanation here,

    The Single image give a warning error when it is clonable.

    in reply to: Taxonomy for users #15281
    AXEL PARATREAXEL PARATRE
    Participant

    Hi Anh,

    Do you know if that's possible.

    Thanks,
    Adrien

    in reply to: Get User email info in Custom post meta #15280
    AXEL PARATREAXEL PARATRE
    Participant

    Thanks Anh,

    Maybe it could be a good evolution 🙂

    Regards
    Adrien

    in reply to: Get User email info in Custom post meta #15254
    AXEL PARATREAXEL PARATRE
    Participant

    Hi Anh,

    Thanks for your answer.
    I knew that I could get it by code. My question was about to get it directly via the MB Builder ?

    Thanks
    Adrien

    AXEL PARATREAXEL PARATRE
    Participant

    Hi Anh,

    Thanks, it works perfectly.

    Regards
    Adrien

    AXEL PARATREAXEL PARATRE
    Participant

    Noted,

    Thanks for the information,

    Adrien

    AXEL PARATREAXEL PARATRE
    Participant

    Hi,

    Thanks for your reactivity.

    I saw MetaBox AIO updated in your website but not in my WordPress Administration (I have Metabox Updater installed). Is it normal ?

    Thanks
    Adrien

Viewing 15 posts - 1 through 15 (of 18 total)