Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi Razib,
Probably the email you used to purchase isn't the same as your current account email. Please let me know both emails, and I'll merge them for you.
Anh Tran
KeymasterI got it. I've issued the refund for you. If you need Meta Box in the future, you're always welcome.
Anh Tran
KeymasterHi Matthewhorne,
Would you mind telling us what doesn't work for you? We can help you troubleshooting it.
Thanks
Anh Tran
KeymasterHi Dwight,
Thanks for your feedback. That's totally fine. I've issued the refund for you.
If you need Meta Box anytime, you're always welcome here.
Anh Tran
KeymasterHi Dwight,
Can you please let us know the reasons you don't need the plugins? We'll try to help you to leverage the plugins to suit your needs.
August 25, 2020 at 10:00 AM in reply to: ✅Cannot submit front-end from embedded within an iframe #21444Anh Tran
KeymasterHi,
MBFS doesn't use cookie. It uses only PHP session (which stays in the server). So, I think it's not a problem with cookie or browser restriction.
If submitting via Ajax, there might be issue with CORS which doesn't allow to send Ajax request from a domain to another. It's a security feature for the web (you can read more about it here). If this is the case, you can set headers on the origin website to accept Ajax request from other domains.
I'll check more with that. Probably browsers have their restriction that we need to investigate.
Anh Tran
KeymasterHi Eric,
FYI, there's a community plugin for adding mask to input for phone numbers or currency that you might want to check out. There are also other resources in the menu Support > Resources.
Anh Tran
KeymasterHi,
No problem. I've just issued the refund for you.
Anh Tran
KeymasterHi John, can you please check if you have Meta Box Updater extension installed? It's not required and not working anymore. If you still have it, please remove it and try again.
Update: John noticed us via email that he has resolved it.
Anh Tran
KeymasterHi Mats,
No problem. I've sent you the refund.
If you need the plugins in the future, you're always welcomed here.
Anh
Anh Tran
KeymasterHi,
Thanks for your suggestion. We understand the benefits of using semantic versions with Composer and it's in our list of TODOs. Currently, it relates to our CI/CD to auto deploy plugin versions to the server and also the license management, so we couldn't make big changes for now. But we'll investigate more on that and will try to do.
Anh Tran
KeymasterJust added 2 hooks for
addanddeleteaction:do_action( 'mb_relationships_add', $from, $to, $type, $order_from, $order_to ); do_action( 'mb_relationships_delete', $from, $to, $type );Anh Tran
KeymasterHi Didou,
To hide meta boxes, I think CSS probably is the fastest way. You can also hook to
rwmb_meta_boxesor WP'sadd_meta_boxeshook to remove them but I think it requires more code.Regarding the action hooks, I can add them for you. But do you want to make a contribution on Github? So I can add a credit for you as a thanks!
Anh Tran
KeymasterHi,
I think there's a way to prevent the MB Relationships from saving to the database using the
save_fieldparameter for field settings (I haven't tested it yet). This param tells Meta Box to not save field value to the DB. So, you can try it by specify it explicitly in thefieldparam of the relationship.add_action( 'mb_relationships_init', function () { MB_Relationships_API::register( [ 'id' => 'class_present_to_student', 'from' => [ 'post_type' => 'class', 'field' => [ 'save_field' => false, ], ], 'to' => [ 'post_type' => 'student', 'field' => [ 'save_field' => false, ], ], ] ); } );Anh Tran
KeymasterHi Suraj,
Would you mind sharing with us what are your needs? Maybe we can help you use the MB Group extension to complete the task.
-
AuthorPosts