Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 3,835 total)
  • Author
    Posts
  • in reply to: Error *8053 FastCGI sent in stderr: "P #49951
    PeterPeter
    Moderator

    Hello Scot,

    Thanks for reaching out.

    I don't see the same error with the function FieldKeys::all() on my site when using the plugin Theme My Login. However, I'm going to escalate the issue to the development team to add a condition to check the value passed to an array function.

    in reply to: Bug Report: Import Field Group incomplete #49950
    PeterPeter
    Moderator

    Hello François,

    Thanks for reaching out.

    Yes, please share the exported JSON file. I will import it to my local site and check the issue.

    in reply to: Settings Page has a weird rending #49949
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    I check the screenshot and think that it could be a conflicting issue with a third-party plugin or custom code on your site. Can you please try to deactivate all plugins, leave only Meta Box activated and switch to a WordPress theme to see if it helps?

    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    I found 2 issues in your code that register the custom table and custom fields:

    1. The column title is st_name_id but the field ID is state_name_id. The column title must match the field ID, following the documentation https://docs.metabox.io/extensions/mb-custom-table/#notes

    There is an error in the debug log related to this issue
    WordPress database error Unknown column 'state_name_id' in 'field list' for query INSERT INTOcc_geo_states(state_name_id,stype,state_base_name,state_abbr,mtfcc,geoid,state,statens`) VALUES ('23', 'a', 'a', 'a', 'a', 'a', 'a', 'a') made by do_action('load-toplevel_page_model-statesmodel'), WP_Hook->do_action, WP_Hook->apply_filters, MetaBox\CustomTable\Model\Admin->load_add_edit, do_action('mbct_model_edit_load'), WP_Hook->do_action, WP_Hook->apply_filters, MetaBox\CustomTable\Model\MetaBox->save_model, RW_Meta_Box->save_post, do_action('rwmb_after_save_post'), WP_Hook->do_action, WP_Hook->apply_filters, MetaBox\CustomTable\Loader->update_object_data, MetaBox\CustomTable\Storage->insert_row
    `

    2. The parameter passed to the callback function is $metaboxes but inside the callback function, you use a different variable $meta_boxes (underscore).

    After fixing 2 issues, I can create a model entry and edit existing entries properly.

    in reply to: Translation of custom post type names #49943
    PeterPeter
    Moderator

    Hello,

    The compatibility with WPML supports translating the post type labels to other languages and it works properly. But I'm not sure if the breadcrumb in the frontend uses the post type label in a correct way and makes it translatable. Since it is not created by Meta Box so I'm not able to check it.
    If you want to check the issue further, please share your site admin account by submitting this contact form https://metabox.io/contact/

    Thank you.

    PeterPeter
    Moderator

    Hello Emiliano,

    Thank you for sharing the blocks. I can see the issue with the following format:
    - Section
    -- Row > A custom inner block
    -- Row > A custom inner block
    -- Row > A custom inner block

    then 3 custom inner blocks display the same content in the frontend as the first inner block.

    I've escalated the issue to the development team to check and fix this. I will let you know when it's done.

    in reply to: Translation of custom post type names #49936
    PeterPeter
    Moderator

    Hello Sinisa,

    Thanks for reaching out.

    I suggest you follow the documentation https://docs.metabox.io/integrations/wpml/#custom-post-types
    to translate posts and post type name using WPML. For the translation in the frontend, you can contact WPML support and ask them for more information.

    PeterPeter
    Moderator

    Hello Emiliano,

    Thanks for reaching out.

    I've tried to reproduce the issue on my site but did not see that: many instances of an inner block inside a custom block, all of inner blocks are displayed properly.

    Can you please share the code that you use to register the custom fields, blocks, template files and let me know how to reproduce the issue?

    in reply to: Question About Divi 5 Compatibility #49929
    PeterPeter
    Moderator

    Hello Nicole,

    Thanks for reaching out.

    The integration with Divi5 is on our development queue and we are working on it. I will let you know when there is an update for this integration.

    in reply to: MB Blocks 1.8.0 stops enqueueing assets on frontend #49928
    PeterPeter
    Moderator

    Hello Johannes,

    Can you please use the setting enqueue_style setting instead of the setting enqueue_block_assets and recheck the issue?

    in reply to: Critical Error #49925
    PeterPeter
    Moderator

    That should be the issue. To access the admin area and fix this, please edit the table wp_posts in the database, find the post type mb-relationship and delete the new relationship created.

    If you create a new relationship, please select the taxonomy for the Term connection.

    in reply to: Critical Error #49924
    PeterPeter
    Moderator

    Hello Ronny,

    Thanks for reaching out.

    Can you please share a screenshot of the relationship created? Do you leave the Taxonomy select field empty?
    https://imgur.com/jqZN12B

    PeterPeter
    Moderator

    Hello,

    While waiting for the update of MB CPT, you can edit the file /mb-custom-post-type/src/PostTypeReorder.php, on line 266, clear the object cache after updating the post parent.

    
    $wpdb->update(
        $wpdb->posts,
        [
            'post_parent' => $item['parent_id'] ? $item['parent_id'] : 0,
            'menu_order'  => $item['order'],
        ],
        [ 'ID' => $item['id'] ]
    );
    wp_cache_flush_group( 'posts' );
    

    Let me know how it goes.

    in reply to: Cloudflare Turnstile #49918
    PeterPeter
    Moderator

    Hello Wendell,

    Thanks for reaching out.

    Currently, there isn't an option to integrate Cloudflare Turnstile to MB Frontend Form. However, if you want to add some HTML code to the form, like Google Tag Manager, you can use the action hook rwmb_frontend_before_submit_button. Refer to the documentation
    https://docs.metabox.io/extensions/mb-frontend-submission/#general-hooks
    https://developers.cloudflare.com/turnstile/get-started/

    in reply to: Installation via Composer fails #49916
    PeterPeter
    Moderator

    Hello,

    I'm also not able to reproduce the issue on my side. If you have more information about this issue or steps to reproduce it, please let me know.

    Thanks.

Viewing 15 posts - 46 through 60 (of 3,835 total)