Forum Replies Created
-
AuthorPosts
-
August 18, 2022 at 10:59 AM in reply to: How to move custom fields below the title in the block-editor? #37557
Long Nguyen
ModeratorHi Sascha,
It is not possible because WordPress Block editor does not support displaying meta box under the post title like Classic editor. You can read more about the context here https://docs.metabox.io/creating-fields-with-code/#contexts
Long Nguyen
ModeratorHi,
Thanks for your feedback.
I will inform the development team to consider supporting this feature in future updates.
August 18, 2022 at 10:19 AM in reply to: Report card for students, automatic calculation and teacher input #37555Long Nguyen
ModeratorHi,
In my experience, you just need to set the argument and open a loop where you need to show list posts. Don't open a loop in the top or middle of the code where you do not need to show the posts.
Long Nguyen
ModeratorHi,
Support customizing our plugin for a/some specific case is beyond the scope support of Meta Box. You can create a service request via this contact form https://metabox.io/contact/
our development team will take a look, estimate the job and get back to you with a quote.Refer to this topic https://support.metabox.io/topic/support-policy/
August 17, 2022 at 2:20 PM in reply to: REST error: Not logged error is showing when logged in. #37544Long Nguyen
ModeratorHi Jason,
If you want to get the data via REST API by using a WP function, please add the authentication parameter to the header of the request. Please refer to this topic https://stackoverflow.com/questions/33990046/wp-remote-get-not-passing-authentication
Long Nguyen
ModeratorHi Tobias,
This issue has been fixed. Please update Meta Box and MB extensions to the latest version and recheck this issue.
Long Nguyen
ModeratorHi John,
It is possible to query and get related posts in the backend/admin area. You can just use the WP Query to do that, please refer to this topic https://support.metabox.io/topic/query-advanced-select-field-by-relationship/
Long Nguyen
ModeratorHi,
That code creates 3 subfields and displays them in 3 columns as well, screenshot https://imgur.com/1BiRVVh
You can try to deactivate all plugins except Meta Box, MB extensions and re-check this issue.If you want to display a custom field in the admin column, please use it as a top field. The extension MB Admin Columns is not working with subfields in a group.
Long Nguyen
ModeratorHi Alaan,
The filter
wp_titleworks with the page/post title, not the admin/settings page title in the admin area. Currently, there is no way to add some HTML code to the settings page title. I will inform the development team to consider supporting a filter hook to change the title in future updates.Long Nguyen
ModeratorHi,
It looks like there is an issue when setting up the API key. On my demo site, I can search with the keyword
Gautengas well, see this screen record https://monosnap.com/file/hSDYVk4LkTFjTxs2rGEfpZ9BsUo0JZAugust 16, 2022 at 10:09 PM in reply to: How to output/show the shortcode generated by other plugin as is in cp loop #37524Long Nguyen
ModeratorHi,
You can try to use the field WYSIWYG to render the shortcode and the field value on the frontend like the post content. Please read more on this documentation https://docs.metabox.io/fields/wysiwyg/#template-usage
Long Nguyen
ModeratorHi,
I did try that but when I click on update the changes are not saved in Meta Box
Can you please share some screenshots of the issue? You can also follow this documentation to know how to bypass the sanitization of the field https://docs.metabox.io/sanitization/
Long Nguyen
ModeratorHi,
When registering the tooltip with code, you can use the parameter
allow_htmland set it tofalseto display raw HTML on the description. Please read more on the documentation https://docs.metabox.io/extensions/meta-box-tooltip/#usageLong Nguyen
ModeratorHi,
Simply, the columns help you to display custom fields in one row. Each row has 12 columns to display the custom fields. On my demo site, the subfields display in one row as well, each field has 4 columns, screenshot https://imgur.com/mexN5wV
Here is the demo code
[ 'name' => __( 'Group', 'your-text-domain' ), 'id' => $prefix . 'group_5nroxep0cgx', 'type' => 'group', 'fields' => [ [ 'name' => __( 'Checkbox', 'your-text-domain' ), 'id' => $prefix . 'checkbox_ywnepw1ssi', 'type' => 'checkbox', 'columns' => 4, ], [ 'name' => __( 'Text', 'your-text-domain' ), 'id' => $prefix . 'text_zpqlfple9wo', 'type' => 'text', 'columns' => 4, ], [ 'name' => __( 'Textarea', 'your-text-domain' ), 'id' => $prefix . 'textarea_fbep3a9emi4', 'type' => 'textarea', 'columns' => 4, ], ], ],Can you please share the code that creates the custom fields on your site? Refer to this documentation https://docs.metabox.io/extensions/meta-box-builder/#getting-php-code
August 16, 2022 at 11:03 AM in reply to: ✅Line breaks missing after migration of toolset fields #37513Long Nguyen
ModeratorHi Ben,
Thank you for your feedback.
Can you please share your site (or a staging site) credentials with the data before migrating to Meta Box? I will help you to check the issue.
Please share it via this contact form https://metabox.io/contact/ -
AuthorPosts