Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterThanks 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.
Anh Tran
KeymasterHi,
Looks like the
requiredattribute causes the issue. I tested your code and see that when you set the fieldrequired, 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 therequiredattribute.December 19, 2018 at 8:43 AM in reply to: ✅Frontend display of all linked posts in multiple relationships #12731Anh Tran
KeymasterHi 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:
Anh Tran
KeymasterHi 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.
Anh Tran
KeymasterHi 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.
Anh Tran
KeymasterI'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.
December 14, 2018 at 5:36 PM in reply to: ✅Your main plugin "meta-box" ignore language settings in WP #12673Anh Tran
KeymasterFinally, I got it fixed here. Calling to
get_plugin_datain the About page causes the bug. Not sure why 🙁December 14, 2018 at 2:33 PM in reply to: ✅Image Upload: image is deleted after change position using drag and drop #12671Anh Tran
KeymasterThanks 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?Anh Tran
KeymasterHi 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.
Anh Tran
KeymasterHi Jonathan,
Can you try the latest version on Github?
Anh Tran
KeymasterHey 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 🙂
Anh Tran
KeymasterOh, 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.
December 14, 2018 at 10:29 AM in reply to: ✅Can I export and import custom taxonomies and CPT #12665Anh Tran
KeymasterHi,
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.
Anh Tran
KeymasterWordPress hard-coded that in its function
get_the_content, so there's no filter to do that automatically. Maybe you write a wrapper function forrwmb_metalike 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_metain replace forrwmb_meta.Anh Tran
KeymasterJust 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).
-
AuthorPosts