Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,766 through 3,780 (of 3,835 total)
  • Author
    Posts
  • in reply to: SVG / single-image / output as "inline"-string #39126
    PeterPeter
    Moderator

    Hello there,

    It is not possible to save the SVG image with string code in the database. This field saves the image ID to the database as you can read on the documentation https://docs.metabox.io/fields/single-image/

    If you want to save the image code, please use the field textarea or text for this case.

    in reply to: Metabox Admin menu does not appear after plugin activation #39125
    PeterPeter
    Moderator

    Hello Jose,

    The flow should be:

    - Install and activate Meta Box
    - Install and activate other extensions (MB Builder, MB Relationships or just Meta Box AIO ...)
    - Activate the license key

    The first step is written down in the Introduction documentation https://docs.metabox.io/introduction/

    Meta Box core plugin, which is free and available on wordpress.org. It's the foundation of all features and is always required (activated).

    You can download other extensions on the My Account page https://metabox.io/my-account/

    If you have the Lifetime Bundle license, you can use one plugin Meta Box AIO to get all pro features. Please read more here https://docs.metabox.io/extensions/meta-box-aio/

    in reply to: Invalid Request. Please try again. #39114
    PeterPeter
    Moderator

    Hello there,

    This issue happens when a user submits a form twice or more with Ajax enabled and it has been fixed in the new update. Please update MB extensions to the latest versions, clear all caches and check this issue again.

    in reply to: Metabox Admin menu does not appear after plugin activation #39113
    PeterPeter
    Moderator

    Hello Jose,

    Is the plugin Meta Box activated? All MB extensions need to activate the plugin Meta Box to work.

    in reply to: Function WP_Object_Cache::get was called incorrectly #39112
    PeterPeter
    Moderator

    Hello Alaan,

    Thank you for your feedback. There are some changes in the new version of WordPress 6.1 and it might cause the issue. I will inform the development team to update our plugin to adapt to these changes.

    in reply to: Error 400 when adding or removing terms #39110
    PeterPeter
    Moderator

    I don't see the error 400 on my end when trying to add some terms Best Season to a post, screen record https://monosnap.com/file/kAw6x5Xk3FOQpLQ0wbVW9fPuTdOpRz

    in reply to: Issues displaying blog post author name and comment counts #39108
    PeterPeter
    Moderator

    Hello,

    On the single post page, no need to use this loop

    {% for post in query.posts %}

    it should be used on the archive page to display posts.

    in reply to: Quicktags Editor Doesn't Show Content on Frontend #39107
    PeterPeter
    Moderator

    Hello,

    Can you please deactivate all plugins except Meta Box and MB extensions, switch to a standard theme of WordPress (2022) and recheck this issue? If the quicktags work on the backend, they should work on the frontend also.

    in reply to: Filter mbfp_posts with WP Gridbuilder #39105
    PeterPeter
    Moderator

    Hello Lucas,

    In case of using Oxygen Builder, WP Grid Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.

    Refer to our support policy https://metabox.io/support/topic/support-policy/

    in reply to: How to output Custom Fields with functions.php #39104
    PeterPeter
    Moderator

    Hello Michael,

    The helper function can help you to output the field value anywhere on the site, the main goal is to pass the field ID and post ID to the function, like this

    <?php $value = rwmb_meta( 'my_custom_field', '', $post_id ) ?>

    You can contact WooCommerce support or your theme support to ask for getting the post ID when using the hook.

    in reply to: Warning: Illegal string offset 'parent' after last update #39103
    PeterPeter
    Moderator

    Hello Hans,

    Then you should contact The Events Calendar support to ask for further assistance. If you experience that issue again, you can enable the WP Debug log and share it here. I will help you to investigate the issue.

    in reply to: Pull MetaBox Settings Page fields using PHP #39102
    PeterPeter
    Moderator

    Hello Mike,

    If you want to get the field value, please use the helper function rwmb_meta(), for example

    $field = rwmb_meta( 'mh_website_name', ['object_type' => 'setting'], 'site-settings' );
    echo ($field);

    The helper function rwmb_get_field_settings() helps you to get the field settings like name, type, id ..., not the field value.

    in reply to: Custom Field Single Image as Featured Image #39099
    PeterPeter
    Moderator

    I understand the issue, in the admin area, WordPress does not support displaying 2 fields with the same ID on a page. In the frontend, with the frontend submission form, it works properly.

    In this case, I recommend removing the standard featured image section of WordPress to show the custom field created by Meta Box. If you create the CPT by Meta Box, you can go to Meta Box > Post Type > Edit the post type > Support tab > Disable option "Thumbnails".

    in reply to: Outputting user data in group loop #39098
    PeterPeter
    Moderator

    Hello Yasmine,

    Can you please share the code that creates the custom fields on your site? I recommend using this code to output a variable if you do not know what could be the value.

    echo "<pre>";
    print_r( $variable );
    echo "</pre>";
    in reply to: MB group loop - users #39097
    PeterPeter
    Moderator

    If you want to get the post meta, you need to use the function get_posts().

    Regarding the custom avatar field, can you please let me know how did you register the custom field and the code that output the field value?

Viewing 15 posts - 3,766 through 3,780 (of 3,835 total)