Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi,
Thanks for the question. I've been thinking about this, too. This feature is still on my plan. But the problem is the UI for the field (and not only
taxonomy, but alsopostfield). Not sure how to make it good at the moment.Anh Tran
KeymasterThanks a lot! The docs is updated!
Anh Tran
KeymasterHello,
Thanks a lot for your feedback! I really appreciate that.
In order to use your product as an alternative to Toolset, I would need to install 6-8 plugins… For me, that’s a ton – and I happen to try to limit plugins to a total of 10 for an entire project.
Actually this is not a big problem. We have Meta Box AIO plugin that includes all plugins in a single one. So you can just install 1 plugin and have everything ready. This AIO plugin is available in the Developer Bundle (cause it includes everything).
But the number of plugins doesn't matter. Their quality matters much more. If you count all Meta Box plugins's files or line of codes, you will see it's less than Toolset!
So, does the online builder work for the add-ons too? Meaning, could I create a series of CPTs with special functions online, generate the code for that, and then paste into my site without having to install of the plugins?
You can do that with the MB Builder extension. It supports all premium extensions and support exporting to PHP code. The Online Generator is for the core Meta Box only.
Hope that helps clarifying some things. If you have any concern, please let me know.
Anh Tran
KeymasterNo problem, here they are:
https://www.dropbox.com/sh/d78k2hkno7j3lbl/AACm0vrr5E0p2jwxHJLhKLaaa?dl=0
Anh Tran
KeymasterHello,
We make the meta box id = auto generated from the post title, e.g the post slug, which is always unique. WP doesn't regenerate post slug when update, so neither do the extension.
Just curious why do you want to change the meta box ID?
Anh Tran
KeymasterHello,
Do you set the
post_idin the shortcode? The data from the post is get only when this parameter is set.Anh Tran
KeymasterHi guys, thanks for your report. Let me check the bug and fix it.
Anh Tran
KeymasterHello,
Let me refund the purchase of the MB Term Meta extension. So you can upgrade to the DEV bundle with just the difference in value? How does that sound?
Anh Tran
KeymasterHi,
I've just tested with Vietnamese and it works. This is the translation files:
https://imgur.elightup.com/NalVt93.png
And this is the translated "Submit" button:
https://imgur.elightup.com/ltoQLDq.png
Can you check 1) the translation file name, make sure it's
mb-frontend-submission-LANGCODE.moandmb-frontend-submission-LANGCODE.poand 2) The translation strings?Anh Tran
KeymasterIf you remove the clone option from
press_group, then you should not do aforeachloop. Please try this:$group_press = rwmb_meta( 'press_group'); if ( ! empty( $group_press['wysiwyg_3' ) ) { echo $group_press['wysiwyg_3']; }Anh Tran
KeymasterHello,
The upgrade is available for bundles only, not for individual plugins. Please go to My Account page and you'll see buttons to upgrade to the to the developer bundle. You will need to pay only the difference between bundles.
Anh Tran
KeymasterHi Phaidonas,
Your code looks incorrect. You use
press_groupas a group ID, but in your code it's the meta box ID. Besides, it's cloneable. I've fixed it here: https://pastebin.com/0xBn7vC2. Please take a look.
@jacek: we are aware of that bug and fixing it. We'll update the new version soon this week.Anh Tran
KeymasterHi, when a meta box is a draft, the submit button will have the text "Publish". Click that button will change the status from draft to publish.
Anh Tran
KeymasterHi,
Thanks. I'm good 🙂
Regarding the video field, when getting from the group, it's just the IDs of the uploaded videos. To output the videos, you can do like this:
<?php foreach ( $facilities_videos as $facilities_video ) { $facilities_video = RWMB_Video_Field::file_info( $facilities_video ); ?> <video src="<?php echo $facilities_video['src']; ?>"> <?php } ?>Anh Tran
KeymasterIt probably will take some days. If that's urgent for you, you can use Custom Attributes to add an attribute
requiredwith valuetrueto the field. That will make the field required.Regarding conditions, yes, you should use the Builder to build that. It supports all conditions. If you need to do some extra check (like conditions outside meta boxes), then you need to tweak the code a little bit.
-
AuthorPosts