Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1,546 through 1,560 (of 3,958 total)
  • Author
    Posts
  • in reply to: Error in select Tree Taxonomy #12735
    Anh TranAnh Tran
    Keymaster

    Thanks a lot for your video. You're right about the nesting levels. It's a bug and I've just fixed on Github: https://github.com/wpmetabox/meta-box/. Please take a look.

    in reply to: Error in select Tree Taxonomy #12732
    Anh TranAnh Tran
    Keymaster

    Hi,

    Looks like the required attribute causes the issue. I tested your code and see that when you set the field required, you have to select the terms for all dropdowns in the select tree before saving posts. So, if that's not your intent, you should remove the required attribute.

    Anh TranAnh Tran
    Keymaster

    Hi Max,

    The current version doesn't support query from multiple relationships at once. However, there's a workaround. You can make a raw query to get all your connected posts like this:

    https://ghostbin.com/paste/9gfhe

    in reply to: Cancellation #12724
    Anh TranAnh Tran
    Keymaster

    Hi Milind,

    Thanks a lot for your feedback!

    Working with existing post types is like injecting Meta Box into something that already built. Especially in case of WooCommerce, which has a lot of business logic behind the scene. In my opinion, even if you have good collection of plugins, there are still some parts required custom coding.

    We're going to add more support for BB and Themer in the next version. Mostly for the Group (repeater) and Conditional Logic feature in Themer.

    Anyway, I've just issued the refund. Hopefully you'll be back to us in the future. And good lock with your project.

    in reply to: Cancellation #12720
    Anh TranAnh Tran
    Keymaster

    Hi Milind,

    Thanks for your message.

    Would you mind sharing what you're trying to do with WooCommerce? Since your message is a little bit unclear, I can't provide detailed guideline.

    Regrading about coding, Meta Box can be used by non-coders with the help of MB Builder extension or the documentation where you can copy and paste the code. The PHP part is for advanced things where you want to customize the plugin.

    In case it doesn't work for you, I'm happy to issue a refund.

    in reply to: Metaboxes not saving values #12679
    Anh TranAnh Tran
    Keymaster

    I'm a big fan of Posts 2 Posts and I think it's bad for the community to see it dies. So, I created MB Relationships :).

    At the moment, the UI is for edit users only. We haven't worked on adding fields in the "create user" screen.

    in reply to: Your main plugin "meta-box" ignore language settings in WP #12673
    Anh TranAnh Tran
    Keymaster

    Finally, I got it fixed here. Calling to get_plugin_data in the About page causes the bug. Not sure why 🙁

    Anh TranAnh Tran
    Keymaster

    Thanks for your feedback. I've just noticed the issue on WP 5.0.1. Did you test with the same version (or Gutenberg)?

    Update:

    Turns out it's a bug in the plugin when force_delete=true. I've fixed on Github. Can you please check it?

    https://github.com/wpmetabox/meta-box

    in reply to: Drag and drop order reset without consent #12670
    Anh TranAnh Tran
    Keymaster

    Hi Doug,

    I've just made the video to check the problem. So far it works for me: http://recordit.co/mRNyr8h4f2. Can you try again?

    I also recorded another video to demonstrate more complex actions: http://recordit.co/MrHGxyfzAM

    It seems to work well on my side.

    in reply to: Metaboxes not saving values #12668
    Anh TranAnh Tran
    Keymaster

    Hi Jonathan,

    Can you try the latest version on Github?

    https://github.com/wpmetabox/mb-relationships

    in reply to: Drag and drop order reset without consent #12667
    Anh TranAnh Tran
    Keymaster

    Hey guys,

    Thanks a lot for testing! I've fixed the bug that Doug pointed out. This bug prevents the data from saving. Can you please try the latest version on Github?

    https://github.com/wpmetabox/mb-relationships

    It's the dev version and not the same as 1.4.1 version on .org. I will release version 1.5.0 if this works 🙂

    in reply to: Add Select Values from Other Custom Fields #12666
    Anh TranAnh Tran
    Keymaster

    Oh, you use group! So the code to get the point should be different a little bit. I've fixed your code to: https://ghostbin.com/paste/9p34h. Please take a look.

    in reply to: Can I export and import custom taxonomies and CPT #12665
    Anh TranAnh Tran
    Keymaster

    Hi,

    Yes, it's possible. Please just use the WordPress Import/Export under Tools > Import / Export to do that. Simply select Post Type and Taxonomy from the list of custom post types when export.

    in reply to: Password Protection and metaboxes #12645
    Anh TranAnh Tran
    Keymaster

    WordPress hard-coded that in its function get_the_content, so there's no filter to do that automatically. Maybe you write a wrapper function for rwmb_meta like this:

    function your_meta( $field_id, $args = [], $post_id = null ) {
        if ( post_password_required ) {
            return 'This post is password protected.';
        }
        return rwmb_meta( $field_id, $args, $post_id );
    }

    Then use your_meta in replace for rwmb_meta.

    in reply to: rwmb_{$field_id}_after_save_field #12644
    Anh TranAnh Tran
    Keymaster

    Just save it in a temporary variable (a class property if you're using a PHP class, or a global variable if you use normal functions).

Viewing 15 posts - 1,546 through 1,560 (of 3,958 total)