Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Thank you for your feedback.
I'm checking the issue and get back to you later.
Peter
ModeratorHello,
Can you please increase the PHP setting max_input_vars to a higher value (500k or more)? Refer to this documentation https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/?swcfpc=1
Peter
ModeratorHello,
Have you checked the option "Save field value" as I suggested above? Please see here https://monosnap.com/file/tVg0Ecobs49YW8Sa0tIUa5YC0aXQst
Peter
ModeratorHello,
Thank you for your feedback.
I will inform our development team to consider supporting an icon to check this option easier.
Peter
ModeratorHello,
Thanks for reaching out.
According to the screen record, I see the field value is migrated as well, not sure what the issue is. For other fields, you can check the option "Save field value" in the builder and make sure it is enabled for all fields. Screenshot https://monosnap.com/file/rrqiAyjg8AaR76vYivQcD4TX1cPnpl
Peter
ModeratorHello Tobias,
The issue with the first field radio is the option "Save field value" is disabled. So the field will not be saved value. Please check this screenshot https://monosnap.com/file/rrqiAyjg8AaR76vYivQcD4TX1cPnpl
Peter
ModeratorHello,
I do not see that issue on my end when creating a new WYSIWYG field with WordPress 6.2. Please make sure you have the latest version of Meta Box 5.6.18 then disable all plugins except Meta Box, MB AIO, switch to a standard theme of WordPress and check this issue again.
March 30, 2023 at 8:33 PM in reply to: Beaver Builder image gallery connection to Metabox field #41270Peter
ModeratorHello,
Did you receive my reply in the ticket system? Please check this screenshot https://monosnap.com/file/YOnz6SLLRU2Vc5LMj56yOZxTumUyqI
You can disable the option "Cloneable" in the field image_advanced settings to make it works with the gallery module of Beaver Builder, screenshot https://monosnap.com/file/G9pVUEdO94oG8vmLnvXBAfpNx4VNeC
Peter
ModeratorHello,
Yes, I understand that. Did you try to create an
ifstatement to check the current post ID and run the code inside?For example:
{% if mb.get_queried_object_id() == 123 %} {% set relationship = attribute( relationships, 'speaker-topic' ) %} ... {% endif %}Peter
ModeratorHello,
Correct, the default email field in the user profile has the same ID
email. In my profile, it already has value so I do not see the issue.March 29, 2023 at 7:35 PM in reply to: ✅Changing the Post Title/Slug after front-end submissions based on fields #41260Peter
ModeratorHello,
Did you add the post type attribute to the frontend submission shortcode to create a new post of the
catspost type? If yes and the code above does not work, please share the shortcode that you are using on your site.
Read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#submission-formPeter
ModeratorHello,
Please edit the field group and check the option "Save field value" of each field in the Advanced tab, make sure it is enabled. Screenshot https://imgur.com/3ZTgZK8
Let me know how it goes.
Peter
ModeratorHello,
1. Is it possible to exclude by post id, perhaps for this specific view?
You can use the functionget_queried_object_id()to get the current post/page ID and create anifstatement to run the code or not based on the condition.
https://developer.wordpress.org/reference/functions/get_queried_object_id/2. Is it possible to define how they're ordered? I'd like to do it by date added in desc order.
You can use the functionget_posts()and add the relationship to the arguments to order the post.
Please read more on the documentation https://docs.metabox.io/extensions/mb-views/#custom-query
and refer to this topic
https://support.metabox.io/topic/how-to-order-sort-related-posts-by-title-or-custom-field-value/?swcfpc=1#post-36469Peter
ModeratorHello,
Yes, it is possible. But you need to pass the post ID to the third parameter of the function
rwmb_get_field_settings()to get the field settings. For example:$field = rwmb_get_field_settings( 'my_field_id', '', $post_id );Read more on the documentation https://docs.metabox.io/functions/rwmb-get-field-settings/
Peter
ModeratorHello,
It could be the sanitization of the text field. You can follow the documentation below to bypass the sanitization https://docs.metabox.io/sanitization/
-
AuthorPosts