Forum Replies Created
-
AuthorPosts
-
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.
Anh Tran
KeymasterHi Michael,
Can you please share the screenshot of the view(s) screen? I think there is something that we miss in the discussion that might cause the error.
Thanks,
AnhAnh Tran
KeymasterHey guys, it's just the browser cache problem. Please use Ctrl-F5 or clear the browser cache and refresh again.
June 2, 2020 at 8:45 AM in reply to: ✅Missing text-domain "Click here to reset your password" #20163Anh Tran
KeymasterThanks for your feedback. I've just fixed it and will release a new version soon.
June 1, 2020 at 2:25 PM in reply to: ✅Reciprocal relationships do not follow the order of the admin #19943Anh Tran
KeymasterHi,
I commented on the PR. Let's keep discussing over there for better reference of the code.
Thanks for your help!
-
AuthorPosts