Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterDear Matt,
Glad that it works. Please don't hesitate to tell us if you have another problems.
Best regards,
Tan
Anh Tran
KeymasterGot it, my suggestion syntax is for exactly match when post category should be product and cannot belongs to another one. If you want to show your meta box when post categories is in
productand others. You can useinoperator:'visible' => ['slug:post_category', 'in', ['product']],Best regards,
Tan
Anh Tran
KeymasterI'm debugging :(. Another error appears and I have to fix it. I'm trying to do that as fast as possible.
Anh Tran
KeymasterGlad that you've fixed it. Awesome!
Anh Tran
KeymasterIt's fine :). If you see any error, please just let me know.
Anh Tran
KeymasterDear Yumiko,
Thanks for reporting, I'll try to replicate the problem on my PC then give you an answer and update. It's hard to replicate the problem, it's better if you can give me your server logs file. Currently, you can try: deactivating other plugins (security plugins first if exists), and activate other themes.
Best regards,
Tan
Anh Tran
KeymasterFYI, the new version is released and it would have the fix for this bug.
Anh Tran
KeymasterWe have a ticket on this but haven't made any progress. We will try to do this. Let's tracking on Github.
September 11, 2016 at 10:18 PM in reply to: Including/Excluding via page template when templates in subdirectory #4062Anh Tran
KeymasterHi,
If you put the page template in a subfolder
page-templates, you need to use'include' => 'page-templates/name.php'instead of justname.php.Anh Tran
KeymasterHi bro,
Because you've purchased Developer Bundle. You can use MB Conditional Logic instead. It has more features for you:
Instead of:
'show' => ['category' => ['Product']]You can use:
'visible' => ['slug:post_category', 'product']Documentation can be found here:
https://metabox.io/docs/meta-box-conditional-logic/Best regards,
Tan
Anh Tran
KeymasterCurrently, you can use export in bottom dropdown, the top dropdown doesn't works and we'll fix this on the next release ๐
Anh Tran
KeymasterHi FED, the bug is complicated and I haven't found a good solution yet. I will let you know as soon as I find a way.
Thanks
AnhAnh Tran
KeymasterI've just fixed the bug and released new version. Please update and check it.
Thanks
AnhSeptember 8, 2016 at 3:15 PM in reply to: Groups should be native functionality, not a premium extension #4040Anh Tran
KeymasterYes, all of the methods above should work. The way we load Meta Box and extensions doesn't matter too much, because the Group extension is loaded on
inithook and at that time Meta Box is already loaded.Anh Tran
KeymasterYou can set default values for cloned fields by assigning an array of values to
stdparameter.Assuming you have a cloned text field
phoneswhich store phone numbers. You can set default value like this:$default = array( '0123-456-789', '001-002-003', ); // Then in your field array( 'name' => 'Phone numbers', 'id' => 'phones', 'type' => 'text', 'clone' => true, 'std' => $default, ) -
AuthorPosts