Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 3,866 total)
  • Author
    Posts
  • in reply to: Tutorials for Meta Box in Mosaic #50167
    PeterPeter
    Moderator

    Hello Dennis,

    Thanks for reaching out and sharing a new compatibility plugin.

    I'm going to forward this topic to the marketing team to create new documentation regarding compatibility with the Mosaic builder.

    in reply to: Invalid Taxonomy #50165
    PeterPeter
    Moderator

    Hello Will,

    Please share your site admin account by submitting this contact form https://metabox.io/contact/
    I will take a look.

    PeterPeter
    Moderator

    Hello Joerg,

    Can you please copy your site to a staging site and remove sensitive data if needed and share the credentials? Or share a screen record of steps you take on your site to reproduce the issue. I will follow those steps to reproduce the issue on my site.

    Thank you.

    in reply to: Invalid Taxonomy #50159
    PeterPeter
    Moderator

    Hello Will,

    Thanks for reaching out.

    Yes, it works properly on my test site, please check this screenshot https://ibb.co/0RQFLQsg
    Maybe the series slug is used by another taxonomy on your site. Please try to change the slug to another thing, like series123 and recheck the issue.

    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    You can use the field taxonomy to display the list of categories in the frontend and assign the selected category to the created post. Please read more about the taxonomy field in the documentation
    https://docs.metabox.io/fields/taxonomy/

    PeterPeter
    Moderator

    Hello FRYE,

    Thanks for reaching out.

    I'm not able to reproduce the issue on my demo site using the MB Admin Columns and WPML plugin to search for a post of a CPT. Can you please share your site admin account by submitting this contact form https://metabox.io/contact/

    I will take a look.

    in reply to: After update - missing custom fields in post-type xyz #50153
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    Can you please export the field group to a JSON file and share it with me? I will import it to my demo site and see how it works. You can also try it on a clean installation of WordPress and observe the issue.

    Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import

    in reply to: Select advanced shows no results, JS error #50150
    PeterPeter
    Moderator

    Hello Stefan,

    Thanks for reaching out.

    It could be a caching JS or conflicting with another plugin or custom code on your site. Please try to deactivate all plugins except Meta Box AIO, WooCommerce plugins, switch to a WordPress theme, clear all caches (browser, hosting ...) and recheck the issue.

    PeterPeter
    Moderator

    Hello Ahmed,

    Thanks for reaching out and for your feedback.

    Yes, you are correct. The function maybe_unserialize in the storage of custom table interferes with the serialized array and causes the issue. I suggest you use the custom code below to fix the issue

    
    add_filter( 'rwmb_raw_meta', function ( $value, $field, $object_id ) {
          if ( ( $field['id'] ?? '' ) !== 'your_field_id' ) {
                  return $value;
          }
    
          $storage = $field['storage'] ?? null;
          if ( ! $object_id || ! $storage instanceof \MetaBox\CustomTable\Storage ) {
                  return $value;
          }
    
          $row = \MetaBox\CustomTable\Cache::get( $object_id, $storage->table );
    
          return $row[ $field['id'] ] ?? $value;
    }, 10, 3 );
    

    I'm going to escalate the issue to the development team to fix it as soon as possible.

    PeterPeter
    Moderator

    Hello Paul,

    Thanks for reaching out.

    By default, the field type checkbox_list will save each value in a single row in the table wp_postmeta. Following the documentation https://docs.metabox.io/fields/checkbox-list/#data

    and you need to use commas , when importing multiple values for this field, following the WP All Import documentation https://www.wpallimport.com/documentation/import-meta-box-basic-fields/

    If it doesn't work, I recommend contacting WP All Import who develops the integration plugin and asking them for more information.

    in reply to: Possible to let autocreate table use db datatypes? #50140
    PeterPeter
    Moderator

    Hello Annemijn,

    Thanks for reaching out.

    Currently, the auto-create custom table feature only supports creating the table with TEXT data type. It will work with all field types created by Meta Box. Please read more in the documentation
    https://docs.metabox.io/extensions/mb-custom-table/

    PeterPeter
    Moderator

    Hello Tom,

    I'm afraid that it was not. I will let you know when it is fixed.

    Thank you.

    in reply to: 500 Error updating AIO #50132
    PeterPeter
    Moderator

    Hello,

    If you use the plugin Meta Box, you should update it to the latest version 5.14.0 to be compatible with Meta Box AIO 3.10.0.

    Also, you can deactivate the single Meta Box plugin because it is already bundled in Meta Box AIO. Just use the Meta Box AIO plugin version 3.10.0 to get all features.

    Thanks.

    in reply to: ℹ️error #50126
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    Can you please re-apply the workaround that I shared with you previously to fix the issue?

    Add the code

    
            $posts = array_filter( array_map( function( $p ) {
                return get_post( $p->ID );
            }, $posts ) );
    

    to the function get_post_data() on line 123, before the code

    $posts = array_map( [ $this, 'create_post_object' ], $posts );

    file /wp-content/plugins/meta-box-aio/vendor/meta-box/mb-views/src/Renderer.php

    in reply to: PHP Fatal Error when user tries to edit front end form #50124
    PeterPeter
    Moderator

    Hello,

    You can share your site credentials by submitting this contact form https://metabox.io/contact/
    I will help you fix the error message.

    Thanks.

Viewing 15 posts - 1 through 15 (of 3,866 total)