Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi Bonnie,
Thanks for the info. That helps a lot understanding your situation.
In this case, I’m afraid to tell you that the MB Revision only works with custom fields made by Meta Box, not made by other plugins such as WP-Types. So my suggestion is you can rewrite the code to transform fields created by WP-Types to Meta Box. If the number of fields are not large and fields are not complicated, I think you can do that simply by following the instruction in the link I posted in the previous reply.
However, that depends on how WP-Types saves data in the database. If it’s compatible with the default WordPress behavior of storing post meta, then the transformation will be easy. This is how Meta Box saves data in the database.
Anh Tran
KeymasterHi Daniele,
I've just fixed the extension. Please update to version 1.1.2.
Thanks,
AnhAnh Tran
KeymasterI've fixed it yesterday. I'm releasing new version now.
Edit: Version 4.12.5 has been released. Please update.
Anh Tran
KeymasterHi Daniele,
I'll look at the problem now and will fix it soon. Thanks for reporting.
November 16, 2017 at 5:42 PM in reply to: Cloneable group inheriting values from previous group #7418Anh Tran
KeymasterAh, I got it. It's a different from the media field that I've resolved. This is a problem with Conditional Logic extension that doesn't refresh after cloning. I will check and fix it.
Anh Tran
KeymasterI've just fixed the docs link. There was a problem with my HTTPS setup.
Just curious, how do you create custom fields? Do you create with the WP-Types plugin?
November 16, 2017 at 5:30 PM in reply to: Post field as checkbox list select_all_none or std do not work #7416Anh Tran
KeymasterHi, let me check the code and will fix it soon.
Edit: Just fixed it on Github. Will release new version soon.
Edit 2: New version 4.12.5 has been released. Please update.November 16, 2017 at 12:22 PM in reply to: ✅I can't get FIX Patch update cause my licence is already expired #7410Anh Tran
KeymasterHi,
I understand your point and agree with you. However, there are 2 things that we should consider:
1. The extension was released after you purchased the bundle, and it's quite new. We didn't intentionally want to sell buggy extensions.
2. There are sometimes bugs in the extensions and we're trying to fix as fast as possible. This bug was fixed just 1 day after it's reported and Florian (who reported it) was happy with the progress.This fatal bug also relates to the new change of Meta Box plugin. We created a new mechanism (called storage) to handle saving data, which helps reducing a lot of code for term/settings/user meta extension. Unfortunately, the frontend extension didn't use that mechanism at first and we had to update it in version 1.0.3.
If you want to fix the extension work, just add this single line to the file
class-mb-frontend-post.php.Thanks and best regards,
AnhAnh Tran
KeymasterHi Bonnie,
The syntax to add fields to existing custom post type is nothing different from new custom post type. In the meta box settings, just add
'post_types' => array( 'your_post_type' ). Please check this docs for more info.Please note that if the fields already exist, then there's no way to track their previous values. The extension can track values from now on.
November 15, 2017 at 10:29 PM in reply to: ✅I can't get FIX Patch update cause my licence is already expired #7400Anh Tran
KeymasterHi, this bug was reported and fixed. Please renew your license to get the update.
Thanks,
AnhAnh Tran
KeymasterHi,
Sorry for late reply. I had a personal problem yesterday and couldn't be online.
I've just read your reply and I think
max_input_varsmakes sense. It's the PHP configuration, which limits the number of variables submitted via$_POST. By default, this number is set to 1000. If you have a lot of groups (clones), with many fields inside each clone, the total variables might be greater than 1000. Also note that the number of variables includes WordPress variables (title, categories, post status, etc.).This is a good discussion on StackOverflow about this problem. I think, rewrite the code to reduce number of fields / inputs is a good way to get rid of this issue. Or you can try increasing the
max_input_vars.November 13, 2017 at 11:09 AM in reply to: Cloneable group inheriting values from previous group #7370Anh Tran
KeymasterHi again,
I've just tried your code and it works properly. Have you tried the latest code on Github? (not on wordpress.org cause I haven't released new version yet)
Anh Tran
KeymasterHi again,
I tried to add images to this post and it still works. Looks like you set up
max_clone. Do you see any error on that page?Anh Tran
KeymasterHi,
I'm not sure if you want to talk about "terms" or "taxonomies". I think it's "terms". So:
1. To select multiple terms, just set
multiplesetting totruefor thetaxonomyfield.
2. Unfortunately the UI for creating new terms are not available. The field only allows users to select existing ones.Best regards,
Anh -
AuthorPosts