Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,511 through 3,525 (of 3,786 total)
  • Author
    Posts
  • in reply to: Fatal error when attempting to edit custom post type #39820
    PeterPeter
    Moderator

    Hello guys,

    Please update the plugin Meta Box AIO to the latest version 1.16.8 to fix this issue.

    Let me know how it goes.

    in reply to: wpd bzw. query vars --> order by --> MB Custom Table #39799
    PeterPeter
    Moderator

    Hello,

    It's not possible to order by field value with WP Query, and it is noted in the documentation

    It's important to understand that the plugin doesn't hook to the WP_Query to get posts by custom fields stored in the custom table. In other words, using meta_* in WP_Query for custom fields won't work.
    
    To get posts by custom fields in the custom table, you need to make an extra query to get the post IDs first. Then use these IDs to get full post objects.
    

    That means, if you use the custom table to store custom field value, you need to use the SQL query to get the post ID based on the field value.

    Please read more here https://docs.metabox.io/extensions/mb-custom-table/#query-posts-with-wp_query

    in reply to: Prevent scroll to form #39798
    PeterPeter
    Moderator

    Hello there,

    After submitting a form, the page will scroll to the form message and it is the standard behavior. I will inform the development team to consider supporting an option to disable this action.

    in reply to: Customizer "something went wrong" when advanced image is reset #39795
    PeterPeter
    Moderator

    Hello Aaron,

    Thanks for your feedback.

    I also see that issue on my demo site. If you publish the change and see the error message like "something went wrong", you can reload the customizer page and change other settings again. I will inform the development team to check this issue and fix it in the next update.

    in reply to: Critical error with metabox (not AIO) #39793
    PeterPeter
    Moderator

    Hello there,

    Can you please share the error log or error message on your site? You can enable WP debug to get it.

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

    Hello,

    I'm not able to reproduce the issue on my demo site. Can you please deactivate all plugins except Meta Box, MB AIO, switch to the standard theme of WordPress (Twenty TwentyTwo) and check this issue again?

    If it does not help, please share your site credentials and FTP to this contact form https://metabox.io/contact/
    I will take a closer look.

    in reply to: Metabox add new post Type causes critical Error #39789
    PeterPeter
    Moderator

    Hello,

    THis issue has been fixed in the new version of Meta Box AIO 1.16.8. Please update the plugin to edit/create the custom post type.

    PeterPeter
    Moderator

    Hello,

    It is not possible, you have to update the whole text list data in the database.

    PeterPeter
    Moderator

    Hello,

    >> use php code will make metabox load fast than in the builder?
    The editing page will be loaded faster if you have a large number of fields (maybe> 100 fields), otherwise, I do not see using the code will load the page faster too much.

    >> If i use custom field generated in the builder, is it slow loading
    No, because the generator only works if you click on the button to generate the code.

    in reply to: Error due to a mistake #39786
    PeterPeter
    Moderator

    Hello,

    If you did a mistake when creating custom fields for the comment (comment meta), you can just access the hosting and edit the template file to fix it.

    Regarding the error message, if it still happens on your site, please make sure that you have the latest version of Meta Box 5.6.14 and Meta Box AIO 1.16.8. You can also create a comment meta with the builder. Please read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/

    in reply to: Post Field : Display something else than title #39784
    PeterPeter
    Moderator

    Hello there,

    Unfortunately, the field post only supports displaying post title in the selection. There is no filter to change the post title to another post data.

    in reply to: Conditional logic may not be working #39783
    PeterPeter
    Moderator

    Hello,

    The bug is noticed by our developer and added to the working list but it is our internal tracking tool so other users cannot see that. Please keep in mind that we will update the plugin to fix the bug as soon as possible. Thanks.

    in reply to: How to add country specific time? #39782
    PeterPeter
    Moderator

    Hello,

    Yes, the time will be saved to the database with the India timezone. I do not have a VPN to test, if you have one please test this on your own.

    Meta Box does not support a countdown timer field, you can use a third party plugin such as https://wordpress.org/plugins/widget-countdown/
    to display a countdown on your site.

    in reply to: Create reusable parts #39781
    PeterPeter
    Moderator

    Hello,

    The issue with Advanced Location has been fixed in the new version of Meta Box 5.6.14. Please update the plugin to make it works.

    PeterPeter
    Moderator

    Hello,

    You can use the code below to update the cloneable text list value to the custom table

    add_action( 'save_post', function( $post_id ) {
        $data = [ 
            'id_of_text_list' => [ 
                ['date1', 'name1', 'price1'],
                ['date2', 'name2', 'price2'],
                ['date3', 'name3', 'price3'],
            ]
        ];
        \MetaBox\CustomTable\API::update( $post_id, "cmp_customfields", $data );
    } );
    
Viewing 15 posts - 3,511 through 3,525 (of 3,786 total)