Forum Replies Created
-
AuthorPosts
-
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
Peter
ModeratorHello,
Meta Box UI does not support passing the custom args like that. Please use the code to register the custom taxonomy.
Peter
ModeratorHello,
Do you mean to use the custom block in Full Site Editing (Appearance > Editor)? Currently, MB Blocks does not work with FSE, our development team is working on this feature to make the custom block works in FSE.
June 7, 2023 at 8:43 PM in reply to: frontend submission for two post types on same page - is it possible? #42103Peter
ModeratorHello,
You can add two or more frontend shortcodes on a page to submit post types on the frontend. But editing the post on the frontend will not work for all post types. So totally, please use one frontend shortcode per page.
Peter
ModeratorHello Chris,
Follow the documentation https://docs.metabox.io/extensions/mb-rest-api/
please check the Rest API URL and see if the custom fields display under themeta_boxkey. If yes, I think MB Rest API works properly.June 7, 2023 at 8:18 PM in reply to: Bug? In front end form, "add new", checkbox tree display #42101Peter
ModeratorHello,
Thanks for your details.
I can reproduce the issue on my demo site. I've escalated this issue to the development team to fix it in the next update.
Peter
ModeratorHello Sam,
Meta Box does not support adding the JS code to the field settings to adjust the input value like that. You can use the validation to validate the display name input when creating/updating the user profile. Refer to the documentation https://docs.metabox.io/validation/
Peter
ModeratorHello,
With the single_image field, there are some supported return values: title, caption, alt, description.
[wpbb post:meta_box field='single_image_id' display='title'] -
AuthorPosts