Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I can reproduce the issue with the FSE (Full Site Editing). I've escalated this issue to the development team to fix this issue in the next update.
Peter
ModeratorHello,
I do not see that issue on my site, please check screenshots
https://monosnap.com/file/ibuyP0br6uZZdb1EqIrrlINaBBYDR2
https://monosnap.com/file/KtNGjb8L6d3MTrKaFy0mNlSJTZNg71You can try to remove the space between options and check this issue again. Follow the documentation https://codex.wordpress.org/TinyMCE
Peter
ModeratorHello,
The error message indicates that the issue comes from your theme
TypeError: count(): Argument #1 ($value) must be of type Countable|array, bool given in /home/dh_nkgdj2/mydomain.com/wp-content/themes/website-theme/inc/metabox/init.php on line 746
the theme author might use Meta Box plugin as a library to develop features of the theme. Please contact the theme author to get support in this case.
June 9, 2023 at 7:42 PM in reply to: Is it possible to edit custom post type in Bricks Builder? #42139Peter
ModeratorHello,
Meta Box support registering custom post types in UI with the standard arguments of WordPress, you can read more here https://developer.wordpress.org/reference/functions/register_post_type/
If you want to use a builder to edit the post of that post type, please contact their support to get further assistance.
June 8, 2023 at 11:14 PM in reply to: PHP Warning: Undefined array key / class-mb-facetwp-integrator.php #42132Peter
ModeratorHello,
Please share your staging site credentials via this contact form https://metabox.io/contact/
I will take a look.June 8, 2023 at 10:30 PM in reply to: PHP Warning: Undefined array key / class-mb-facetwp-integrator.php #42128Peter
ModeratorHello,
Sorry for the late reply. Can you please let me know how to reproduce the issue from a fresh installation of WordPress and Meta Box?
Peter
ModeratorHello,
I'm not sure what version of MB Rest API you used before but as far as I know, MB Rest API returns the field values under the
meta_boxkey for years. The keymeta_datamight come from another plugin that supports Rest API, not MB Rest API.Peter
ModeratorHello,
I don't see that title when using the shortcode
[mb_user_profile_info]on my demo site. Can you please share your site URL where I can see that?Peter
ModeratorHello Chris,
Can you please let me know how to reproduce the issue? You can also try to deactivate all plugins except Meta Box, MB extensions and switch to a standard theme of WordPress then check this issue again.
Peter
ModeratorHello,
You can try to use the custom rewrite slug when creating the custom taxonomy to create a custom taxonomy URL. Refer to this topic https://wordpress.stackexchange.com/questions/99120/custom-taxonomy-rewrite-using-tax-name-instead-of-rewrite-slug
and documentation https://developer.wordpress.org/reference/functions/register_taxonomy/Peter
ModeratorHello,
Meta Box does not support displaying files that belong to the user uploaded. You will need to create some custom code to make the uploaded files private. If you are not able to do that, please contact us here https://metabox.io/contact/
Our development team will help you with an extra fee.Peter
ModeratorHello,
Instead of modifying the code, you can just create a
<div>tag with a class and wrap the frontend shortcode inside the div. For example:<div class="my-custom-form"> [mb_frontend_form id='my-custom-fields' post_fields='title,content'] </div>Then easy to use the following selector to select the submit button
.my-custom-form .rwmb-form-submit button { your CSS code here }June 7, 2023 at 10:15 PM in reply to: Questions/ feedback regarding custom tables/ relationships #42108Peter
ModeratorHello,
1. You can use the code to change the default field type (select_advanced) of the relationship field. For example:
function my_func123() { MB_Relationships_API::register( [ 'id' => 'job-to-post', 'from' => [ 'object_type' => 'post', 'post_type' => 'my-job', 'field' => [ 'field_type' => 'checkbox_list', ] ], 'to' => [ 'object_type' => 'post', 'post_type' => 'post', 'field' => [ 'field_type' => 'select', ] ], ] ); }2. Thanks, I will forward your design to our development team to take a look.
Peter
ModeratorHello,
You can try to use the action hook rwmb_{$field_id}_after_save_field to check and re-update the field after saving. If you are not able to complete the task, please create a customization service request https://metabox.io/contact/
Our development team will help you with an extra fee.Peter
ModeratorHello,
Do you mean to set the text limiter in the builder? Please use the custom setting of text field to set it, screenshot https://monosnap.com/file/uADdKCAnpi4bDqdyYHub3JDSQKaSiU
-
AuthorPosts