Forum Replies Created
-
AuthorPosts
-
June 25, 2018 at 10:14 AM in reply to: Options callback is adding single quotes around the function call #10345
Anh Tran
KeymasterHi Alex,
All values in the custom attributes are treated as strings. If we make it run as PHP code, then we have to use something similar to
eval, which can open to many security issues. I think it's should be avoided in this case. If you want to do that, please modify and use the exported code instead.Anh Tran
KeymasterHi Alex,
If you're using the validation, then you're able to set the error message for each field. So, with specific messages, users will know which field has error and will be able to find it in tabs.
Anh Tran
KeymasterHi Alex and Guy,
As Guy said, it's true that the builder doesn't support custom field types at the moment. We built it with AngularJS and there's some limitation in the code that we couldn't make it possible for developers.
June 24, 2018 at 3:30 PM in reply to: ✅After the Beaver add-on, any chance of an Elementor one? #10334Anh Tran
KeymasterHi, it’s on the plan and I’ll start working on that next month.
June 23, 2018 at 2:24 PM in reply to: Please allow developers to remove the Dashboard from the new Global menu #10326Anh Tran
KeymasterHi Guy, I got it. Let me find the best way to hide/replace the dashboard.
Anh Tran
KeymasterYes, you can do that with the filter, like this:
add_filter( 'rwmb_media_add_string', function( $string ) { $screen = get_current_screen(); return 'page' === $screen->post_type ? '+ New File' : $string; } );Anh Tran
KeymasterHi, this can be done with CSS. Here is a trick to output quick CSS for the field without enqueuing new CSS file:
<?php add_filter( 'rwmb_meta_boxes', function( $meta_boxes ) { $meta_boxes[] = [ 'title' => 'Test Meta Box', 'fields' => [ [ 'type' => 'file_upload', 'id' => 'test', 'name' => 'File Upload', 'after' => '<style>.rwmb-edit-media { display: none; }</style>' ] ], ]; return $meta_boxes; } );Anh Tran
KeymasterHi Guy, I got it. I've just release version 1.5.2 of the Meta Box AIO with a fix for that. Please update!
Anh Tran
KeymasterHi Steven,
I've just resent the email with download link. Can you please check your inbox?
Anh Tran
KeymasterHi Jackky,
There is a workaround on this issue, made by fexy in this topic. Please take a look.
Update: I've improved the clone feature for
postfield. No more extra queries for clones. Please update to the latest version 4.15.0.Anh Tran
KeymasterHi Guy,
The technical difficulty has stopped us from investigating time and effort on doing this feature :(. There's no solution for this yet.
June 22, 2018 at 11:54 AM in reply to: How to allow editing field values thru Frontend Submission by the author only? #10305Anh Tran
KeymasterHi,
Each submitted post will have an unique post ID. You need to get that ID and set it in the
post_idattribute of themb_frontend_formshortcode. That will allows user to edit the info.There is a similar topic that you might be interested in.
Anh Tran
KeymasterHi Guy,
Yes, you can do that. There's some snippets on the TGM Plugin Activation repo on Github.
I think you can do that with the following code (untested):
Anh Tran
KeymasterHi Guy,
Do you mean in the Meta Box AIO?
The plugin only requires the core Meta Box plugin. All other extensions are recommended. The text displays that correctly as shown in the following screenshot:
https://imgur.elightup.com/GqW73Gi.png
And in the list of plugins, it clearly states which one is required/recommended:
https://imgur.elightup.com/4MNZdwY.png
By the way, this UI is created by TGM Plugin Activation Class and the customization is quite limited.
June 22, 2018 at 11:20 AM in reply to: Please allow developers to remove the Dashboard from the new Global menu #10302Anh Tran
KeymasterHi Guy,
What/How do you want to "white label" the welcome page?
-
AuthorPosts