Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,406 through 3,420 (of 3,718 total)
  • Author
    Posts
  • in reply to: No zip file #39922
    PeterPeter
    Moderator

    @JJCI: the plugin Meta Box AIO is available for download if you have the Ultimate Bundle or Lifetime Bundle license. If you have the Basic Bundle, please use the plugin MB Core which includes 12 Pro extensions. Please read more here https://metabox.io/pricing/

    in reply to: Missing permissions if use generated php code from AIO #39921
    PeterPeter
    Moderator

    Hello,

    The setting 'capability_type' => 'custom' is supported when you use the builder. If you generate the PHP code to register the post type, you need to add the capabilities manually. Please read more on the documentation https://developer.wordpress.org/reference/functions/register_post_type/#capability_type

    in reply to: Users can only update content #39920
    PeterPeter
    Moderator

    Hello,

    If the users do not have the administrator role, they will not be able to edit the field group to add/remove the custom fields. Or you can enable the Meta Box menu for a/some specific users, please refer to this topic https://support.metabox.io/topic/hiding-meta-box-plugin-from-wordpress-dashboard-menu-for-non-admins/

    in reply to: Changing the title and sending the list through email #39909
    PeterPeter
    Moderator

    Hello,

    If you don't want to use a translation plugin, you can override the template of the MB Favorite Posts plugin by creating a folder name mb-favorite-posts in the theme/child theme folder. Then copy the file posts.php from the folder /wp-content/plugins/mb-favorite-posts/views/ to the mb-favorite-posts folder and change the text Favorite Posts there.

    in reply to: Image Hotspot #39908
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out. Meta Box does not support an image hotspot field like that. I will inform the development team to explore the possibility.

    in reply to: Cannot create a new Taxonomy without AIO? #39907
    PeterPeter
    Moderator

    Hello,

    If you are using MB Core, please update it to the latest version 1.4.8 to fix the issue. Let me know how it goes.

    in reply to: Critical error when updating to latest version of Meta Box AIO #39901
    PeterPeter
    Moderator

    @Ambr: There could be something wrong when you use the code to output the field value or use the Meta Box template. Follow the error log
    RWMB_Meta_Box_Registry->make('About Us')
    I've accessed the database and deleted a page About Us and a Meta Box template name About Us then I can use the last version of Meta Box. Can you please check it on your live site?

    in reply to: Pulling Details from Custom Taxoonomy #39890
    PeterPeter
    Moderator

    Hello,

    Sorry, I do not understand your question clearly, can you please clarify it? Does the code work on your end to get the term meta?

    PeterPeter
    Moderator

    Hello,

    That Ajax issue has been fixed a few days ago and will be included in the next release of MB Frontend Submission. Sorry for the slow update because we have a list of issues with a higher priority to do.

    in reply to: Image and File advanced JSON error if field is left blank #39888
    PeterPeter
    Moderator

    Hello,

    The problem happens when the line below is added to the field file_advanced settings

    'column' => 'column-1',

    Refer to the documentation https://docs.metabox.io/extensions/meta-box-columns/
    Did you register the columns under the meta box settings?

    in reply to: Taxonomy according through the post type not working #39887
    PeterPeter
    Moderator

    Hello,

    Because after publishing the post, there is no parameter post_type in the URL and the code will not work correctly. After publishing the post, there is the post ID in the URL and you can get the post type by using the WordPress function get_post_type().

    For example:

        $prefix = '';
        $post_type = $_GET['post_type'];
        $taxonomy = '';
        $placehold = '';
    
        if( empty( $post_type ) ) {
            $post_id = null;
            if ( isset( $_GET['post'] ) ) {
                $post_id = intval( $_GET['post'] );
            } elseif ( isset( $_POST['post_ID'] ) ) {
                $post_id = intval( $_POST['post_ID'] );
            }
            $post_type = get_post_type( $post_id );
        }
    
    in reply to: Display Relationship in Oxygen #39886
    PeterPeter
    Moderator

    Hello,

    Thanks for sharing the solution.

    I also would like to say that, in case of using Oxygen 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: wpd bzw. query vars --> order by --> MB Custom Table #39885
    PeterPeter
    Moderator

    Hello,

    Thank you but there is nothing we can do from our side at the filter hook of the Bricks builder, they should take a look at their filter support. It is also beyond our scope of support which you can see here https://support.metabox.io/topic/support-policy/

    Thanks for your understanding and patience.

    in reply to: Why wouldn't this update the data? #39875
    PeterPeter
    Moderator

    Hello Amy,

    Thanks for reaching out.

    Can you please let me know the whole scenario and the code to register the fields, update the post meta ...

    Did you try to just update the post meta with a single value like this?

    update_post_meta( $post_id, 'field_id', 'testvalue' )

    You can try to deactivate all plugins and leave only Meta Box, MB extensions and activate a standard theme of WordPress to check this issue again.

    in reply to: Updating postmeta table via hook (cloned field) #39874
    PeterPeter
    Moderator

    Hello Amy,

    I will close this topic and reply here https://support.metabox.io/topic/why-wouldnt-this-update-the-data/

Viewing 15 posts - 3,406 through 3,420 (of 3,718 total)